/* ============================= */
/* FONT IMPORTS */
/* ============================= */

@font-face {
  font-family: 'ivypresto_display';
  src: url('fonts/fonnts.com-ivy-presto-display--webfont.woff2') format('woff2'),
       url('fonts/fonnts.com-ivy-presto-display--webfont.woff') format('woff');
}

@font-face {
  font-family: 'ivypresto_headline';
  src: url('fonts/fonnts.com-ivy-presto-headline-semi-bold-webfont.woff2') format('woff2'),
       url('fonts/fonnts.com-ivy-presto-headline-semi-bold-webfont.woff') format('woff');
}

@font-face {
  font-family: 'neue_haas';
  src: url('fonts/nhaasgrotesktxpro-55rg-webfont.woff2') format('woff2'),
       url('fonts/nhaasgrotesktxpro-55rg-webfont.woff') format('woff');
}


/* ============================= */
/* VARIABLES & TYPOGRAPHY BASES */
/* ============================= */

:root {
  /* COLORS */
  --lavish-charcoal: #1C1C1C;
  --lavish-cream: #F5EFE6;
  --lavish-beige: #D6C3A3;
  --lavish-gold: #C6A75E;
  --lavish-white: #FFFFFF;

  /* SPACING */
  --space-xs: 10px;
  --space-sm: 20px;
  --space-md: 30px;
  --space-lg: 40px;
  --space-xl: 60px;
  --space-xxl: 80px;
  --gap: var(--space-lg);

  /* FONTS */
  --font-hero: 'ivypresto_display', serif;
  --font-subheading: 'ivypresto_headline', serif;
  --font-body: 'neue_haas', Arial, sans-serif;

  /* TYPOGRAPHY SIZES */
  --font-size-h1: 50px;
  --font-size-h2: 40px;
  --font-size-h3: 24px;
  --font-size-p: 22px;

  /* TYPOGRAPHY MARGINS */
  --margin-h1: var(--space-sm);
  --margin-h2: var(--space-md);
  --margin-h3: var(--space-xs);
  --margin-p: var(--space-md);
}

/* ============================= */
/* RESET */
/* ============================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
}

/* ============================= */
/* TYPOGRAPHY */
/* ============================= */

body {
  font-family: var(--font-body);
  color: var(--lavish-charcoal);
  line-height: 1.5;
  min-height: 100vh;
  background: var(--lavish-beige);
}

p, a, li {
  font-family: var(--font-body);
  font-size: var(--font-size-p);
  margin-bottom: var(--margin-p);
}

h1 {
  font-family: var(--font-hero);
  font-size: var(--font-size-h1);
  margin-bottom: var(--margin-h1);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

h2 {
  font-family: var(--font-subheading);
  font-size: var(--font-size-h2);
  margin-bottom: var(--margin-h2);
  text-transform: none;
  letter-spacing: 0.03em;
}

h3 {
  font-family: var(--font-subheading);
  font-size: var(--font-size-h3);
  margin-bottom: var(--margin-h3);
  text-transform: none;
  letter-spacing: 0.03em;
}

/* ============================= */
/* RESPONSIVE TYPOGRAPHY */
/* ============================= */

/* Tablets: 510px–768px */
@media (max-width: 768px) {
  :root {
    --font-size-h1: 40px;
    --font-size-h2: 28px;
    --font-size-h3: 20px;
    --font-size-p: 16px;

    --margin-h1: var(--space-xs);
    --margin-h2: var(--space-sm);
    --margin-h3: var(--space-xs);
    --margin-p: var(--space-sm);
  }
}

/* Mobile: under 510px */
@media (max-width: 510px) {
  :root {
    --font-size-h1: 32px;
    --font-size-h2: 24px;
    --font-size-h3: 18px;
    --font-size-p: 14px;

    --margin-h1: var(--space-xs);
    --margin-h2: var(--space-xs);
    --margin-h3: var(--space-xs);
    --margin-p: var(--space-xs);
  }
}

/* ============================= */
/* HEADER */
/* ============================= */

.site-header {
  background: var(--lavish-charcoal);
  color: var(--lavish-white);
  padding: 20px 4%;
  position: static;
  top: 0;
  z-index: 10000; /* increase slightly */
  width: 100%;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */

.logo img {
  height: clamp(70px, 8vw, 150px);
  width: auto;
}


/* Right side */

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}


/* ============================= */
/* NAVIGATION */
/* ============================= */
.main-nav{
  margin:0 auto;
  padding:0 40px;
}

.main-nav a {
  font-family: var(--font-subheading);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: clamp(18px, 2vw, 40px);
}

.nav-links a {
  color: var(--lavish-white);
  text-decoration: none;
  text-transform: uppercase;
  font-size: clamp(14px, 1.2vw, 22px);
    border-bottom: 2px solid transparent;
  transition: color .5s ease, border-color 2s ease;
}

/* Hover + Active combined */
.nav-links a:hover,
.nav-links a.active {
  color: var(--lavish-gold);
  border-color: var(--lavish-gold);
}
/* ============================= */
/* SOCIAL ICONS */
/* ============================= */

.social-icons {
  display: flex;
  gap: 18px;
}

.social-icons a {
  display: inline-block;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.social-icons img {
  width: 30px;
  height: 30px;
  display: block;
}

.social-icon {
  color: var(--lavish-gold);
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icon:hover {
  color: var(--lavish-white);
  transform: scale(1.15);
}

.social-icon svg {
  width: clamp(20px, 2vw, 40px);
  height: clamp(20px, 2vw, 40px);
}

/* ============================= */
/* BOOK NOW BUTTON */
/* ============================= */

.book-now {
  background: var(--lavish-gold);
  color: var(--lavish-charcoal);
  border-radius: 20px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: clamp(10px, 1vw, 18px) clamp(16px, 1.5vw, 26px);
  font-family: var(--font-subheading);
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.book-now:hover {
  background: var(--lavish-charcoal);
  color: var(--lavish-gold);
}


/* ============================= */
/* HAMBURGER ICON & MOBILE MENU */
/* ============================= */

/* Hamburger Icon */
.hamburger { 
  top: 2.5rem;
  right: 2rem;
  width: 35px;
  height: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 10001; /* above mobile menu */
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 4px;
  background-color: var(--lavish-gold);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
  background-color: var(--lavish-white);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
  background-color: var(--lavish-white);
}

/* ============================= */
/* HAMBURGER ICON & MOBILE MENU */
/* ============================= */

/* Hamburger Icon */
.hamburger { 
  top: 2.5rem;
  right: 2rem;
  width: 35px;
  height: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 10001;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 4px;
  background-color: var(--lavish-gold);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
  background-color: var(--lavish-white);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
  background-color: var(--lavish-white);
}

/* ============================= */
/* MOBILE MENU */
/* ============================= */

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;

  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* ✅ true vertical centering */
  align-items: center;

  padding: 5rem 1.5rem 2rem;

  background-color: var(--lavish-charcoal);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.77,0.2,0.05,1.0);

  z-index: 10000;
  overflow: hidden;
}

.mobile-menu.active {
  transform: translateX(0);
}

/* Close button */
.mobile-menu-close {
  font-size: 5rem;
  font-weight: bold;
  cursor: pointer;
  position: absolute;
  top: 0.5rem;
  right: 1.5rem;
  z-index: 11000;
  color: var(--lavish-gold);
}

/* ============================= */
/* CONTENT POSITION CONTROL */
/* ============================= */

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem; /* space between nav and the bottom group */
  margin-top: 4rem; /* push entire menu down a little */
  transform: translateY(0); /* remove percentage transforms */
}

/* ============================= */
/* NAV LINKS */
/* ============================= */

.mobile-menu .nav-links {
  list-style: none;
  padding: 0;
  margin: 0;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem; /* 👈 tighter spacing */
}

.mobile-menu .nav-links li a {
  color: #fff;
  text-decoration: none;
  font-size: 1.6rem;
  font-family: var(--font-subheading);
  letter-spacing: 0.1em;
  }

.mobile-menu .nav-links li a.active {
  color: var(--lavish-gold);
  border-bottom: 2px solid var(--lavish-gold);
  padding-bottom: 4px;
}
/* ============================= */
/* SOCIAL + BUTTON GROUP */
/* ============================= */

.mobile-menu-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem; /* space between social icons and button */
  margin-top: 2rem; /* pushes it 2 lines below nav links */
}
/* Social Icons */
.mobile-menu .social-icons {
  display: flex;
  gap: 1.5rem; /* 👈 reduced spacing */
}

.mobile-menu .social-icons a svg {
  width: 40px;
  height: 40px;
  fill: #fff;
}

/* Book Now Button */
.mobile-menu .book-now {
  margin-top: 0.5rem;
  width: 100%;
  max-width: 260px;
  text-align: center;
}

/* ============================= */
/* OPTIONAL OVERLAY */
/* ============================= */

.mobile-menu::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--lavish-charcoal);
  pointer-events: none;
  z-index: -1;
}

/* ============================= */
/* RESPONSIVE TWEAKS */
/* ============================= */

@media (max-width: 767px) {
  .mobile-menu-content {
    transform: translateY(-8%);
  }
}

@media (min-width: 768px) {
  .mobile-menu-content {
    transform: translateY(-12%);
  }
}

/* END OF HEADER*/

/* ============================= */
/* MAIN CONTENT */
/* ============================= */

.main-content {
  flex: 1;
}

/* Home Page*/ 
/* ============================= */
/* HOME HERO SLIDESHOW */
/* ============================= */

.hero-slideshow {
  position: relative;
  height: 80vh;
}

.hero-slideshow .slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slideshow .slide.active {
  opacity: 1;
}

.hero-slideshow img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: linear-gradient(
    to bottom,
    var(--lavish-beige),
    var(--lavish-charcoal)
  );
}


/* ============================= */
/* HERO OVERLAY CONTENT */
/* ============================= */

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 20px;

  /* darken slightly more if text is hard to read */
  background: rgba(0, 0, 0, 0.50); /* increased from 0.35 */
}

.hero-overlay h1,
.hero-overlay h2,
.hero-overlay p {
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

/* rotating word */

.hero-rotating {
  font-family: var(--font-hero);
  color: #C6A75E;
  font-size: clamp(25px, 2vw, 38px);
  letter-spacing: 3px;
  margin-bottom: -20px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 32px;
}

.word {
  position: absolute;
  left: 50%;                     /* center horizontally */
  display: inline-block;         /* allows transforms */
  opacity: 0;
  transform: translateY(-20px) translateX(-50%); /* start slightly above & centered */
  transition: opacity 0.5s ease, transform 0.5s ease;
  width: auto;                   /* auto width works better than 100% here */
  white-space: nowrap;
}

.word.active {
  opacity: 1;
  transform: translateX(-50%) translateY(0); /* drops to normal position & stays centered */
}
/* salon name */

.hero-title {
  font-size: clamp(45px, 6vw, 90px);
  font-family: var(--font-hero);
  letter-spacing: 2px;
  margin-bottom: -2px; /* reduced from 15px */
}


/* tagline */

.hero-tagline{
  font-size:clamp(16px,1.5vw,22px);
  margin-top: -2px;
  margin-bottom:25px;
}

/* CTA button */

.hero-button{
  background:var(--lavish-gold);
  color:var(--lavish-charcoal);
  padding:14px 28px;
  border-radius:20px;
  text-decoration:none;
  font-family:var(--font-subheading);
  letter-spacing:1px;
  transition:all .3s ease;
}

.hero-button:hover{
  background:var(--lavish-charcoal);
  color:var(--lavish-gold);
}

/* ============================= */
/* SEO INTRO SECTION */
/* ============================= */

.seo-intro{
  padding: var(--space-xxl) 20px;
  background:var(--lavish-beige);
  text-align:center;
}

/* CTA BUTTON CONTAINER */
.cta-buttons{
  display:flex;
  justify-content:center;
  gap:16px;        /* space between buttons */
  margin-top:30px;
  flex-wrap:wrap;
}

/* MOBILE STACKING */
@media (max-width:600px){
  .cta-buttons{
    flex-direction:column;
    align-items:center;
  }
}

/* BASE BUTTON STYLE */
.cta-buttons .btn,
.cta-buttons .btn-outline,
.cta-buttons .btn:visited,
.cta-buttons .btn-outline:visited {
  background: var(--lavish-gold);
  color: var(--lavish-charcoal);
  padding: 14px 28px;
  border-radius: 20px;
  text-decoration: none;
  font-family: var(--font-subheading);
  letter-spacing: 1px;
  transition: all .3s ease;
  display: inline-block;
}

/* HOVER EFFECT */
.cta-buttons .btn:hover,
.cta-buttons .btn-outline:hover {
  background: var(--lavish-charcoal);
  color: var(--lavish-gold);
  opacity: 1;
  filter: none;
}


.seo-intro a {
  color: var(--lavish-charcoal);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.seo-intro a:hover {
  text-decoration-color: var(--lavish-gold);
}

.seo-intro h2 {
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 0.8s forwards;
  animation-delay: 0.5s;
  font-family: var(--font-subheading);
  font-size: var(--font-size-h2);
  margin-bottom: var(--margin-h2);
}


.seo-intro h2::after{
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background: var(--lavish-gold);
  margin: 12px auto 0;
}
.seo-intro p{
  max-width: 700px;       /* keeps text from stretching too wide */
  margin: 0 auto 80px;    /* center and add spacing below */
  color: var(--lavish-charcoal);
  text-align: center;     /* optional */
  font-family: var(--font-body);
  font-size: var(--font-size-p);
  margin-bottom: var(--margin-p);
  line-height: 1.6;
}


/* ============================= */
/* INSTAGRAM SECTION */
/* ============================= */

.instagram-section {
  text-align: center;
  padding: 60px 20px;
  background: var(--lavish-beige); /* match your gallery background */
}

.instagram-section h2 {
  font-family: var(--font-subheading);
  font-size: var(--font-size-h2);
  margin-bottom: var(--margin-h2);
  position: relative;
}

.instagram-section h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background: var(--lavish-gold);
  margin: 12px auto 0;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* default 4 columns */
  gap: 15px;
  max-width: 1000px;
  margin: 0 auto;
}

/* For screens smaller than 976px: 2 columns */
@media (max-width: 976px) {
  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Optional smaller screens tweak */
@media (max-width: 480px) {
  .instagram-grid {
    grid-template-columns: repeat(2, 1fr); /* still 2 columns, no 1-column */
  }
}
.instagram-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;

  /* Keep transform for hover effects if you use them */
  transition: opacity 0.3s ease-in-out, transform 0.3s ease;

  opacity: 1;
  will-change: opacity;
}

.instagram-grid img.fade-out {
  opacity: 0;
}

.instagram-grid img:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.fade-out {
  opacity: 0;
}


.instagram-button-wrapper {
  margin-top: 50px;
}

.instagram-button{
  background:var(--lavish-gold);
  color:var(--lavish-charcoal);
  padding:14px 28px;
  border-radius:20px;
  text-decoration:none;
  font-family:var(--font-subheading);
  letter-spacing:1px;
  transition:all .3s ease;
}

.instagram-button:hover{
  background:var(--lavish-charcoal);
  color:var(--lavish-gold);
}

/* HOMEPAGE TESTIMONIALS SECTION */
.home-testimonials {
  padding: var(--space-xxl) 20px;       /* generous vertical spacing */
  background: var(--lavish-beige);      /* soft neutral background */
  text-align: center;
  position: relative;
}

/* Section Heading */
.home-testimonials h2 {
  font-family: var(--font-subheading);
  font-size: var(--font-size-h2);
  margin-bottom: var(--margin-h2);
  color: var(--lavish-charcoal);
  position: relative;
  display: inline-block;
}

/* Gold underline accent */
.home-testimonials h2::after {
  content: "";
  display: block;
  width: 60px;                         /* slightly longer for elegance */
  height: 3px;                         /* thicker line for presence */
  background: var(--lavish-gold);
  margin: 12px auto 0;
  border-radius: 2px;
}

/* Google Rating */
.home-testimonials .google-rating {
  display: block;                  /* ensures it sits below the H2 */
  font-size: 1.2rem;
  color: var(--lavish-charcoal);
  font-weight: 600;
  letter-spacing: 2px;
  background: var(--lavish-cream); /* optional for shadow contrast */
  padding: 6px 14px;               /* breathing room around text */
  border-radius: 12px;             /* soft rounded edges */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12); /* subtle shadow */
  margin: 12px auto 0 auto;        /* centers it below H2 */
  width: fit-content;              /* only as wide as the text */
}
.google-rating .stars {
  color: var(--lavish-gold);
  margin-right: 8px;
  letter-spacing: 3px; /* makes stars feel more spaced/premium */
}

/* Subtitle/Intro text */
.home-testimonials .testimonial-subtitle {
  font-family: var(--font-body);
  font-size: var(--font-size-p);
  color: var(--lavish-charcoal);
  margin-top: 16px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  font-style: italic;                   /* subtle luxury touch */
}

/* Optional: Fade-in effect for the intro */
.home-testimonials h2,
.home-testimonials .google-rating,
.home-testimonials .testimonial-subtitle {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards;
}

.home-testimonials h2 { animation-delay: 0s; }
.home-testimonials .google-rating { animation-delay: 0.2s; }
.home-testimonials .testimonial-subtitle { animation-delay: 0.4s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .home-testimonials h2 {
    font-size: 28px;
  }
  .home-testimonials .testimonial-subtitle {
    font-size: 16px;
  }
}

/* Grid */
.home-testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  align-items: stretch;
}

/* Responsive 2-column layout */
@media (min-width: 768px) {
  .home-testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Clickable Testimonial Cards */
.home-testimonials-grid a.home-testimonial-card {
  display: block;
  text-decoration: none;  /* removes underline from links */
  color: inherit;         /* keeps text color the same */
  background: var(--lavish-white);
  border: 4px solid var(--lavish-gold);
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  text-align: left;
  position: relative;

  /* Animation */
  opacity: 0;
  transform: translateY(30px);
  animation: homeFadeUp .8s ease forwards;
  transition: all .35s ease;
}

/* Hover effect */
.home-testimonials-grid a.home-testimonial-card:hover {
  transform: translateY(-8px);
  border-color: var(--lavish-charcoal);
  box-shadow: 0 18px 35px rgba(0,0,0,0.15);
}

/* Stars hover glow */
.home-testimonials-grid a.home-testimonial-card:hover .home-stars span {
  text-shadow:
    0 0 6px var(--lavish-gold),
    0 0 12px var(--lavish-gold);
}

/* "View on Google →" pseudo-element */
.home-testimonials-grid a.home-testimonial-card::after {
  content: "View on Google →";
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--lavish-gold);
  position: absolute;
  bottom: 15px;
  right: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.home-testimonials-grid a.home-testimonial-card:hover::after {
  opacity: 1;
}

/* Card content */
.home-testimonial-text {
  font-family: var(--font-body);
  font-size: var(--font-size-p);
  line-height: 1.6;
  font-style: italic;
  color: var(--lavish-charcoal);
}

.home-testimonial-author {
  font-family: var(--font-subheading);
  font-size: var(--font-size-h3);
  font-weight: bold;
  color: var(--lavish-charcoal);
}

.home-testimonial-service {
  color: var(--lavish-charcoal);
  font-family: var(--font-body);
  font-size: var(--font-size-p);
}

/* Animation delays for 3 cards */
.home-testimonials-grid a.home-testimonial-card:nth-child(1) { animation-delay: 0s; }
.home-testimonials-grid a.home-testimonial-card:nth-child(2) { animation-delay: .2s; }
.home-testimonials-grid a.home-testimonial-card:nth-child(3) { animation-delay: .4s; }

@keyframes homeFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Stars animation */
.home-stars {
  color: var(--lavish-gold);
  font-size: 1.2rem;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.home-stars span {
  display: inline-block;
  animation: homeStarWave 2s ease-in-out infinite;
}

@keyframes homeStarWave {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

.home-stars span:nth-child(1) { animation-delay: 0s; }
.home-stars span:nth-child(2) { animation-delay: .15s; }
.home-stars span:nth-child(3) { animation-delay: .3s; }
.home-stars span:nth-child(4) { animation-delay: .45s; }
.home-stars span:nth-child(5) { animation-delay: .6s; }

/* Mobile adjustments */
@media (max-width: 420px) {
  .home-testimonials-grid a.home-testimonial-card{
    padding: 22px;
  }
}

/* Leave A Review Button */ 

.home-review-button {
  text-align: center;
  margin-top: 20px;
}

.btn-primary {
  background-color: var(--lavish-gold); 
  color: var(--lavish-charcoal);
  padding: 16px 32px;
  border-radius: 22px;
  text-decoration: none;
  font-family: var(--font-subheading);
  letter-spacing: 1px;
  transition: all .3s ease;
}

.btn-primary:hover {
  background-color: var(--lavish-charcoal);
  color: var(--lavish-gold);
}
/* ============================= */
/* HOMEPAGE CTA SECTION */
/* ============================= */

.home-cta{
  padding:var(--space-xxl) 20px;
  text-align:center;
  background:var(--lavish-beige);
}

.home-cta h2{
  font-family: var(--font-subheading);
  font-size: var(--font-size-h2);
  margin-bottom: var(--margin-h2);
  position:relative;
}

.home-cta h2::after{
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background: var(--lavish-gold);
  margin: 12px auto 0;
}

.cta-text{
  max-width:600px;
  margin:25px auto 40px auto;
  font-family: var(--font-body);
  font-size: var(--font-size-p);
  line-height: 1.6;
}

.cta-button{
  display:inline-block;
  background:var(--lavish-gold);
  color:var(--lavish-charcoal);
  padding:16px 32px;
  border-radius:22px;
  text-decoration:none;
  font-family:var(--font-subheading);
  letter-spacing:1px;
  transition:all .3s ease;
}

.cta-button:hover{
  background:var(--lavish-charcoal);
  color:var(--lavish-gold);
}

/* ============================= */
/* HOMEPAGE LOCATION SECTION */
/* ============================= */

.home-location{
  padding:var(--space-xxl) 20px;
  text-align:center;
  background: var(--lavish-beige)
}

.home-location h2{
  font-family: var(--font-subheading);
  font-size: var(--font-size-h2);
  margin-bottom: var(--margin-h2);
  position:relative;
  color:var(--lavish-charcoal)
}

.home-location h2::after{
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background: var(--lavish-gold);
  margin: 12px auto 0;
}

.location-address{
  font-family: var(--font-body);
  font-size: var(--font-size-p);
  line-height: 1.7;
  color:var(--lavish-charcoal);
  margin-bottom:60px;
  font-style: normal;
}

.location-address a,
.location-address a:visited{
  color:var(--lavish-charcoal);
  text-decoration:none;
}

.location-address a:hover{
  color:var(--lavish-gold);
}

.location-button{
  display:inline-block;
  background:var(--lavish-gold);
  color:var(--lavish-charcoal);
  padding:14px 28px;
  border-radius:20px;
  text-decoration:none;
  font-family:var(--font-subheading);
  letter-spacing:1px;
  transition:all .3s ease;
}

.location-button:hover{
  background:var(--lavish-charcoal);
  color:var(--lavish-gold);
}

.location-map{
  margin-top:40px;
  max-width:800px;
  margin-left:auto;
  margin-right:auto;
}

.location-map iframe{
  width:100%;
  height:300px;
  border:4px solid var(--lavish-gold);
  border-radius:12px;
}
/* ABOUT PAGE*/
/* ============================= */
/* ABOUT IMAGE */
/* ============================= */

.about-image {
  width: 100%;
  height: 80vh;
  overflow: hidden;
  margin-top: -60px;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
   background: var(--lavish-beige);
}

.about {
  text-align: center;
  padding: 60px 20px;
  background: var(--lavish-beige);
}

.about h1 {
  font-family: var(--font-subheading);
  font-size: var(--font-size-h1);
  margin-bottom: var(--margin-h1);
  margin-top: -40px;  /* moves only the h1 up */
  position: relative;
}

.about h1::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background: var(--lavish-gold);
  margin: 12px auto 0;
}

/* NEW H2 STYLING */
.about h2 {
  font-family: var(--font-subheading);
  font-size: var(--font-size-h2);
  margin-bottom: var(--margin-h2);
  font-style: italic; /* matches the luxury look */
  background: linear-gradient(90deg, var(--lavish-gold), var(--lavish-charcoal), var(--lavish-gold));
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 5s infinite;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* About intro animation & styling */
.about-intro {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1.5s ease forwards;
  animation-delay: 0.5s;

  max-width: 700px;
  margin: 20px auto 50px auto;
  text-align: center;
  font-family: var(--font-subheading);
  font-size: var(--font-size-h3);
  line-height: 1.6;
}

.about-intro::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background: var(--lavish-gold);
  margin: 12px auto 0;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ABOUT GRID */
.about-grid{
  align-items: stretch;
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* desktop */
  gap: 40px;
  margin-top: 30px;
  padding: 0 20px 80px 20px;
}

/* TABLET */
@media (max-width:1239px){
  .about-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */
@media (max-width:939px){
  .about-grid{
    grid-template-columns: 1fr;
  }
}

/* ABOUT CARDS */
.about-card{
  background: var(--lavish-white);
  padding: 30px;
  border-radius: 8px;
  border: 4px solid var(--lavish-gold);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform .25s ease, box-shadow .25s ease;

  text-align: center; /* centers card content */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-card:hover{
  transform: translateY(-6px);
  border-color: var(--lavish-charcoal);
  box-shadow: 0 18px 35px rgba(0,0,0,0.15);
}

.about-card h3{
  font-family: var(--font-subheading);
  font-size: var(--font-size-h3);
  margin-bottom: var(--margin-h3);
  color: var(--lavish-charcoal); /* optional highlight */
}

.about-card p {
  font-family: var(--font-body);
  font-size: var(--font-size-p);
  margin-bottom: var(--margin-p);
}

/* ============================= */
/* SERVICES */
/* ============================= */

.services {
  text-align: center;
  padding: var(--space-xxl) 20px;
  background: var(--lavish-beige); /* add this */
}

.services h1 {
  font-family: var(--font-subheading);
  font-size: var(--font-size-h1);
  margin-bottom: var(--margin-h1);
  margin-top: 0px;  /* moves only the h1 up */
  position: relative;
}

.services h1::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background: var(--lavish-gold);
  margin: 12px auto 0;
}

.services p {
  font-family: var(--font-body);
  font-size: var(--font-size-p);
  margin-bottom: var(--margin-p);
  max-width: 600px;
  margin: 20px auto;
}

.service-category .book-now {
  font-family: var(--font-subheading);
  font-size: var(--font-size-p);
  width: max-content;
  align-self: center; /* button left aligned; use center if you prefer */
  margin-top: 10px;
  background: var(--lavish-gold);
  color: var(--lavish-charcoal);
  border-radius: 20px;
  font-weight: 600;
  padding: 18px 26px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.service-category .book-now {
  display: inline-block;
  margin-top: 40px;
}

.service-category .book-now:hover {
  background: var(--lavish-charcoal);
  color: var(--lavish-gold);
}

/* ============================= */
/* SERVICES ACCORDION */
/* ============================= */

.accordion {
  max-width: 700px;
  margin: 0 auto;
  padding: 20px 0;
}

.accordion-item {
  margin-bottom: 12px;
}

.accordion-header {
  background: var(--lavish-charcoal);
  color: var(--lavish-white);
  cursor: pointer;
  padding: 16px 20px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  font-family: var(--font-subheading);
  font-size: 18px;
  border-radius: 8px;
  transition: background 0.3s ease, color 0.3s ease;
  position: relative;
}

.accordion-header::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 20px;
  transition: transform 0.3s ease;
}

.accordion-header.active::after {
  content: "−";
  transform: rotate(0deg);
}

.accordion-header:hover {
  background: var(--lavish-gold);
  color: var(--lavish-charcoal);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: var(--lavish-cream);
  padding: 0 20px;
  border-radius: 0 0 8px 8px;
}

.accordion-body p {
  padding: 16px 0;
  color: var(--lavish-charcoal);
  font-family: var(--font-body);
  font-size: 16px;
  margin: 0;
}
.service-category h2 {
  font-family: var(--font-subheading);
  font-size: var(--font-size-h2);
  margin-bottom: var(--margin-h2);
  text-align: center;
  margin: 40px 0 20px;
  position: relative;
}

.service-category h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background: var(--lavish-gold);
  margin: 12px auto 0;
}

/* ============================= */
/* SERVICES GALLERY */
/* ============================= */

.services-gallery {
  text-align: center;
  padding: var(--space-xxl) 20px;
  background: var(--lavish-beige); /* add this */
}

.services-gallery h1 {
  font-family: var(--font-subheading);
  font-size: var(--font-size-h1);
  margin-bottom: var(--margin-h1);
  position: relative;
}


.services-gallery h1::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background: var(--lavish-gold);
  margin: 12px auto 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 columns default */
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* For screens smaller than 976px: 2 columns */
@media (max-width: 976px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  cursor: pointer;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

/* Gallery Lightbox Animation*/
/* Lightbox Overlay */

.lightbox{
  display:none;
  position:fixed;
  z-index:9999;
  left:0;
  top:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.9);
  justify-content:center;
  align-items:center;
}

/* Lightbox Arrows */
.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 50px;
  color: white;
  padding: 10px;
  cursor: pointer;
  user-select: none;
  transition: color 0.3s;
}

.lightbox-prev:hover, .lightbox-next:hover {
  color: var(--lavish-gold);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* Image */

.lightbox-content{
  max-width:90%;
  max-height:90%;
  border-radius:8px;
  animation:zoomIn .3s ease;
}

/* Close Button */

.lightbox-close{
  position:absolute;
  top:20px;
  right:35px;
  color:white;
  font-size:40px;
  cursor:pointer;
}

/* Zoom Animation */

@keyframes zoomIn{
  from{ transform:scale(.8); opacity:0; }
  to{ transform:scale(1); opacity:1; }
}

/* Gallery Page Testimonial Section*/

.testimonials{
  padding:var(--space-xxl) 20px;
  text-align:center;
  background: linear-gradient(
    to bottom,
    var(--lavish-beige),
    var(--lavish-charcoal)
  );
}

.testimonials h2 {
  font-family: var(--font-subheading);
  font-size: var(--font-size-h2);
  margin-bottom: var(--margin-h2);
  position: relative;
}


.testimonials h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background: var(--lavish-gold);
  margin: 12px auto 0;
}

.testimonials-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 columns default */
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
}

.testimonial-card{
  background: var(--lavish-white);
  border: 4px solid var(--lavish-gold);
  padding:30px;
  border-radius:14px;
  box-shadow:0 6px 16px rgba(0,0,0,0.08);
  text-align:left;
  position:relative;

  transition:all .35s ease;
}

.testimonial-card:hover{
  transform:translateY(-8px);
  border-color: var(--lavish-charcoal);
  box-shadow:0 18px 35px rgba(0,0,0,0.15);
}


.testimonial-card:hover .stars span{
  text-shadow:
    0 0 6px var(--lavish-gold),
    0 0 12px var(--lavish-gold);
}
.testimonial-text{
  font-family: var(--font-body);
  font-size: var(--font-size-p);
  line-height: 1.6;
  font-style: italic;
  color: var(--lavish-charcoal);
}

.testimonial-author{
  font-family: var(--font-subheading);
  font-size: var(--font-size-h3);
  font-style: bold;
  color: var(--lavish-charcoal);
}

.testimonial-service{
  font-size:.85rem;
  color: var(--lavish-charcoal);
  font-family: var(--font-body);
}
.testimonial-card{
  opacity:0;
  transform:translateY(30px);
  animation:fadeUp .8s ease forwards;
}

.testimonial-card:nth-child(2){ animation-delay:.2s; }
.testimonial-card:nth-child(3){ animation-delay:.4s; }
.testimonial-card:nth-child(4){ animation-delay:.6s; }

@keyframes fadeUp{
  to{
    opacity:1;
    transform:translateY(0);
  }
}
@media (max-width: 1000px){
  .testimonials-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px){
  .testimonials-grid{
    grid-template-columns: 1fr;
  }
}

/* Stars Animation*/
.stars{
  color: var(--lavish-gold);
  font-size: 1.2rem;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.stars span{
  display:inline-block;
  animation: starWave 2s ease-in-out infinite;
}

@keyframes starWave{

  0%,100%{
    transform: translateY(0);
  }

  50%{
    transform: translateY(-3px);
  }

}
.stars span:nth-child(1){ animation-delay:0s; }
.stars span:nth-child(2){ animation-delay:.15s; }
.stars span:nth-child(3){ animation-delay:.3s; }
.stars span:nth-child(4){ animation-delay:.45s; }
.stars span:nth-child(5){ animation-delay:.6s; }

/*Contact Page*/

.contact {
  text-align: center;
  padding: var(--space-xxl) 20px;
  background: var(--lavish-beige); /* add this */
}

.contact h1 {
  font-family: var(--font-subheading);
  font-size: var(--font-size-h1);
  margin-bottom: var(--margin-h1);
  margin: 0 auto 40px auto; /* centers the h1 */
  max-width: 90%; /* prevents it from overflowing */
  position: relative;
  word-wrap: break-word; /* ensures long words break */
  white-space: normal; /* allow wrapping if needed */
}


.contact h1::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background: var(--lavish-gold);
  margin: 12px auto 0;
}

.contact-intro {
  max-width: 700px;       /* keeps text from stretching too wide */
  margin: 0 auto 80px;    /* center and add spacing below */
  font-family: var(--font-body);
  color: var(--lavish-charcoal);
  line-height: 1.6;
  font-size: 18px;
  text-align: center;     /* optional */
}

.contact-intro p {
  margin-bottom: 1em;
}
.contact-intro p {
  font-family: var(--font-body);
  font-size: var(--font-size-p);
  margin-bottom: var(--margin-p);
  line-height: 1.6;
  color: var(--lavish-charcoal);
}
.contact-intro .book-now {
  display: inline-block;
  margin: 20px auto 0; /* spacing above, auto centers horizontally */
}

/* ============================= */
/* LUXURY CONTACT FORM */
/* ============================= */
.contact-form {
  max-width: 700px;
  width: 90%;
  margin: 40px auto 80px;
  display: flex;
  flex-direction: column;
  gap: 20px; /* more breathing room */
  font-family: var(--font-body);
  background: var(--lavish-cream); /* soft luxury background */
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08); /* soft depth */
  border: 2px solid var(--lavish-gold);
  transition: all 0.3s ease;
}

/* LABELS */
.contact-form label {
  font-weight: 600;
  color: var(--lavish-charcoal);
  margin-bottom: 6px;
  display: block;
  letter-spacing: 0.5px;
}

/* INPUTS & TEXTAREA */
.contact-form input,
.contact-form textarea {
  padding: 16px 18px;
  border-radius: 14px;
  border: 2px solid var(--lavish-gold);
  font-size: var(--font-size-p);
  font-family: var(--font-body);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06); /* subtle elevation */
  width: 100%;
  resize: vertical;
  background: var(--lavish-white);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--lavish-charcoal);
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  background: var(--lavish-cream);
}

/* SUBMIT BUTTON */
/* SUBMIT BUTTON */
.contact-form button.book-now {
  background: var(--lavish-gold);
  color: var(--lavish-charcoal);
  padding: 16px 32px;
  border-radius: 24px;
  font-family: var(--font-subheading);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);

  /* Center horizontally on desktop */
  align-self: center;
}

/* Hover effect */
.contact-form button.book-now:hover {
  background: var(--lavish-charcoal);
  color: var(--lavish-gold);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Mobile: full-width button */
@media (max-width: 767px) {
  .contact-form button.book-now {
    width: 100%;
    text-align: center;
  }
}

/* ============================= */
/* THANK YOU PAGE */
/* ============================= */

.thank-you-container {
  min-height: 70vh;
  max-width: 700px;
  margin: 120px auto;
  text-align: center;
  padding: 40px;
  font-family: var(--font-body);
  color: var(--lavish-charcoal);
}

/* Heading */
.thank-you-container h1 {
  font-family: var(--font-subheading);
  font-size: var(--font-size-h2);
  margin-bottom: var(--margin-h2);
  position: relative;
}

.thank-you-container h1::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background: var(--lavish-gold);
  margin: 12px auto 0;
}

/* Paragraphs */
.thank-you-container p {
  font-family: var(--font-body);
  font-size: var(--font-size-p);
  margin-bottom: var(--margin-p);
}

/* ============================= */
/* ACTION BUTTONS */
/* ============================= */
.thank-you-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 60px;
}

/* Book Now Button */
.thank-you-actions .book-now {
  display: inline-block;
  background: var(--lavish-gold);
  color: var(--lavish-charcoal);
  border-radius: 20px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 18px 26px;
  font-family: var(--font-subheading);
  text-decoration: none;
  transition: all 0.3s ease;
}

.thank-you-actions .book-now:hover {
  background: var(--lavish-charcoal);
  color: var(--lavish-gold);
}

/* Secondary Link Button (Return Home) */
.thank-you-actions .secondary-link {
  display: inline-block;
  font-family: var(--font-subheading);
  background: var(--lavish-gold);
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  color: var(--lavish-charcoal);
  padding: 14px 24px;
  border-radius: 20px;
  transition: all 0.3s ease;
  margin-top: 60px;
}

.thank-you-actions .secondary-link:hover {
  background: var(--lavish-charcoal);
  color: var(--lavish-gold);
}

/* ============================= */
/* FOOTER */
/* ============================= */

.custom-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  background: var(--lavish-charcoal);
  color: var(--lavish-white);
  padding: 50px 4%;
  gap: 40px;
  width: 100%;
}


/* Footer columns */

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}


/* Footer headings */

.custom-footer h2 {
  font-family: var(--font-subheading);
  margin-bottom: 16px;
  text-align: center;
}

.custom-footer h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background: var(--lavish-gold);
  margin: 12px auto 0;
}

/* Footer text */

.custom-footer p,
.custom-footer address {
  color: var(--lavish-gold);
  line-height: 1.6;
  text-align: center;
  font-style: normal; /* removes default italics */
  margin: 0;
}

.custom-footer a {
  color: var(--lavish-gold);
  text-decoration: none;
  transition: color 0.3s ease;
}


.custom-footer a:hover {
  color: var(--lavish-white);
}


/* Footer icons */

.custom-footer .social-icons {
  margin-top: 16px;
}


/* Footer center logo */

.footer-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 200px;
}

.footer-logo img {
  height: 150px;
  width: auto;
}

/* Copyright Line*/

.footer-bottom {
  grid-column: 1 / -1; /* span all columns */
  text-align: center;
  margin-top: -80px;    /* keeps normal spacing above */
  font-size: 13px;
  color: #888;
  

  /* Move it slightly lower without increasing footer height */
  transform: translateY(85px); /* adjust value as needed */
}

.footer-bottom p {
  font-size: 13px;
}

/* ============================= */
/* RESPONSIVE SYSTEM */
/* ============================= */

/* MOBILE STICKY HEADER (0–767px) */
@media (max-width: 975px) {
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
  }

  /* Optional: add some padding to main content so it doesn't hide under header */
  .main-content {
    padding-top: 80px; /* adjust to match header height */
  }
}

/* ---------- MOBILE (0–767px) ---------- */
@media (max-width: 767px) {
  body { font-size: 15px; }

  .hero-slideshow { height: 100vh; }
  .hero-slideshow img { object-fit: cover; }

  .custom-footer { grid-template-columns: 1fr; text-align: center; gap: 30px; }

  .header-right { display: none; }  /* hide desktop nav + icons + button */
  .hamburger { display: flex; }     /* show hamburger */
}

/* ---------- TABLET / SMALL DESKTOP (768–975px) ---------- */
@media (min-width: 768px) and (max-width: 975px) {
  body { font-size: 17px; }

  .hero-slideshow { height: 80vh; }
  .custom-footer { grid-template-columns: 1fr; text-align: center; gap: 30px; }

  .header-right { display: none; }
  .hamburger { display: flex; }
}
@media (min-width: 768px) {
  .home-testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------- DESKTOP (976–1439px) ---------- */
@media (min-width: 976px) and (max-width: 1439px) {
  body { font-size: 18px; }

  .header-right { display: flex; align-items: center; gap: 20px; }
  .hamburger { display: none; }
  .mobile-menu { display: none; }
}

/* ---------- LARGE SCREENS (1440+) ---------- */
@media (min-width: 1440px) {
  body { font-size: 20px; }

  .header-right { display: flex; align-items: center; gap: 20px; }
  .hamburger { display: none; }
  .mobile-menu { display: none; }
}
