/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #ffffff;
  }
  header {
    background: #ffffff;
    color: white;
    padding: 1rem;
    text-align: center;
  }
  main {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
  }
  
  /* Yellow image box (enhanced with border, shadow, fixed height, clickable) */
  .image-box {
    width: 90%;
    max-width: 600px;
    height: 200px; /* fixed height */
    background: rgb(255, 255, 255);
    margin: 2rem auto;
    padding: 1rem;
    border-radius: 12px;
   /*  border: 3px solid #ccaa00; /* border */
    /* box-shadow: 0 4px 12px rgba(0,0,0,0.25); /* shadow */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    cursor: pointer; /* clickable */
    position: relative;
    transition: box-shadow 0.3s ease, background-color 0.3s ease;
  }
  
  .image-box:hover {
   /*  box-shadow: 0 8px 20px rgba(0,0,0,0.4);*/
    background-color: #ffffff; /* slightly brighter yellow */
  }
  
  .image-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    transition: opacity 0.3s ease;
  }
  
  .hover-reveal .hover-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-size: 1.2rem;
    font-weight: bold;
    pointer-events: none; /* prevent clicking when invisible */
  }
  
  .hover-reveal:hover img {
    opacity: 0;
  }
  
  .hover-reveal:hover .hover-text {
    opacity: 1;
    pointer-events: auto; /* allow clicking on email */
  }

   .script-style {
    font-family: 'Dancing Script', cursive;
    font-size: 25px; /* adjust size here */
    color: black;
    text-decoration: none;
  }
 
  /* .script-style {
    font-family: 'Great Vibes', cursive;
    color: black;
    text-decoration: none;
  } */


  /* .script-email {
    font-family: 'Brush Script MT', cursive;
    color: #b86cff;
    text-decoration: none;
  } */
