/* ============================================
   KATZIR RESORT - Luxury Landing Page
   Warm Bohemian-Luxury Aesthetic
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --cream: #FAF6F0;
  --cream-dark: #F0E8DA;
  --brown: #7A5C2E;
  --brown-light: #A0845C;
  --brown-dark: #5C3D1A;
  --gold: #C9A96E;
  --gold-light: #E8D5B0;
  --white: #FFFFFF;
  --charcoal: #3A3028;
  --charcoal-light: #4A4038;

  --font-brand: 'Cormorant Garamond', serif;
  --font-heading: 'Noto Serif Hebrew', 'Cormorant Garamond', serif;
  --font-body: 'Heebo', sans-serif;
  --font-accent: 'Cormorant SC', serif;

  --shadow-sm: 0 2px 8px rgba(58, 48, 40, 0.08);
  --shadow-md: 0 4px 20px rgba(58, 48, 40, 0.12);
  --shadow-lg: 0 8px 40px rgba(58, 48, 40, 0.16);

  --transition: all 0.3s ease;
  --transition-slow: all 0.6s ease;
}

/* ---------- Screen-reader only (SEO) ---------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background-color: var(--cream);
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

/* ---------- Utility ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 0;
}

.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--brown);
  text-align: center;
  margin-bottom: 0.5rem;
  position: relative;
}

.section-heading::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 0.8rem auto 0;
}

.section-heading.light {
  color: var(--cream);
}

.section-heading.light::after {
  background: var(--gold-light);
}

.section-subheading {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--brown-light);
  text-align: center;
  margin-bottom: 3rem;
}

.section-subheading.light {
  color: var(--gold-light);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(201, 169, 110, 0.35);
}

.btn-primary:hover {
  background: var(--brown);
  box-shadow: 0 6px 25px rgba(122, 92, 46, 0.4);
  transform: translateY(-2px);
}

.btn-large {
  padding: 1.1rem 3rem;
  font-size: 1.15rem;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(250, 246, 240, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 0.8rem 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: var(--font-brand);
  font-size: 1.8rem;
  font-weight: 600;
  font-style: italic;
  color: var(--white);
  letter-spacing: 0.02em;
  transition: var(--transition);
}

.navbar.scrolled .nav-brand {
  color: var(--brown);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--white);
  position: relative;
  padding: 0.25rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.navbar.scrolled .nav-links a {
  color: var(--charcoal);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
  position: relative;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar.scrolled .nav-toggle span {
  background: var(--brown);
}

.nav-toggle.active span {
  background: var(--brown) !important;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('https://a0.muscache.com/im/pictures/miso/Hosting-1197957079344916295/original/2e6f6445-4e8a-4d36-b6b4-290f094e3d17.jpeg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(58, 48, 40, 0.25) 0%,
    rgba(58, 48, 40, 0.45) 50%,
    rgba(58, 48, 40, 0.65) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
}

.hero-subtitle-top {
  font-family: var(--font-accent);
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  color: var(--gold-light);
  letter-spacing: 0.3em;
  margin-bottom: 0.5rem;
}

.hero-title {
  font-family: var(--font-brand);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 600;
  font-style: italic;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero-divider {
  width: 80px;
  height: 2px;
  background: var(--gold);
  margin: 1rem auto;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.hero-stars {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: 2rem;
}

.hero-stars i {
  color: var(--gold);
  font-size: 1.1rem;
}

.hero-cta {
  font-size: 1.1rem;
}

/* Scroll down indicator */
.scroll-down {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--gold-light);
  font-size: 1.5rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-12px); }
  60% { transform: translateX(-50%) translateY(-6px); }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.image-frame {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.image-frame::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 2px solid var(--gold-light);
  border-radius: 16px;
  z-index: -1;
}

.image-frame img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.image-frame:hover img {
  transform: scale(1.03);
}

.about-text h2 {
  text-align: right;
}

.about-text h2::after {
  margin: 0.8rem 0 0 auto;
  margin-right: 0;
}

.about-description {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--charcoal);
  margin-bottom: 1rem;
  font-weight: 300;
}

.about-description strong {
  color: var(--brown);
  font-weight: 500;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.highlight-item {
  text-align: center;
  padding: 1rem 0.5rem;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.highlight-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.highlight-item i {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
  display: block;
}

.highlight-item span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--brown);
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery {
  background: var(--cream-dark);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(58, 48, 40, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.gallery-overlay i {
  color: var(--white);
  font-size: 1.5rem;
  opacity: 0;
  transform: scale(0.8);
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
  background: rgba(58, 48, 40, 0.35);
}

.gallery-item:hover .gallery-overlay i {
  opacity: 1;
  transform: scale(1);
}

/* First two images are larger */
.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

/* ============================================
   AMENITIES SECTION
   ============================================ */
.amenities {
  background: var(--white);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.amenity-card {
  text-align: center;
  padding: 2rem 1.2rem;
  border-radius: 12px;
  background: var(--cream);
  border: 1px solid transparent;
  transition: var(--transition);
}

.amenity-card:hover {
  border-color: var(--gold-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.amenity-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: var(--transition);
}

.amenity-card:hover .amenity-icon {
  background: var(--gold);
}

.amenity-icon i {
  font-size: 1.4rem;
  color: var(--brown);
  transition: var(--transition);
}

.amenity-card:hover .amenity-icon i {
  color: var(--white);
}

.amenity-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 0.5rem;
}

.amenity-card p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--brown-light);
  line-height: 1.6;
}

/* ============================================
   PARALLAX DIVIDER
   ============================================ */
.parallax-divider {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('https://a0.muscache.com/im/pictures/hosting/Hosting-U3RheVN1cHBseUxpc3Rpbmc6MTE3NjYxNjg0MTQzNTA0MjE5Nw%3D%3D/original/caffec22-59c0-4834-80c1-9ce5b068230a.jpeg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background: rgba(58, 48, 40, 0.55);
}

.parallax-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
}

.parallax-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.parallax-sub {
  font-family: var(--font-accent);
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  color: var(--gold-light);
  letter-spacing: 0.2em;
}

/* ============================================
   LOCATION SECTION
   ============================================ */
.location {
  background: var(--cream);
}

.location-grid {
  max-width: 600px;
  margin: 0 auto;
}

.location-info h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 1.5rem;
}

.attractions-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--gold-light);
}

.attractions-list li:last-child {
  border-bottom: none;
}

.attractions-list li i {
  font-size: 1.2rem;
  color: var(--gold);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}

.attractions-list li div {
  display: flex;
  flex-direction: column;
}

.attractions-list li strong {
  font-size: 1rem;
  font-weight: 500;
  color: var(--charcoal);
}

.attractions-list li span {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--brown-light);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
  background: var(--charcoal);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: 12px;
  background: var(--charcoal-light);
  border: 1px solid rgba(201, 169, 110, 0.2);
  transition: var(--transition);
}

.contact-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.contact-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: var(--transition);
}

.contact-card:hover .contact-icon {
  background: var(--gold);
}

.contact-icon i {
  font-size: 1.4rem;
  color: var(--gold);
  transition: var(--transition);
}

.contact-card:hover .contact-icon i {
  color: var(--white);
}

.contact-icon.whatsapp {
  background: rgba(37, 211, 102, 0.15);
}

.contact-icon.whatsapp i {
  color: #25D366;
}

.contact-card:hover .contact-icon.whatsapp {
  background: #25D366;
}

.contact-card:hover .contact-icon.whatsapp i {
  color: var(--white);
}

.contact-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.contact-card p {
  font-size: 0.95rem;
  color: var(--gold-light);
  font-weight: 300;
}

.contact-cta {
  text-align: center;
}

.contact-cta .btn {
  font-size: 1.2rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #2A221C;
  padding: 3rem 0 2rem;
  text-align: center;
}

.footer-brand {
  font-family: var(--font-brand);
  font-size: 2rem;
  font-weight: 600;
  font-style: italic;
  color: var(--gold);
  display: inline-block;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer-links a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 110, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 1rem;
  transition: var(--transition);
}

.footer-links a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(232, 213, 176, 0.5);
  font-weight: 300;
}

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: scale(0.8);
  transition: var(--transition);
}

.whatsapp-float.visible {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
  0% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 12px rgba(37, 211, 102, 0.1); }
  100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
  }

  .amenities-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .section {
    padding: 4rem 0;
  }

  /* Nav mobile */
  .navbar {
    width: 100%;
  }

  .navbar .container {
    max-width: 100%;
    padding: 0 1rem;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-brand {
    font-size: 1.4rem;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(250, 246, 240, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    z-index: 1001;
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .nav-links.open li {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links.open li:nth-child(1) { transition-delay: 0.1s; }
  .nav-links.open li:nth-child(2) { transition-delay: 0.15s; }
  .nav-links.open li:nth-child(3) { transition-delay: 0.2s; }
  .nav-links.open li:nth-child(4) { transition-delay: 0.25s; }
  .nav-links.open li:nth-child(5) { transition-delay: 0.3s; }

  .nav-links a {
    color: var(--charcoal) !important;
    font-size: 1.3rem;
    font-weight: 500;
    white-space: nowrap;
  }

  .navbar.scrolled {
    background: rgba(250, 246, 240, 1);
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .image-frame img {
    height: 300px;
  }

  .about-text h2 {
    text-align: center;
  }

  .about-text h2::after {
    margin: 0.8rem auto 0;
  }

  .about-highlights {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item:nth-child(1) {
    grid-column: span 2;
  }

  /* Amenities */
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Location */
  .location-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .location-map {
    height: 300px;
  }

  /* Contact */
  .contact-cards {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .section {
    padding: 3rem 0;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-content {
    padding: 1rem 1.5rem 4rem;
  }

  .hero-title {
    font-size: clamp(2.2rem, 11vw, 3.5rem);
    margin-bottom: 0.3rem;
  }

  .hero-divider {
    margin: 0.6rem auto;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    padding: 0 0.5rem;
    margin-bottom: 0.6rem;
  }

  .hero-stars {
    margin-bottom: 1.2rem;
  }

  .hero-cta {
    font-size: 1rem;
    padding: 0.8rem 1.8rem;
  }

  .scroll-down {
    bottom: 12rem;
  }

  .section-heading {
    font-size: 1.6rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .gallery-item:nth-child(1) {
    grid-column: span 2;
  }

  .amenities-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
  }

  .amenity-card {
    padding: 1.5rem 0.8rem;
  }

  .amenity-card h3 {
    font-size: 1rem;
  }

  .amenity-card p {
    font-size: 0.8rem;
  }

  .about-highlights {
    grid-template-columns: 1fr 1fr;
  }

  .image-frame img {
    height: 240px;
  }

  .parallax-divider {
    height: 40vh;
    min-height: 250px;
    background-attachment: scroll;
  }

  .location-map {
    height: 250px;
  }

  .contact-card {
    padding: 1.5rem 1rem;
  }

  .btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
    width: 100%;
    justify-content: center;
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
    bottom: 16px;
    left: 16px;
  }

  .footer {
    padding: 2rem 0 1.5rem;
  }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .hero,
  .parallax-divider {
    background-attachment: scroll;
  }
}

/* Parallax fix for mobile (iOS Safari) */
@supports (-webkit-touch-callout: none) {
  .hero,
  .parallax-divider {
    background-attachment: scroll;
  }
}

/* Focus styles */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}


