  body { 
        font-family: 'EB Garamond', serif; margin:0; 
        background: rgba(0, 0, 0, 0.28);
    }

    /* Top nav area */
    .topbar {
      height: 125px;
      display:flex;
      align-items:center;
      background:#191818;
     
      border-bottom: 1px solid rgba(0,0,0,0.08);
      padding: 10px 50px;
    }
    .brand-logo {
      width:150px;
      height: auto;
      display:flex;
      align-items:center;
      justify-content:center;
    }

    /* Nav links */
    .nav-links {
      margin-left: auto;
      display:flex;
      align-items:center;
      gap:35px;
    }
    .nav-links a {
      text-decoration: none;
      color:white;
      font-weight:500;
      letter-spacing: .2px;
      padding-bottom:8px;
      position:relative;
      font-size: 1.3rem;
    }
    .nav-links a.active::after{
      content:"";
      position:absolute;
      left:0;
      right:0;
      bottom:0;
      height:2px;
      background:white;
      transform:scaleX(1);
    }
    .nav-links a::after{ transform:scaleX(0); transform-origin:left; transition:transform .2s ease; }
    .nav-links a:hover::after{ transform:scaleX(1); }

    /* Hamburger (hidden on desktop) */
.menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  margin-left: auto;
}

/* Side menu (off-canvas) */
.side-menu {
  position: fixed;
  top: 0;
  right: -300px; /* hidden outside screen */
  width: 300px;
  height: 100%;
  background: black;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 80px;
  transition: right 0.3s ease;
  z-index: 2000;
}

/* Open state */
.side-menu.active {
  right: 0;
}

/* Close button */
.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 28px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* Menu links */
.menu-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
  font-size: 1.2rem;
}

.menu-content a {
  color: white;
  text-decoration: none;
}

.menu-content a:hover {
  text-decoration: underline;
}

/* Responsive: show hamburger, hide desktop nav */
@media (max-width: 991px) {
  .nav-links {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
}

    /* Hero */
    .hero {
  position: relative;
  height: 520px;
  display: flex;
  align-items: flex-start;   /* move content up */
  justify-content: flex-start; /* move content left */
  text-align: left;
  padding: 60px 40px;  /* spacing from top & left */
  overflow: hidden;
}

    /* dark overlay to make text readable */
    .hero::before{
      content:"";
      position:absolute;
      inset:0;
      background: rgba(0,0,0,0.28);
      z-index:1;
    }
    .hero .title-wrap{
      position:relative;
      z-index:2;
      color: goldenrod;
      width:100%;
      padding: 0 20px;
      
    }
    .hero h1{
      font-family: 'EB Garamond', serif;
      font-weight:200;
      font-size:66px;
    
      margin:0;
      letter-spacing:2px;
      text-shadow: 0 2px 10px rgba(0,0,0,0.25);
    }
    @media (max-width: 992px){
      .hero { height:420px; }
      .hero h1 { font-size:48px; }
    }
    @media (max-width: 576px){
      .topbar { padding: 8px 16px; }
      .nav-links { display:none; } /* keep simple for mobile */
      .brand-logo img { width:90px; }
      .hero { height:360px; }
      .hero h1 { font-size:34px; }
    }

    /* white curved section below hero */
    .hero-svg {
      display:block;
      position:relative;
      z-index:3;
      margin-top: -4px; /* overlap */
    }

    /* the content area under the curve */
    .below-hero {
  margin-top: 20px;
  border-radius: 30px; /* all 4 corners rounded equally */
  color: white;
  background-color: rgb(15, 15, 15);
  
  padding: 50px 50px 50px 50px;
  text-align: center;
  font-family: 'EB Garamond', serif;
}

   
    .below-hero h4 {
      
      line-height: 1.8;
      margin-bottom:12px;
    }
    .below-hero p {
      color: #444;
      font-size:20px;
      margin-bottom:0;
    }

      /* Thumbnail effects */
  .thumb {
    cursor: pointer;
    transition: transform .2s ease, opacity .2s ease;
    opacity: 0.5; /* dim by default */
  }
  .thumb:hover {
    transform: scale(1.05);
  }
  .thumb.active-thumb {
    opacity: 1; /* highlight active */
    border: 2px solid black;
  }

  /* Optional: style for arrows */
  .btn-outline-dark {
    border-radius: 50%;
    width: 45px;
    height: 45px;
    padding: 0;
    font-size: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }

    .shadow-sm {
    box-shadow: 0 0 20px rgba(0,0,0,0.08) !important;
  }

  .ratio video {
    object-fit: cover;
  }

  .testimonial-btn {
    background: #000;
    color: #fff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: background 0.3s ease;
  }
  .testimonial-btn:hover {
    background: #333;
  }

  /* Fade In Base */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

/* When element is visible */
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}


.card-title {
  font-family: 'EB Garamond', serif;
  font-size: 1.5rem;
}

.card h6 {
  font-weight: 600;
}

.card ul li {
  margin-bottom: 8px;
  font-size: 0.95rem;
}


.terms-section {
  background: black; /* You can change this to match your theme */
  border-top-left-radius: 80px;
  border-top-right-radius: 80px;
  border-bottom-left-radius: 80px;
  border-bottom-right-radius: 80px;
  border: 2px solid gold;
  color: gold;
  padding: 50px 30px;
  max-width: 900px;
  margin: auto;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.gallery-section {
  
  padding: 50px 20px;
  text-align: center;
  color: white;
}

.gallery-section h1 {
  font-size: 28px;
  margin-bottom: 30px;
}

.gallery-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.gallery-container img {
  height: 220px;
  border-radius: 6px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.gallery-container img:hover {
  transform: scale(1.05);
}

/* Hide extra images initially */


.view-more {
  margin-top: 25px;
  padding: 10px 20px;
  border: 1px solid white;
  background: transparent;
  color: white;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.view-more:hover {
  background: gold;
  color: #111;
}


/* Your existing CSS remains same */

/* Hide extra images initially */
.extra-images {
  display: none;
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.extra-images img {
  height: 220px;      /* same height */
  border-radius: 6px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.extra-images img:hover {
  transform: scale(1.05);
}


.contact-section {
  background: #0c0c0c;
  color: white;
  padding: 40px 0;
}

.contact-container {
  display: flex;
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
  border-radius: 8px;
}

.contact-image {
  flex: 1;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-form {
  flex: 1;
  background: #111;
  padding: 80px;
}

.contact-form h2 {
  color: #f7a600;
  margin-bottom: 10px;
  font-size: 28px;
}

.contact-form p {
  margin-bottom: 20px;
  color: #ccc;
}

.form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.form-row input,
.form-row select,
.contact-form textarea {
  flex: 1;
  padding: 12px;
  border: none;
  background: #1c1c1c;
  color: #fff;
  border-radius: 4px;
}

.contact-form textarea {
  width: 100%;
  resize: none;
}

.btn-submit {
  margin-top: 15px;
  padding: 12px 20px;
  background: transparent;
  border: 2px solid white;
  color: white;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn-submit:hover {
  background: gold;
  border-color: gold;
  color: #000;
}
@media (max-width: 992px) {
  .contact-container {
    flex-direction: column; /* stack image and form */
  }

  .contact-form {
    padding: 50px 30px;
  }

  .form-row {
    flex-direction: column; /* inputs stack */
    gap: 10px;
  }

  .contact-form h2 {
    font-size: 24px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .contact-form {
    padding: 30px 20px;
  }

  .contact-form h2 {
    font-size: 20px;
  }

  .form-row input,
  .form-row select,
  .contact-form textarea {
    font-size: 14px;
    padding: 10px;
  }

  .btn-submit {
    width: 100%; /* full width button */
    padding: 12px;
  }
}

/* .animated-heading {
  position: relative;
  display: inline-block;
  font-size: 28px;
  color: white; 
  overflow: hidden;
  white-space: nowrap;

  animation: slideIn 1.5s ease-out forwards;
} */

/* @keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(100%); 
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
} */
