/* Villa des Chênes — Custom Styles */
:root {
  --brown: #3B1A0A;
  --brown-dark: #2A1207;
  --brown-light: #5C2E14;
  --cream: #F5F0E8;
  --gold: #C9A84C;
}

html {
  scroll-behavior: smooth;
}

/* Site brand & logo */
.site-brand {
  display: block;
  flex-shrink: 0;
  line-height: 0;
  transition: opacity 0.3s ease;
}

.site-brand:hover {
  opacity: 0.88;
}

.site-brand__logo {
  display: block;
  width: 5.5rem;
  min-width: 5.5rem;
  height: auto;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.25));
  transition: width 0.3s ease, min-width 0.3s ease;
}

@media (min-width: 640px) {
  .site-brand__logo {
    width: 6.5rem;
    min-width: 6.5rem;
  }
}

@media (min-width: 1024px) {
  .site-brand__logo {
    width: 7.5rem;
    min-width: 7.5rem;
  }
}

#navbar.scrolled .site-brand__logo {
  width: 5rem;
  min-width: 5rem;
}

@media (min-width: 640px) {
  #navbar.scrolled .site-brand__logo {
    width: 6rem;
    min-width: 6rem;
  }
}

@media (min-width: 1024px) {
  #navbar.scrolled .site-brand__logo {
    width: 7rem;
    min-width: 7rem;
  }
}

.site-brand__logo--footer {
  height: 3rem;
  max-width: 11rem;
  margin-bottom: 0.75rem;
  opacity: 0.92;
}

/* Hero brand */
.hero-brand {
  margin-bottom: 1.75rem;
}

.hero-eyebrow {
  color: #C9A84C;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

@media (min-width: 640px) {
  .hero-eyebrow {
    font-size: 0.7rem;
  }
}

.hero-title {
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  font-weight: 600;
  color: #F5F0E8;
  line-height: 1.15;
  letter-spacing: 0.02em;
  margin: 0 auto;
}

.hero-brand__divider {
  width: 5rem;
  height: 1px;
  margin: 1.5rem auto 0;
  background: linear-gradient(90deg, transparent, #C9A84C 20%, #C9A84C 80%, transparent);
  opacity: 0.7;
}

.hero-tagline {
  letter-spacing: 0.02em;
}

.hero-crepe-line {
  color: #C9A84C;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  animation: fadeInUp 1s ease 0.5s both;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Lucide Icons */
.icon {
  display: inline-block;
  vertical-align: middle;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.icon-xs { width: 1rem; height: 1rem; }
.icon-sm { width: 1.125rem; height: 1.125rem; }
.icon-md { width: 1.375rem; height: 1.375rem; }
.icon-lg { width: 1.75rem; height: 1.75rem; }

.icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: rgba(201, 168, 76, 0.15);
  color: #C9A84C;
  flex-shrink: 0;
}

.icon-wrap-lg {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background: rgba(201, 168, 76, 0.12);
}

.icon-wrap-menu {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: rgba(201, 168, 76, 0.12);
  color: #C9A84C;
}

/* Navbar */
.site-header,
#navbar {
  background: rgba(42, 18, 7, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
}

.site-header.scrolled,
#navbar.scrolled {
  background: rgba(42, 18, 7, 0.98);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
  border-bottom-color: rgba(201, 168, 76, 0.22);
}

.nav-inner {
  min-height: 4rem;
  padding: 0.3rem 0;
}

#navbar.scrolled .nav-inner {
  min-height: 3.5rem;
}

.nav-link {
  color: rgba(245, 240, 232, 0.75);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 0.25s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: #C9A84C;
  transition: width 0.25s ease;
}

.nav-link:hover {
  color: #F5F0E8;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-pdf-btn {
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #3B1A0A;
  background: linear-gradient(135deg, #E8D5A3 0%, #C9A84C 100%);
  border: 1px solid rgba(232, 213, 163, 0.8);
  border-radius: 9999px;
  box-shadow: 0 2px 12px rgba(201, 168, 76, 0.35);
  transition: all 0.25s ease;
  white-space: nowrap;
}

.nav-pdf-btn:hover {
  background: linear-gradient(135deg, #F5F0E8 0%, #E8D5A3 100%);
  color: #3B1A0A;
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.45);
  transform: translateY(-1px);
}

.mobile-nav-pdf-btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.85rem 0.5rem !important;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.35;
  color: #ffffff;
  background: transparent;
  border: none;
  border-top: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 0;
  transition: color 0.25s ease;
}

.mobile-nav-pdf-btn .icon {
  color: #C9A84C;
  flex-shrink: 0;
}

.mobile-nav-pdf-btn:hover {
  color: #C9A84C;
  background: transparent;
}

.nav-menu-btn {
  color: #F5F0E8;
  padding: 0.5rem;
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 0.375rem;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.nav-menu-btn:hover {
  border-color: rgba(201, 168, 76, 0.5);
  color: #C9A84C;
}

.mobile-nav-panel {
  background: rgba(42, 18, 7, 0.98);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 0.5rem;
  padding: 0.75rem;
  margin-top: 0.5rem;
}

.mobile-nav-link {
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.75rem 0.5rem !important;
  border-bottom: 1px solid rgba(245, 240, 232, 0.06);
  transition: color 0.25s ease;
}

.mobile-nav-link:hover {
  color: #C9A84C;
}

.mobile-nav-link:last-child {
  border-bottom: none;
}

.lang-toggle {
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 0.25rem;
  background: rgba(0, 0, 0, 0.2);
}

.lang-btn {
  color: rgba(245, 240, 232, 0.55);
  border-radius: 0.2rem;
  min-width: 2rem;
}

.lang-btn.active {
  background: rgba(201, 168, 76, 0.15);
  color: #C9A84C;
  font-weight: 600;
}

.lang-btn:hover:not(.active) {
  color: #F5F0E8;
}

/* Hero */
.hero-content {
  margin-top: 4.5rem;
}

@media (min-width: 640px) {
  .hero-content {
    margin-top: 6rem;
  }
}

.hero-bg {
  background: linear-gradient(135deg, #2A1207 0%, #3B1A0A 45%, #1f0d05 100%);
  background-image:
    linear-gradient(135deg, rgba(42, 18, 7, 0.9) 0%, rgba(59, 26, 10, 0.82) 50%, rgba(31, 13, 5, 0.94) 100%),
    url('../assets/photos/hero.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
}

.hero-overlay {
  background: radial-gradient(ellipse at center, transparent 0%, rgba(31, 13, 5, 0.45) 100%);
  pointer-events: none;
}

.hero-pattern {
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

/* Buttons */
.btn-primary {
  background: #C9A84C;
  color: #3B1A0A;
  box-shadow: 0 2px 12px rgba(201, 168, 76, 0.25);
  border-radius: 0.375rem;
  letter-spacing: 0.04em;
}

.btn-primary:hover {
  background: #b8973f;
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.35);
}

.btn-outline {
  border-color: rgba(201, 168, 76, 0.6);
  border-radius: 0.375rem;
  letter-spacing: 0.04em;
}

.btn-hero-menu {
  border-color: #C9A84C;
  color: #E8D5A3;
  background: rgba(201, 168, 76, 0.12);
  border-radius: 0.375rem;
  letter-spacing: 0.04em;
}

.btn-hero-menu:hover {
  color: #F5F0E8;
  background: rgba(201, 168, 76, 0.22);
  border-color: #E8D5A3;
}

.btn-outline-gold {
  border-color: #C9A84C;
}

/* Chips */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: white;
  border: 1px solid rgba(45, 80, 22, 0.15);
  border-radius: 9999px;
  font-size: 0.875rem;
  color: #3B1A0A;
  transition: all 0.3s ease;
}

.chip:hover {
  border-color: #C9A84C;
  background: rgba(201, 168, 76, 0.1);
}

/* About image */
.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid #C9A84C;
  border-radius: 1rem;
  transform: translate(12px, 12px);
  z-index: -1;
}

.about-image {
  position: relative;
}

/* Menu tabs */
.menu-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(245, 240, 232, 0.7);
  background: rgba(245, 240, 232, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
}

.menu-tab:hover {
  color: #F5F0E8;
  border-color: rgba(201, 168, 76, 0.5);
}

.menu-tab.active {
  background: #C9A84C;
  color: #3B1A0A;
  border-color: #C9A84C;
  font-weight: 600;
}

.menu-tabs-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(201, 168, 76, 0.4) transparent;
}

.menu-tabs-scroll {
  min-width: min-content;
}

.menu-tabs-scroll .menu-tab {
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-category-note {
  text-align: center;
  color: rgba(245, 240, 232, 0.55);
  font-size: 0.875rem;
  font-style: italic;
  margin-top: 1.5rem;
  padding: 0 1rem;
}

.menu-loading {
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
}

/* Crêpes star section */
.crepes-section {
  background: linear-gradient(180deg, #2A1207 0%, #3B1A0A 50%, #2A1207 100%);
  color: #F5F0E8;
}

.crepes-col-title {
  border-bottom: 1px solid rgba(201, 168, 76, 0.25);
  padding-bottom: 0.75rem;
}

.crepes-grid {
  display: grid;
  gap: 1rem;
}

.crepe-card {
  background: rgba(245, 240, 232, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.crepe-card:hover {
  transform: translateY(-6px);
  border-color: #C9A84C;
  box-shadow: 0 12px 32px rgba(201, 168, 76, 0.18);
}

.crepe-card .price {
  color: #C9A84C;
  font-weight: 700;
  font-size: 1.125rem;
}

.crepe-story {
  background: #F5F0E8;
  color: #3B1A0A;
  border-radius: 1.25rem;
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid rgba(201, 168, 76, 0.35);
}

.crepe-story__quote {
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  font-style: italic;
  line-height: 1.7;
  max-width: 40rem;
  margin: 0 auto 1.75rem;
  color: rgba(59, 26, 10, 0.85);
}

.crepe-story__icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
}

.crepe-story__icon {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(59, 26, 10, 0.7);
}

.crepe-story__icon .icon {
  color: #C9A84C;
}

/* Item badges */
.item-badge {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.5rem;
  border-radius: 0.25rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.item-badge--popular {
  background: rgba(239, 68, 68, 0.15);
  color: #fca5a5;
  border: 1px solid rgba(239, 68, 68, 0.35);
}

.item-badge--exclusive,
.item-badge--signature,
.item-badge--premium {
  background: rgba(201, 168, 76, 0.15);
  color: #C9A84C;
  border: 1px solid rgba(201, 168, 76, 0.45);
}

.menu-panel {
  display: none;
  animation: fadeIn 0.4s ease;
}

.menu-panel.active {
  display: block;
}

/* Menu PDF showcase — matches Canva PDF (cream, brown, gold) */
.menu-pdf-note {
  text-align: center;
  color: rgba(245, 240, 232, 0.5);
  font-size: 0.875rem;
  font-style: italic;
  margin-top: 1rem;
}

.menu-card {
  background: rgba(245, 240, 232, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.menu-card:hover {
  background: rgba(245, 240, 232, 0.1);
  border-color: rgba(201, 168, 76, 0.4);
  transform: translateY(-4px);
}

.menu-card .price {
  color: #C9A84C;
  font-weight: 600;
  font-size: 1.125rem;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  gap: 1rem;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }

  .gallery-item:nth-child(1) {
    grid-column: span 2;
  }

  .gallery-item:nth-child(5) {
    grid-row: span 2;
  }

  .gallery-item:nth-child(8) {
    grid-column: span 2;
  }
}

.gallery-item {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.gallery-item:nth-child(5) {
  aspect-ratio: auto;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item .gallery-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(transparent, rgba(26, 48, 9, 0.85));
  color: #F5F0E8;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 500;
}

/* Feature cards */
.feature-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(45, 80, 22, 0.08);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(45, 80, 22, 0.1);
  border-color: rgba(201, 168, 76, 0.3);
}

.feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: white;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 9999px;
  font-size: 0.875rem;
  color: #3B1A0A;
}

/* QR Code card */
.qr-card {
  background: #F5F0E8;
  border-radius: 1.25rem;
  padding: 1.5rem;
  border: 2px solid rgba(201, 168, 76, 0.35);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.qr-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .qr-card-inner {
    flex-direction: row;
    text-align: left;
  }
}

.qr-code-wrap {
  background: white;
  padding: 0.75rem;
  border-radius: 1rem;
  border: 1px solid rgba(45, 80, 22, 0.1);
  box-shadow: inset 0 0 0 3px rgba(201, 168, 76, 0.15);
  flex-shrink: 0;
}

.qr-image {
  display: block;
  width: 180px;
  height: 180px;
  border-radius: 0.25rem;
}

.qr-download-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: transparent;
  color: #3B1A0A;
  border: 2px solid rgba(45, 80, 22, 0.25);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.qr-download-link:hover {
  border-color: #C9A84C;
  background: rgba(201, 168, 76, 0.1);
}

.qr-card-text {
  flex: 1;
  text-align: center;
}

@media (min-width: 640px) {
  .qr-card-text {
    text-align: left;
  }
}

.qr-google-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: #3B1A0A;
  color: #F5F0E8;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.qr-google-link:hover {
  background: #2A1207;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 80, 22, 0.3);
}

/* Contact cards */
.contact-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: rgba(245, 240, 232, 0.06);
  border-radius: 1rem;
  border: 1px solid rgba(201, 168, 76, 0.15);
  transition: border-color 0.3s ease;
}

.contact-card:hover {
  border-color: rgba(201, 168, 76, 0.4);
}

/* Social links */
.social-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  background: rgba(245, 240, 232, 0.1);
  color: #F5F0E8;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #C9A84C;
  color: #3B1A0A;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(13, 26, 6, 0.95);
  backdrop-filter: blur(8px);
  padding: 2rem;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.lightbox.hidden {
  display: none;
  opacity: 0;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2.5rem;
  color: #F5F0E8;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s ease;
}

.lightbox-close:hover {
  color: #C9A84C;
}

.lightbox-image {
  max-width: 90vw;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 0.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
  margin-top: 1rem;
  color: #F5F0E8;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 55;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal.hidden {
  display: none;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 26, 6, 0.7);
  backdrop-filter: blur(4px);
}

.modal-content {
  position: relative;
  background: #F5F0E8;
  border-radius: 1.5rem;
  padding: 2rem;
  width: 100%;
  max-width: 28rem;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.3s ease;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.75rem;
  color: #3B1A0A;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(45, 80, 22, 0.2);
  border-radius: 0.75rem;
  background: white;
  color: #3B1A0A;
  font-size: 0.9375rem;
  transition: border-color 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: #C9A84C;
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.2);
}

/* Scroll animations — visible by default; animate when JS is ready */
.fade-up {
  opacity: 1;
  transform: none;
}

html.js-ready .fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

html.js-ready .fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

html.js-ready #hero .fade-up {
  opacity: 1;
  transform: none;
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-bounce-slow {
  animation: bounce-slow 2.5s infinite;
}

@keyframes bounce-slow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* RTL support for Arabic */
html[dir="rtl"] .contact-card,
html[dir="rtl"] .feature-card {
  text-align: right;
}

html[dir="rtl"] .lang-toggle {
  flex-direction: row-reverse;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .fade-up { transition: none; opacity: 1; transform: none; }
  .animate-bounce-slow { animation: none; }
}
