 html, body {
    margin: 0;
    padding: 0;
  }

  nav .hamburger-menu .dropdown-menu {
    display: none;
  }

  nav .hamburger-menu .dropdown-menu.dropdown-visible {
    display: block !important;
  }

 .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background-color: white;
  }

  .nav-container ul {
    display: flex;
    align-items: center;
    list-style: none;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .nav-container li:first-child {
    margin-right: auto;
  }

  .nav-container li:not(:first-child) {
    margin-left: 16px;
  }

  .nav-container li a {
    padding: 5px;
    display: inline-block;
  }

  .nav-links {
    display: none;
  }

  #logo {
    width: 150px;
    height: auto;
    cursor: pointer;
  }

  .fa-brands,
  .fa-solid {
    font-size: 1.5rem;
  }

  .fa-bars {
    cursor: pointer;
  }

  #fb-icon {
    color: #1877F2;
  }

  #fb-icon:hover {
    color: #145dbf;
  }

  #insta-icon {
    color: #E1306C;
    margin-right: 5px;
  }

  #insta-icon:hover {
    color: #C13584;
  }

#intro-image {
    display: block;
    position: relative;
    z-index: 1;
    width: 500px;
    height: auto;
    opacity: 28%;
}

.intro-heading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 95%;
    padding: 0 1rem;
    z-index: 2;
  }

.intro-heading .line {
    font-family: 'Bodoni Moda', serif;
    font-weight: 400;
    font-style: normal;
    color: #000;
    padding: 5px 0;
    display: block;
  }

.intro-heading .left {
    text-align: center;
    font-size: 1.5rem;
  }

.intro-heading .center {
    text-align: center;
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
  }

  .intro-heading .right {
    text-align: center;
    font-size: 1.5rem;
    display: block;
    justify-content: center;
  }

.intro-heading .right::after {
    content: '';
    display: block;
    width: 200px; /* Set desired width */
    border-bottom: 1px solid #000;
    margin: 10px auto 0;
  }

  @keyframes fadeUpAll {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

.intro {
    animation: fadeUpAll 1.2s ease-out forwards;
    animation-delay: 0.3s;
    opacity: 0; /* Start invisible */
  }

  @keyframes fadeUp {
    0% {
      opacity: 0;
      transform: translateY(10px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

.intro-heading .line {
    animation: fadeUp 3s ease forwards;
    opacity: 0;
  }

.intro-heading .left { animation-delay: 0.8s; }
.intro-heading .center { animation-delay: 1.9s; }
.intro-heading .right { animation-delay: 2.9s; }

.intro-paragraph { animation-delay: 1.3s;}

.intro-paragraph {
    font-family: 'Bodoni Moda', serif;
    font-weight: 400;
    line-height: 1.8;
    font-size: 1.125rem;
    color: #444;
    margin: 1em auto;
    text-align: center;
    margin-top: 2rem;
}

.meet-tay {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 2rem;
}

.meet-tay img {
    border: 4px solid #c4c7b2;
    max-width: 100%;
    height: auto;
    order: 1;
}

.meet-tay p {
    order: 2;
    max-width: 600px;
    text-align: left;
}

  .meet-tay-heading h3 {
    font-family: 'Bodoni Moda', serif;
    font-weight: 400;
    font-size: 1.3rem;
  }

.learn-more {
    display: inline-block;
    margin-top: 1rem;
    padding: .8rem 1.2rem;
    background-color: #c4c7b2;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-family: 'Bodoni Moda', serif;
    transition: background-color 0.3s ease;
  }

.learn-more:hover {
    background-color: #AEB29F;
    color: #fff;
    border-color: #AEB29F;
}

.meet-tay-content {
  border: 2px solid #c4c7b2;
  padding: 1rem;
  background-color: #f9f9f9;
}

.contact-section {
  padding: 2rem 1rem;
  max-width: 700px;
  margin: 0 auto;
  font-family: 'Cormorant Garamond', serif;
  color: #444;
  background-color: #f9f9f9;
  border: 2px solid #c4c7b2;
  border-radius: 10px;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.contact-heading {
  font-family: 'Bodoni Moda', serif;
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #222;
}

.contact-intro {
  text-align: center;
  font-size: 1.25rem;
  margin-bottom: 2rem;
  padding: 0 1rem;
  color: #555;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form label {
  font-weight: 500;
  font-size: 1.1rem;
  color: #333;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #c4c7b2;
  border-radius: 5px;
  font-family: 'Cormorant Garamond', serif;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #888;
}

.form-button {
  background-color: #c4c7b2;
  border: none;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-family: 'Cormorant Garamond', serif;
  cursor: pointer;
  color: #fff;
  align-self: center;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.form-button:hover {
  background-color: #aaa;
}

.form-success-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.form-success-message {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
}

.form-success-message p {
  font-size: 1.25rem;
  color: #444;
}

.form-success-message button {
  margin-top: 1rem;
  padding: 0.5rem 1.5rem;
  font-size: 1rem;
  background-color: #c4c7b2;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.inquiry {
  display: block;
  position: relative;
  text-align: center;
  padding: 2rem 1rem 4rem; /* More bottom padding for frame effect */
  background-color: #f4f1ed;
  margin-bottom: 2rem;
  border: 2px solid #d6d6d6; /* Optional: a subtle picture frame */
  width: 100vw;
}

.inquiry-heading {
  font-family: 'Bodoni Moda', serif;
  font-weight: 400;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.inquiry p {
  font-family: 'Bodoni Moda', serif;
  font-size: 1rem;
  max-width: 600px;
  color: #444;
  margin: 0 auto 1rem;
}

.inquiry .learn-more {
  padding: 0.75rem 1.25rem;
  font-size: 1.1rem;
  width: 220px;
  margin-top: 1rem;
  margin-bottom: 1rem; /* adds white space below */
  background-color: #c4c7b2;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  display: inline-block;
}

.inquiry .learn-more:hover {
  background-color: #AEB29F;
  color: #fff;
  border-color: #AEB29F;
}


@media (min-width: 600px) {
    .fa-brands,
    .fa-solid {
      font-size: 1.75rem;
    }

    .intro-paragraph {
        font-size: 1rem;
        padding: 0 1rem;
        text-align: center;
        max-width: 600px;
    }

    #intro-image {
        width: 100vw; /* Fit the screen width */
        height: auto;
    }

    #logo {
      width: 120px;
    }
  }

  /* large screens */

  @media (min-width: 768px) {
    nav ul {
      padding: 0 24px;
    }

    .nav-container ul {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1rem;
      padding: 0 2rem;
    }

    /* Hide hamburger */
    .hamburger-menu {
      display: none;
    }

    /* Show horizontal nav links */
    .nav-links {
      display: flex;
      gap: 2rem;
      margin-left: auto;
    }

    .nav-links a {
      font-family: 'Bodoni Moda', serif;
      font-size: 1rem;
      text-decoration: none;
      color: #333;
      padding: 0.5rem 0;
      position: relative;
    }

    .nav-links a:hover {
      color: #666;
      border-bottom: 2px solid #ccc;
    }


    .intro-paragraph {
        font-size: 1rem;
        padding: 0 1rem;
        text-align: center;
        max-width: 600px;
    }

    #intro-image {
      max-height: 70vh; /* reduce height */
      object-fit: cover;
      width: 100%;
      border-top: 2px solid black;
      border-bottom: 2px solid black;
    }

    #logo {
      width: 180px;
    }

    .fa-brands,
    .fa-solid {
      font-size: 1.75rem;
    }

    nav ul li:not(:first-child) {
      margin-left: 24px;
    }

    p {
      font-size: 20px;
    }

    .meet-tay {
      display: flex;
      justify-content: center;
      padding: 2rem 0;
    }

    .meet-tay-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto auto;
      gap: 1rem 2rem;
      max-width: 900px;
      width: 100vw;
      height: 60vh;
      padding: 2rem;
      border: 2px solid #c4c7b2;
      background-color: #f9f9f9;
      box-sizing: border-box;
      overflow: visible;
      margin-top: 0;
    }


    /* h3 on first column, first row */
.meet-tay-content > h3 {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  align-self: end;
  font-size: 1.75rem;
  margin: 0 0 0.5rem 0;

}


    /* text block on second column, spanning rows 1 and 2 */
    .meet-tay-text {
      grid-column: 2 / 3;
      grid-row: 1 / 3;
      display: flex;
      justify-content: center;    /* Vertical centering */
      align-items: center;        /* Horizontal centering */
      text-align: center;
    }

    .meet-tay-text-inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
      margin-bottom: 8rem;
    }

    .meet-tay-text-inner::before{
        content: '';
        display: block;
        width: 150px;
        border-bottom: 2px solid #c4c7b2;
        margin: 15px auto 0;
    }

    .meet-tay-text p {
      margin-bottom: 0; /* reset if needed */
      font-size: 1rem;
    }

    .meet-tay-text .learn-more {
      width: 120px;
      padding: 0.5rem 2rem;
      font-size: 1rem;
      text-align: center;
      display: inline-block;
      align-self: center; /* or center if you want */
      margin-top: 0.5rem;
      order: 2;
    }

    /* image on first column, second row */
    .meet-tay-image {
      grid-column: 1 / 2;
      grid-row: 2 / 3;
      max-width: 320px;
      width: 80%;
      transform: translate(-50px, -20px); /* move left and slightly up */
      box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    }

    .meet-tay-text h3 {
      margin-bottom: 0.5rem;
      font-size: 1.75rem;
      align-self: center;
      margin-left: 4rem;
    }

    .meet-tay-image img {
      max-width: 100%;
      height: auto;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
      transform: translateX(-40px); /* Moves only the image left */
    }

    .services {
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #d6d6d6;
      max-height: 70vh;
      border-top: 2px solid black;
      border-bottom: 2px solid black;
      padding: 2rem;
      overflow: hidden;

    }

    .services-after{
        content: '';
        display: block;
        width: 150px;
        border-bottom: 2px solid #c4c7b2;
        margin-top: 3rem;
        margin-bottom: 3rem;
        justify-content: center;
        align-items: center;
        align-self: center;
        padding-left: 20rem;
        margin-left: 30rem;
    }

    .services-image {
      display: flex;
      flex: 1;
      height: 100%;
      gap: 2px; /* slight spacing between the images */
      order: 2;
    }

    .services-image img {
      flex: 1;
      width: 50%;
      aspect-ratio: 1 / 1; /* makes them square */
      object-fit: cover;
      height: 100%;
      margin-left: .5rem;
    }

    .services-text {
      flex: 1;
      padding: 2rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      text-align: left;
    }

    .services-heading {
      font-size: 2rem;
      margin-bottom: 0.5rem;
    }

    .services-subheading {
      font-size: 1.2rem;
      margin-bottom: 1rem;
    }

    .services-heading-group p {
      font-size: 1rem;
      line-height: 1.6;
    }

    .services .learn-more {
      margin-top: 1.5rem;
      align-self: center;
      width: 100px;
      text-align: center;
    }

    .intro-heading .line {
      font-size: 2.5rem;  /* Increase from mobile size */
      line-height: 1.4;
      text-align: center;
    }

    .inquiry {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 3rem;
      padding: 3rem 2rem;
      background-color: #f4f1ed;
      border: 2px solid #d6d6d6;
      margin: 2rem auto;
      max-width: 1000px;
      margin-bottom: 3.5rem;
    }

    .inquiry-image {
      flex: 1;
      max-width: 45%;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    .inquiry-content {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      text-align: left;
    }

    .inquiry-heading {
      font-family: 'Bodoni Moda', serif;
      font-size: 2rem;
      margin-bottom: 1rem;
      text-align: center;
    }

    .inquiry p {
      font-size: 1.125rem;
      margin-bottom: 1.5rem;
      max-width: 90%;
      text-align: center;
    }

    .inquiry .learn-more {
      align-self: center;
      padding: 0.75rem 1.5rem;
      font-size: 1.1rem;
      width: auto;
    }

    .footer {
      background-color: #f4f4f4; /* soft neutral background */
      text-align: center;
      padding: 1rem 1rem;
      font-family: 'Cormorant Garamond', serif;
      color: #444;
      border-top: 2px solid #c4c7b2;
    }

    .footer-heading {
      font-family: 'Bodoni Moda', serif;
      font-size: 1.5rem;
      font-weight: 400;
      color: #222;
    }

    .footer-subheading {
      font-style: italic;
      font-weight: 400;
      font-size: 2rem;
      margin-bottom: 1.5rem;
      color: black;
    }

    .footer-list {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 4rem;
      list-style: none;
      padding: 1rem;
      margin-bottom: 1rem;
    }

    .footer-list a {
      color: #444;
      font-size: 1.5rem;
      transition: color 0.3s ease;
    }

    .footer-list a:hover {
      color: #c4c7b2;
    }

    .footer p {
      font-size: 1.2rem;
      color: #888;
      margin-top: 1rem;
    }

  }



  /* small screens */
  @media screen and (max-width: 430px) {
    #intro-image {
      width: 100vw; /* Fit the screen width */
      height: auto;
    }

    .intro-heading {
      width: 95%;
      padding: 0 1rem;
    }

    .intro-paragraph {
        font-size: 1rem;
        padding: 0 1rem;
        text-align: center;
        max-width: 600px;
    }

    .intro-paragraph p:nth-of-type(3)::after {
        content: '';
        display: block;
        width: 150px;
        border-bottom: 1px solid #c4c7b2;
        margin: 15px auto 0;
    }

    .meet-tay-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .meet-tay-content h3 {
      font-size: 1.4rem;
      margin-bottom: 1rem;
    }

    .meet-tay-image {
      width: 100%;
      max-width: 320px;
      margin-bottom: 1rem;
    }

    .meet-tay-image img {
      width: 100%;
      height: auto;
      border-radius: 8px;
    }

    .meet-tay-text {
      width: 100%;
      max-width: 600px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
      align-self: center ;
      justify-content: center;
    }

    .meet-tay-text p {
      order: 1;
      font-size: 1rem;
      max-width: 600px;
      margin-top: 1rem;
      text-align: center;
    }

    .meet-tay-text .learn-more {
      padding: 0.8rem 1.5rem;
      font-size: 1.2rem;
      width: 250px;
      margin-top: 1rem;
      order: 2;
    }

    /* Optional underline under paragraph */
    /* .meet-tay-text a::after {
      content: '';
      display: block;
      width: 150px;
      border-bottom: 1px solid #c4c7b2;
      margin: 2rem auto 0;
    } */

    .nav-container {
      position: relative;
      padding: 10px 12px;
    }

    #logo {
      width: 140px;
    }

    .fa-brands,
    .fa-solid {
      font-size: 1.5rem;
    }

    .fa-bars {
        margin-right: 1.5rem;
    }

    .fa-envelope {
      font-size: 1.5rem;
      background-color: #FFFFFF;
      color: black;
    }

    .nav-container li:not(:first-child) {
      margin-left: 12px;
    }

    .learn-more {
        display: inline-block;
        margin-top: 1rem;
        padding: .8rem 1.2rem;
        background-color: #c4c7b2;
        color: #fff;
        text-decoration: none;
        border-radius: 5px;
        font-size: 20px;
        font-family: 'Bodoni Moda', serif;
        transition: background-color 0.3s ease;
      }

    .learn-more::before,
    .learn-more::after {
        content: '|';
        margin: 0 20px;
        color: #FFFF;
        font-weight: bold;
    }

    .services {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 1rem;
      padding: 2.5rem;
    }

    .services img {
      max-width: 95%;
      height: auto;
      margin-top: 1rem;
      align-self: center;
      border: 10px solid #d6d6d6;
    }

    .services-heading-group {
      font-family: 'Bodoni Moda', serif;
      max-width: 600px;
      align-items: center;
    }

    .services-heading {
      font-family: 'Bodoni Moda', serif;
      font-weight: 400;
      font-size: 1.3rem;
      margin-bottom: -.5rem;
    }

    .services-subheading {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-weight: 500;
      font-size: 1.25rem;
      margin-bottom: .5rem;
    }

    .services-text {
      display: flex;
      flex-direction: column;
      align-items: center;    /* center horizontally */
      text-align: center;     /* center text inside */
      gap: 1rem;              /* space between elements */
      max-width: 600px;       /* keep your width limit */
      margin: 0 auto;        /* center block horizontally */
    }

    .services-text .learn-more {
      padding: 0.8rem 1.5rem;
      font-size: 1.2rem;
      width: 250px;
      margin-top: 1rem;
    }



    .services-link:hover {
      background-color: #bbb;
    }

    .offset-wrapper .learn-more {
      position: absolute;
      bottom: -3.1rem; /* Adjust as needed */
      left: 49.7%;
      transform: translateX(-50%);
      z-index: 2;
      width: 265px;
      text-align: center;
    }

    .offset-wrapper {
      position: relative;
      display: inline-block;
      background-color: #d6d6d6;
      padding: 0.25rem;
      margin-bottom: 1rem;
      border: 4px solid #d6d6d6;
      width: fit-content;
    }

    .offset-image {
      position: relative;
      top: 17px;
      right: -8px;
      max-width: 95%;
      height: auto;
      display: block;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    }

    .services-after{
        content: '';
        display: block;
        width: 150px;
        border-bottom: 1px solid #c4c7b2;
        margin: 25px auto 0;
        margin-bottom: 3rem;
    }

    .services-before{
      content: '';
      display: block;
      width: 150px;
      border-bottom: 1px solid #c4c7b2;
      margin: 25px auto 0;
      margin-top: 3rem;
  }

    .inquiry {
      display: block;
      position: relative;
      text-align: center;
      padding: 2rem 1rem;
      background-color: #f4f1ed;
      margin-bottom: 0;
      max-width: 91.5vw;
    }

    .inquiry-image {
      width: 100%;
      height: auto;
    }

    .inquiry-heading {
      font-family: 'Bodoni Moda', serif;
      font-weight: 400;
      font-size: 1.3rem;
      margin-bottom: -.5rem;
    }

    .inquiry p {
      font-family: 'Bodoni Moda', serif;
      font-size: 1rem;
      max-width: 600px;
      color: #444;
    }

    .inquiry .learn-more {
      padding: 0.8rem 1.5rem;
      font-size: 1.2rem;
      width: 250px;
      margin-top: 1rem;
    }

    .footer {
      background-color: #f4f4f4; /* soft neutral background */
      text-align: center;
      padding: 1rem 1rem;
      font-family: 'Cormorant Garamond', serif;
      color: #444;
      border-top: 2px solid #c4c7b2;
    }

    .footer-heading {
      font-family: 'Bodoni Moda', serif;
      font-size: 1.5rem;
      font-weight: 400;
      color: #222;
    }

    .footer-subheading {
      font-style: italic;
      font-weight: 400;
      font-size: 2rem;
      margin-bottom: 1.5rem;
      color: #666;
    }

    .footer-list {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 2rem;
      list-style: none;
      padding: 0;
      margin-bottom: 1rem;
    }

    .footer-list a {
      color: #444;
      font-size: 1.5rem;
      transition: color 0.3s ease;
    }

    .footer-list a:hover {
      color: #c4c7b2;
    }

    .footer p {
      font-size: 1.2rem;
      color: #888;
      margin-top: 1rem;
    }

    .hamburger-menu {
      position: relative;
      z-index: 1100;
    }

    .dropdown-menu {
      position: fixed;
      top: 130px; /* Adjust to how far from the top you want */
      left: 50%;
      transform: translate(-50%, -20px);
      width: 90vw;
      max-width: 500px;
      background-color: white;
      list-style: none;
      padding: 0;
      margin: 0;
      z-index: 1100;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      display: flex;
      flex-direction: column;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 0.3s ease, transform 0.3s ease;
      border-radius: 6px;
      box-sizing: border-box;
    }

    /* Show menu with fade + slide-down */
    .dropdown-visible {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translate(-50%, 0); /* Slide down */
    }

    /* Fix uneven "Home" alignment */
    .dropdown-menu li {
      width: 100%;
      padding: 0;
      margin: 0;
    }

    .dropdown-menu li a {
      display: block;
      width: 90%;
      padding: 1rem 1rem;
      font-family: 'Bodoni Moda', serif;
      font-size: 1rem;
      text-decoration: none;
      color: #333;
      box-sizing: border-box;
      justify-content: center;
      align-items: center;
      text-align: center;
    }

    .dropdown-menu li a:hover {
      background-color: #f0f0f0;
    }


  }
