/* ======================================================
   GLOBAL RESET & BASE
====================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html, body {
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #222;
  line-height: 1.75;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3 {
  text-rendering: optimizeLegibility;
}

/* ======================================================
   HEADER — STICKY BEDGE-STYLE NAV
====================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

  padding: 26px 70px;

  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(10px) saturate(1.2);

  transition: background 0.35s ease, padding 0.35s ease;
}

.nav-inner {
  max-width: 1600px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo img {
  height: 20px;
  width: auto;
  display: block;
}

/* DESKTOP NAV */
.desktop-nav {
  display: flex;
  align-items: center;
}

.desktop-nav a {
  margin-left: 40px;
  padding: 6px 0;

  font-size: 15px;
  font-weight: 100;
  letter-spacing: 1px;
  text-transform: none;

  color: rgba(255,255,255,0.95);
  text-decoration: none;

  transition: color 0.3s ease;
}

.desktop-nav a:hover {
  color: #b99b6b;
}

/* ======================================================
   HERO — TRUE FULL BLEED CINEMATIC
====================================================== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  
}

.herob {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
  
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: slowZoom 20s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes slowZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.15);
  z-index: 1;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  max-width: 900px;
  padding: 20px;
  z-index: 2;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 54px;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 35px;
}

.cta {
  display: inline-block;
  padding: 14px 22px;
  background: #fff;
  color: #000;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: all 0.35s ease;
}

.cta:hover {
  background: #b99b6b;
  color: #fff;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

  opacity: 0;                     /* NEW */
  transition: opacity 3s ease;     /* NEW */

  animation: slowZoom 20s ease-in-out infinite alternate;
  will-change: transform;
}

.hero-img.active {
  opacity: 1;
}
/* ======================================================
   SECTIONS — FLUID SCROLL FLOW
====================================================== */
section {
  position: relative;
  padding: 110px 60px;
  background: #fff;
  z-index: 5;
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}

section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 30px;
}

/* ======================================================
   FEATURED / AS SEEN IN
====================================================== */


.press {
  padding: 120px 40px;
  background: #fff;
  text-align: center;
  border-top: 1px solid rgba(0,0,0,0.18);
}

.press-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.press-label {
  font-size: 12px;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 60px;
  opacity: 0.6;
}

.press-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  flex-wrap: wrap;
}

.press-logos a {
  display: inline-block;
}

.press-logos img {
  height: 42px;
  width: auto;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: opacity 0.4s ease, transform 0.4s ease, filter 0.4s ease;
}

.press-logos a:hover img {
  opacity: 1;
  transform: translateY(-4px);
  filter: grayscale(0%);
}

.press {
  position: relative;
  padding: 120px 40px;
  background: #fff;
  text-align: center;
}

.press::before {
  content: "";
  display: block;
  width: 120px;
  height: 1px;
  background: rgba(0,0,0,0.20);
  margin: 0 auto 60px;
}

.press-logos a:active img {
  transform: scale(0.95);
}

@media (max-width: 768px) {
  .press {
    padding: 80px 20px;
  }

  .press-logos {
    gap: 40px;
  }

  .press-logos img {
    height: 32px;
  }
}
/* ======================================================
   ABOUT
====================================================== */
#about {
  text-align: center;
}

#about p {
  font-size: 16px;
  max-width: 720px;
  margin: 0 auto;
  color: #555;
  line-height: 1.9;
}

/* ======================================================
   PORTFOLIO — TRUE JS MASONRY
====================================================== */

.portfolio {
  background: #fff;
   text-align: center;
}

.masonry {
  position: relative;
  margin: 0 auto;
}

/* Masonry items */
.masonry-item {
  width: 50%;
  padding: 5px;
}

.masonry-item a {
  display: block;
  overflow: hidden;
  border-radius: 0px;
}

.masonry-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.masonry-item a:hover img {
  transform: scale(1.05);
  box-shadow: 0 25px 45px rgba(0,0,0,0.25);
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.65),
    rgba(0,0,0,0.15)
  );

  display: flex;
  align-items: flex-end;
  padding: 20px;

  opacity: 0;
  transition: opacity 0.35s ease;
}

.overlay-content {
  color: #fff;
}

.overlay-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  margin-bottom: 4px;
}

.overlay-content p {
  font-size: 12px;
  letter-spacing: 1px;
  opacity: 0.85;
  text-transform: uppercase;
}
.overlay-actions {
  margin-top: 12px;
  display: flex;
  gap: 12px;
}

.overlay-actions .btn {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;

  padding: 8px 14px;
  border: 1px solid #fff;
  color: #fff;
  background: transparent;

  transition: all 0.3s ease;
}

.overlay-actions .btn:hover {
  background: #b99b6b;
  border-color: #b99b6b;
}

.overlay-actions .btn.secondary {
  border-color: rgba(255,255,255,0.5);
}
.gallery-item:hover .overlay,
.gallery-item:focus .overlay {
  opacity: 1;
}



/* ======================================================
   RESPONSIVE BREAKPOINTS
====================================================== */

@media (max-width: 1200px) {
  .masonry-item { width: 33.333%; }
}

@media (max-width: 768px) {
  .masonry-item { width: 50%; }
}

@media (max-width: 480px) {
  .masonry-item { width: 100%; }
}

/* ======================================================
   TESTIMONIALS
====================================================== */
.testimonials {
  background: #f9f9f9;
  text-align: center;
}

.testimonial {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  max-width: 760px;
  margin: 40px auto;
  color: #444;
}

/* ======================================================
   CONTACT
====================================================== */
.contact {
  max-width: 700px;
  max-height: auto;
  margin: auto;
  text-align: center;
  
  
}

.contact form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 30px;
}

.contact input,
.contact textarea {
  padding: 14px;
  border: 1px solid #ccc;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
}

.contact textarea {
  min-height: 140px;
}

.contact button {
  padding: 14px;
  background: #585757;
  color: #fff;
  border: none;
  cursor: pointer;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-radius: 10px;
  transition: background 0.3s ease;
}

.contact button:hover {
  background: #b99b6b;
}
.contact-section {
  transform: translateY(40px);
  
}

.contact-section.is-visible {
  transform: translateY(0);
}
.contact-section.is-visible {
  transition-delay: 0.05s;
}

.contact select {
  padding: 14px;
  border: 1px solid #ccc;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  background: #fff;
}

/* Contact page should always show */
body.contact-page #contact {
  max-height: none;
  opacity: 1;
  pointer-events: auto;
  overflow: visible;
  padding-top: 110px;
  padding-bottom: 110px;
  transform: none;
}

/* ======================================================
   FOOTER
====================================================== */
footer {
  background: #111;
  color: #aaa;
  text-align: center;
  padding: 30px;
  font-size: 13px;
  letter-spacing: 1px;
}

footer a {
  color: #b99b6b;
  text-decoration: none;
  margin: 0 8px;
}

.site-footer {
  background: #000;
  color: #fff;
  padding: 100px 40px 40px;
  font-family: 'Helvetica Neue', sans-serif;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: start;
  gap: 80px;
}

.footer-brand h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  letter-spacing: 2px;
  font-weight: 500;
}

.footer-brand p {
  font-size: 12px;
  letter-spacing: 1px;
  opacity: 0.6;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.footer-nav a:hover {
  opacity: 1;
}

.footer-social {
  display: flex;
  gap: 20px;
}

.social-link svg {
  width: 20px;
  height: 20px;
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 0.7;
}

.social-link:hover svg {
  opacity: 1;
  transform: translateY(-2px);
}

.footer-bottom {
  margin-top: 80px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 25px;
  text-align: center;
  font-size: 11px;
  letter-spacing: 1px;
  opacity: 0.5;
}

@media (max-width: 768px) {

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

}
/* ======================================================
   RESPONSIVE
====================================================== */
@media (max-width: 1200px) {
  .masonry { column-count: 3; }
}

@media (max-width: 768px) {
  .site-header {
    padding: 20px 30px;
  }

  .logo img {
    height: 18px;
  }

  nav a {
    margin-left: 22px;
    font-size: 10px;
  }

  section {
    padding: 90px 30px;
  }

  .masonry { column-count: 2; }
}

@media (max-width: 480px) {
  .masonry { column-count: 2; }
}
/* ======================================================
   MOBILE HERO FIX — CLEAN & CINEMATIC
====================================================== */

@media (max-width: 768px) {

  /* Prevent mobile double-scroll */
  html, body {
    overflow-x: hidden;
  }

  /* HEADER HEIGHT AWARENESS */
  .site-header {
    padding: 18px 24px;
  }

  /* HERO */
  .hero {
    height: 100svh; /* safer mobile viewport */
    min-height: 560px;
    max-height: 720px;
    position: relative;
  }

  .hero-img {
    object-position: center top;
    animation: none; /* disable zoom on mobile */
    transform: scale(1.02);
  }

  .hero-overlay {
    background: rgba(0,0,0,0.25);
  }

  /* HERO CONTENT */
  .hero-content {
    top: 55%;
    padding: 0 24px;
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 34px;
    line-height: 1.2;
    margin-bottom: 14px;
  }

  .hero-content p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 26px;
    opacity: 0.9;
  }

  .cta {
    font-size: 11px;
    padding: 12px 18px;
    letter-spacing: 2px;
  }
}

/* ======================================================
   SMALL PHONES (iPhone SE etc)
====================================================== */

@media (max-width: 390px) {

  .hero {
    min-height: 520px;
  }

  .hero-content h1 {
    font-size: 30px;
  }

  .hero-content p {
    font-size: 14px;
  }
}
/* ======================================================
   HAMBURGER BUTTON (FIXED)
====================================================== */

.hamburger {
  width: 28px;
  height: 20px;
  position: relative;
  cursor: pointer;
  display: none;
}

.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: transform 0.35s ease, opacity 0.25s ease;
}

/* TOP */
.hamburger span:nth-child(1) {
  top: 0;
}

/* MIDDLE */
.hamburger span:nth-child(2) {
  top: 9px;
}

/* BOTTOM */
.hamburger span:nth-child(3) {
  bottom: 0;
}



/* ======================================================
   HAMBURGER → X ANIMATION
====================================================== */

/* Default state */
.hamburger span {
  transition: transform 0.35s ease, opacity 0.25s ease;
  transform-origin: center;
}

/* When menu is open */
body.menu-open .hamburger span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

body.menu-open .hamburger span:nth-child(2) {
  opacity: 0;
}

body.menu-open .hamburger span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ======================================================
   MOBILE MENU
====================================================== */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease;
  z-index: 2000;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mobile-menu a {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  margin: 18px 0;
  color: #fff;
  text-decoration: none;
}

body.menu-open .mobile-menu {
  opacity: 1;
  visibility: visible;
  overflow: hidden;
}

.close-menu {
  position: absolute;
  top: 26px;
  right: 28px;

  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}

.mobile-menu .submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-menu li.active .submenu {
  max-height: 500px;
}

/* ======================================================
   RESPONSIVE SWITCH
====================================================== */
@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

/* LOCK SCROLL */
body.menu-open {
  overflow: hidden;
}
@media (max-width: 768px) {

  .hero {
    height: 100svh;
    min-height: 560px;
  }

  .hero-img {
    animation: none;
    transform: scale(1.02);
    object-position: center top;
  }

  .hero-content h1 {
    font-size: 34px;
  }

  .hero-content p {
    font-size: 15px;
  }
}

@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }

  .hamburger {
    display: block;
  }
}
body.menu-open {
  height: 100vh;
  overflow: hidden;
}
.mobile-menu.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
section {
  scroll-margin-top: 120px;
}
/* ======================================================
   CONTACT — FULLY HIDDEN BY DEFAULT
====================================================== */
#contact {
  display: block;              /* keep layout controllable */
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;

  padding-top: 0;
  padding-bottom: 0;

  transform: translateY(40px);
  transition:
    max-height 0.8s ease,
    opacity 0.6s ease,
    transform 0.6s ease,
    padding 0.6s ease;
}

/* REVEALED STATE */
#contact.is-visible {
  max-height: 1400px;          /* enough for full content */
  opacity: 1;
  pointer-events: auto;

  padding-top: 110px;
  padding-bottom: 110px;

  transform: translateY(0);
}
/* FAQ SECTION */
.faqs {
  padding: 120px 24px;
  background: #fff;
}

.faqs-inner {
  max-width: 900px;
  margin: 0 auto;
}

.faqs h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 80px;
}

/* FAQ ITEM */
.faq-item {
  border-bottom: 1px solid #e5e5e5;
  padding: 24px 0;
}

/* QUESTION */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  padding: 0;
}

/* ICON */
.faq-question .icon {
  font-size: 22px;
  transition: transform 0.3s ease;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  margin-top: 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}

/* ACTIVE STATE */
.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item.active .icon {
  transform: rotate(45deg);
}

/* MOBILE */
@media (max-width: 768px) {
  .faqs h1 {
    font-size: 36px;
    margin-bottom: 48px;
  }

  .faq-question {
    font-size: 16px;
  }
}
/* ======================================================
   SEE ALL FAQ BUTTON — HARD OVERRIDE
====================================================== */

.see-all-faq {
  margin-top: 50px;
  text-align: center;
}

.see-all-faq a.faq-btn {
  display: inline-block !important;
  padding: 14px 28px !important;

  font-family: 'Montserrat', sans-serif;
  font-size: 12px !important;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;

  color: #000 !important;
  background: transparent !important;
  border: 1px solid #000 !important;

  text-decoration: none !important;
  cursor: pointer;

  transition: all 0.35s ease;
}

.see-all-faq a.faq-btn:hover {
  background: #000 !important;
  color: #fff !important;
}
/* ===================
   TESTIMONIAL SLIDER
/* ===============================
   TESTIMONIAL SLIDER — ABSOLUTE POSITIONING
================================ */

.testimonials {
  padding: 80px 24px;
  background: #f9f9f9;
  text-align: center;
  position: relative; /* Necessary for absolute positioning */
}

.testimonial-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  max-height: 0px;
}

/* Testimonial item */
.testimonial {
  position: static; /* Stack all testimonials on top of each other */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none; /* Ensure inactive testimonials don’t receive clicks */
}

.testimonial.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto; /* Allow interactions with the active testimonial */
}

/* Author image */
.testimonial-author {
  width: 70px;
  height: 70px;
  margin: 0 auto 18px;
  border-radius: 50%;
  overflow: hidden;
  opacity: 0.9;
  filter: grayscale(100%);
  transition: opacity 0.4s ease, filter 0.4s ease;
}

.testimonial.active .testimonial-author {
  opacity: 1;
  filter: grayscale(0%);
}

.testimonial-author img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Testimonial text */
.testimonial-text {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 18px;
}

.testimonial h3 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #777;
}


/* ===============================
   WEDDING GALLERY — GRID LAYOUT
================================ */


.wedding-gallery {
  padding: 0 20px; /* Reduced padding to ensure no unnecessary space around */
  text-align: center;
  margin: 0; /* Ensure no additional margin around the section */
}

.wedding-gallery h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 0px; /* Adjusted margin to ensure it’s not too large */
}


/* Gallery Grid – centered */
.wedding-gallery-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2px;

  max-width: 1100px;   /* ⬅ controls how wide the grid can be */
  margin: 0 auto 30px; /* ⬅ centers it horizontally */
  justify-content: center;
  margin-bottom: 30px; /* Bottom margin for the whole gallery */
}


.wedding-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  padding-top: 5%;  /* Forces square ratio */
}

.wedding-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;  /* Ensures image fills the entire container */
  object-position: center; /* Keep the image centered */
  transition: transform 0.3s ease;
}

.wedding-gallery-item:hover img {
  transform: scale(1.05); /* Hover zoom effect */
}

/* Load More Button */
.load-more {
  text-align: center;
}

.load-more button {
  padding: 12px 30px;
  font-size: 16px;
  background-color: #b99b6b;
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.load-more button:hover {
  background-color: #9e8a4c;
}

/* ===============================
   MOBILE GRID LAYOUT (TWO PER ROW)
================================ */

@media (max-width: 768px) {
  .wedding-gallery-gallery {
    grid-template-columns: repeat(2, minmax(220px, 1fr)); /* Two images per row on tablet/mobile */
    gap: 5px; /* Reduced gap for mobile */
  }
}

/* For very small screens (e.g., iPhone SE) */
@media (max-width: 480px) {
  .wedding-gallery-gallery {
    grid-template-columns: repeat(2, minmax(180px, 1fr)); /* Two images per row for very small screens */
    gap: 8px; /* Reduced gap further for very small screens */
  }
}
/* Policy Page Layout */
.policy-page {
  padding: 120px 0;
}

.policy-page .container {
  max-width: 760px;   /* Narrower = more editorial */
  margin: 0 auto;
}

/* Headline */
.policy-page h1 {
  margin-bottom: 12px;
}

/* Last Updated */
.policy-page .last-updated {
  margin-bottom: 48px;
  opacity: 0.6;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Section Headings */
.policy-page h2 {
  margin-top: 64px;
  margin-bottom: 16px;
}

/* Paragraph rhythm */
.policy-page p {
  margin-bottom: 20px;
  line-height: 1.7;
}

/* Lists */
.policy-page ul {
  margin: 16px 0 28px 0;
  padding-left: 18px;
}

.policy-page li {
  margin-bottom: 10px;
}

/* Links */
.policy-page a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.has-dropdown {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 130%;
  left: 0;

  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;

  transition: opacity 0.25s ease, transform 0.25s ease;
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown a {
  display: block;
  padding: 8px 0;
  white-space: nowrap;
}
.has-dropdown:hover .dropdown {
  transition-delay: 0.05s;
}
.mobile-dropdown {
  width: 100%;
}

.mobile-toggle {
  cursor: pointer;
}

.mobile-submenu {
  display: none;
  padding-left: 20px;
  margin-top: 10px;
}

.mobile-dropdown.active .mobile-submenu {
  display: block;
}

.mobile-sublink {
  display: block;
  padding: 8px 0;
  font-size: 0.9em;
  color: #fff;   /* Force white for black menu */
  opacity: 0.8;
}