/* ══════════════════════════════════════════════════════════
   GÎTE FORÊT – ILLFURTH
   Design: Refined Nature · Playfair + Jost
   ══════════════════════════════════════════════════════════ */

:root {
  --forest:    #1e3a2f;
  --forest-md: #2d5440;
  --forest-lt: #4a7c64;
  --sage:      #7aaf8e;
  --cream:     #f8f4ed;
  --sand:      #e8dcc8;
  --warm:      #c4956a;
  --text:      #1a1a18;
  --text-mid:  #4a4a42;
  --text-lt:   #7a7a6e;
  --white:     #ffffff;

  --serif:     'Playfair Display', Georgia, serif;
  --sans:      'Jost', system-ui, sans-serif;

  --radius:    12px;
  --radius-lg: 24px;
  --shadow:    0 8px 40px rgba(30,58,47,.12);
  --shadow-lg: 0 20px 80px rgba(30,58,47,.18);

  --ease:      cubic-bezier(.4,0,.2,1);
  --ease-out:  cubic-bezier(0,0,.2,1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--sans); color: var(--text); background: var(--cream); overflow-x: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── UTILS ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 50px;
  font-family: var(--sans); font-size: .9rem; font-weight: 500; letter-spacing: .04em;
  transition: all .3s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--forest); color: var(--white);
  box-shadow: 0 4px 20px rgba(30,58,47,.35);
}
.btn-primary:hover { background: var(--forest-md); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(30,58,47,.4); }
.btn-ghost {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,.6);
}
.btn-ghost:hover { background: rgba(255,255,255,.12); border-color: var(--white); transform: translateY(-2px); }

/* ── SECTION HEADERS ── */
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block;
  font-family: var(--sans); font-size: .75rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--forest-lt); margin-bottom: 12px;
}
.section-tag.light { color: rgba(255,255,255,.7); }
.section-title {
  font-family: var(--serif); font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600; line-height: 1.2; color: var(--text); margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--forest-lt); }
.section-desc { font-size: 1.05rem; color: var(--text-mid); max-width: 560px; margin: 0 auto; line-height: 1.7; }

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }
.delay-3 { transition-delay: .36s; }
.delay-4 { transition-delay: .48s; }

/* ══════════════════════════════
   NAV
══════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 24px;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .3s;
}
#navbar.scrolled {
  background: rgba(248,244,237,.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(30,58,47,.08);
  padding: 4px 24px;
}
.nav-inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0;
  transition: padding .3s;
}
#navbar.scrolled .nav-inner { padding: 12px 0; }

.nav-logo {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--serif); font-size: 1.3rem; font-weight: 700;
  color: var(--white);
  transition: color .3s;
}
#navbar.scrolled .nav-logo { color: var(--forest); }
.logo-leaf { font-size: 1.1em; }
.logo-leaf.large { font-size: 2rem; }

.nav-links {
  display: flex; align-items: center; gap: 32px;
}
.nav-links li a {
  font-size: .85rem; font-weight: 500; letter-spacing: .04em;
  color: rgba(255,255,255,.9);
  transition: color .3s;
  position: relative;
}
.nav-links li a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1.5px; background: currentColor;
  transform: scaleX(0); transform-origin: right;
  transition: transform .3s var(--ease);
}
.nav-links li a:hover::after { transform: scaleX(1); transform-origin: left; }
#navbar.scrolled .nav-links li a { color: var(--text-mid); }
.nav-cta {
  background: var(--forest) !important; color: var(--white) !important;
  padding: 10px 20px; border-radius: 50px;
  transition: background .3s, transform .2s !important;
}
.nav-cta:hover { background: var(--forest-md) !important; transform: translateY(-1px) !important; }
#navbar.scrolled .nav-cta { background: var(--forest) !important; color: var(--white) !important; }

.burger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.burger span {
  display: block; width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s var(--ease);
}
#navbar.scrolled .burger span { background: var(--forest); }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 999;
  background: var(--forest);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .4s var(--ease);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu ul { text-align: center; }
.mobile-menu li { margin: 20px 0; }
.mobile-menu li a {
  font-family: var(--serif); font-size: 2rem; font-weight: 600;
  color: var(--white); opacity: .85;
  transition: opacity .2s;
}
.mobile-menu li a:hover { opacity: 1; }

/* ══════════════════════════════
   HERO
══════════════════════════════ */
#hero {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-img.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(30,58,47,.65) 0%, rgba(20,40,30,.4) 60%, rgba(196,149,106,.15) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1160px; margin: 0 auto; padding: 0 24px;
  padding-top: 80px;
}
.hero-badge {
  display: inline-block;
  font-family: var(--sans); font-size: .75rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase;
  color: rgba(255,255,255,.8);
  border: 1px solid rgba(255,255,255,.35);
  padding: 6px 14px; border-radius: 50px;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}
.hero-title {
  font-family: var(--serif); font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 700; line-height: 1.05; color: var(--white);
  margin-bottom: 24px;
}
.hero-title em { font-style: italic; color: var(--sage); }
.hero-sub {
  font-size: 1.05rem; font-weight: 300; color: rgba(255,255,255,.8);
  margin-bottom: 36px; max-width: 440px; line-height: 1.7;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 2; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero-scroll span {
  font-size: .7rem; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.6);
}
.scroll-line {
  width: 1.5px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%,100% { opacity: .4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

.float-badge {
  position: absolute; z-index: 2;
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50px; padding: 10px 18px;
  font-size: .82rem; font-weight: 500; color: var(--white);
}
.fb-icon { font-size: 1.1rem; }
.fb-1 { bottom: 100px; right: 5%; }
.fb-2 { bottom: 170px; right: 5%; }

/* ══════════════════════════════
   STATS BAR
══════════════════════════════ */
.stats-bar {
  background: var(--forest);
  padding: 28px 24px;
}
.stats-inner {
  max-width: 800px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.stat-item {
  display: flex; flex-direction: column; align-items: center;
  gap: 4px; padding: 12px 40px; flex: 1; min-width: 120px;
}
.stat-num {
  font-family: var(--serif); font-size: 2.2rem; font-weight: 700;
  color: var(--sage); line-height: 1;
}
.stat-label {
  font-size: .7rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.6);
}
.stat-divider {
  width: 1px; height: 50px;
  background: rgba(255,255,255,.15);
}

/* ══════════════════════════════
   ATOUTS
══════════════════════════════ */
.section-atouts { padding: 96px 0; background: var(--cream); }

.atouts-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.atout-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  border: 1px solid rgba(30,58,47,.06);
}
.atout-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.atout-icon { font-size: 2.2rem; margin-bottom: 16px; }
.atout-card h3 {
  font-family: var(--serif); font-size: 1.2rem; font-weight: 600;
  color: var(--forest); margin-bottom: 12px;
}
.atout-card p { font-size: .9rem; line-height: 1.7; color: var(--text-mid); }

/* ══════════════════════════════
   EXPÉRIENCE
══════════════════════════════ */
.section-experience {
  position: relative; padding: 120px 0; overflow: hidden;
}
.exp-bg {
  position: absolute; inset: 0;
}
.exp-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.exp-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,30,20,.88) 0%, rgba(10,30,20,.6) 55%, rgba(10,30,20,.1) 100%);
}
.exp-content { position: relative; z-index: 2; }
.exp-text { max-width: 540px; }
.exp-text h2 {
  font-family: var(--serif); font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700; color: var(--white); line-height: 1.25;
  margin: 12px 0 20px;
}
.exp-text h2 em { font-style: italic; color: var(--sage); }
.exp-text p { font-size: 1rem; line-height: 1.8; color: rgba(255,255,255,.75); margin-bottom: 28px; }
.exp-list { margin-bottom: 36px; }
.exp-list li {
  font-size: .92rem; color: rgba(255,255,255,.82);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.exp-list li:last-child { border: none; }

/* ══════════════════════════════
   GALERIE
══════════════════════════════ */
.section-galerie { padding: 96px 0; background: var(--white); }

.carousel-wrapper {
  position: relative; margin: 0 0 48px;
  overflow: hidden;
}
.carousel {
  display: flex;
  transition: none;
}
.carousel-slide {
  min-width: 100%; position: relative;
  display: none;
}
.carousel-slide.active { display: block; }
.carousel-slide img {
  width: 100%; height: 520px;
  object-fit: cover; object-position: center;
}
.slide-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 40px 48px 32px;
  background: linear-gradient(to top, rgba(10,25,18,.85) 0%, transparent 100%);
  color: var(--white);
}
.slide-caption h3 { font-family: var(--serif); font-size: 1.6rem; font-weight: 700; margin-bottom: 6px; }
.slide-caption p { font-size: .9rem; opacity: .8; }

.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,.9); color: var(--forest);
  font-size: 1.2rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
  transition: all .2s var(--ease);
  z-index: 10;
}
.carousel-btn:hover { background: var(--white); transform: translateY(-50%) scale(1.08); }
.prev { left: 20px; }
.next { right: 20px; }

.carousel-dots {
  position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 10;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.5);
  cursor: pointer;
  transition: all .3s;
}
.dot.active { background: var(--white); width: 24px; border-radius: 4px; }

.thumb-grid {
  display: grid; grid-template-columns: repeat(8, 1fr); gap: 10px;
}
.thumb {
  aspect-ratio: 1; overflow: hidden; border-radius: 8px; cursor: pointer;
  border: 2px solid transparent;
  transition: border-color .2s, transform .2s;
}
.thumb:hover { transform: scale(1.04); border-color: var(--forest-lt); }
.thumb.active { border-color: var(--forest); }
.thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.thumb:hover img { transform: scale(1.08); }

/* ══════════════════════════════
   ENVIRONS
══════════════════════════════ */
.section-environs { padding: 96px 0; background: var(--white); }

.environs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 260px 260px;
  gap: 12px;
}
.environs-item.tall  { grid-row: span 2; }
.environs-item.wide  { grid-column: span 2; }

.environs-item {
  position: relative; overflow: hidden; border-radius: var(--radius);
  background: var(--sand);
}
.environs-item img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform .7s var(--ease), filter .5s;
  filter: saturate(.9);
}
.environs-item:hover img { transform: scale(1.05); filter: saturate(1.1); }
.environs-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(30,58,47,.18) 0%, transparent 50%);
  transition: opacity .4s;
}
.environs-item:hover .environs-overlay { opacity: 0; }
.environs-item.reveal { transition-delay: calc(var(--i, 0) * 0.1s); }

@media (max-width: 768px) {
  .environs-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px;
  }
  .environs-item.tall { grid-row: span 1; }
  .environs-item.wide { grid-column: span 2; }
}
@media (max-width: 480px) {
  .environs-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .environs-item, .environs-item.tall, .environs-item.wide {
    grid-row: span 1; grid-column: span 1; height: 220px;
  }
}

/* ══════════════════════════════
   AVIS
══════════════════════════════ */
.section-avis { padding: 96px 0; background: var(--cream); }

.avis-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.avis-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(30,58,47,.06);
  transition: transform .3s, box-shadow .3s;
}
.avis-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.stars { color: var(--warm); font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.avis-card p { font-size: .9rem; line-height: 1.75; color: var(--text-mid); margin-bottom: 20px; font-style: italic; }
.avis-author { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--forest); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 1rem; font-weight: 700;
  flex-shrink: 0;
}
.avis-author strong { display: block; font-size: .9rem; color: var(--text); }
.avis-author span { font-size: .78rem; color: var(--text-lt); }

/* ══════════════════════════════
   LOCALISATION
══════════════════════════════ */
.section-localisation { padding: 96px 0; background: var(--white); }

.loc-grid {
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 48px; align-items: start;
}
.loc-distances h3 {
  font-family: var(--serif); font-size: 1.3rem; font-weight: 700;
  color: var(--forest); margin-bottom: 24px;
}
.distances li {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(30,58,47,.08);
  font-size: .9rem;
}
.distances li:last-child { border: none; }
.dist-icon { font-size: 1.2rem; flex-shrink: 0; }
.distances li span:nth-child(2) { flex: 1; color: var(--text-mid); }
.distances li strong { color: var(--forest); font-weight: 600; }
.loc-map iframe { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }

/* ══════════════════════════════
   CONTACT
══════════════════════════════ */
.section-contact {
  position: relative; padding: 120px 0; overflow: hidden;
}
.contact-bg {
  position: absolute; inset: 0;
}
.contact-bg img { width: 100%; height: 100%; object-fit: cover; }
.contact-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,28,20,.92) 0%, rgba(10,28,20,.75) 60%, rgba(30,58,47,.5) 100%);
}
.contact-inner { position: relative; z-index: 2; }
.contact-text { max-width: 600px; }
.contact-text h2 {
  font-family: var(--serif); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; color: var(--white); line-height: 1.2;
  margin: 12px 0 16px;
}
.contact-text h2 em { font-style: italic; color: var(--sage); }
.contact-text > p { font-size: 1rem; color: rgba(255,255,255,.75); line-height: 1.7; margin-bottom: 36px; }

.contact-cards { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.contact-card {
  display: flex; align-items: center; gap: 16px;
  background: rgba(255,255,255,.1); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius); padding: 18px 22px;
  color: var(--white);
  transition: background .2s, transform .2s;
}
.contact-card:hover { background: rgba(255,255,255,.16); transform: translateX(4px); }
.cc-icon { font-size: 1.5rem; flex-shrink: 0; }
.contact-card strong { display: block; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; opacity: .7; margin-bottom: 3px; }
.contact-card span { font-size: 1.05rem; font-weight: 500; }

.booking-links { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.booking-links span { font-size: .82rem; color: rgba(255,255,255,.6); }
.booking-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 50px; font-size: .85rem; font-weight: 600;
  transition: all .2s;
}
.booking-btn.airbnb { background: #ff5a5f; color: var(--white); }
.booking-btn.airbnb:hover { background: #e04e53; transform: translateY(-2px); }

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
#footer {
  background: var(--forest); color: rgba(255,255,255,.8);
  padding: 60px 0 0;
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 32px; padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand { text-align: center; }
.footer-brand h3 {
  font-family: var(--serif); font-size: 1.4rem; color: var(--white);
  margin: 6px 0 4px;
}
.footer-brand p { font-size: .85rem; opacity: .6; }

.footer-social { display: flex; gap: 16px; }
.social-link {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.7);
  transition: all .2s;
}
.social-link:hover { background: rgba(255,255,255,.12); color: var(--white); border-color: rgba(255,255,255,.4); transform: translateY(-2px); }

.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { font-size: .82rem; opacity: .6; transition: opacity .2s; }
.footer-links a:hover { opacity: 1; }

.footer-bottom {
  padding: 18px 24px; text-align: center;
}
.footer-bottom p { font-size: .78rem; opacity: .4; }

/* ══════════════════════════════
   BACK TO TOP
══════════════════════════════ */
#back-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 500;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--forest); color: var(--white);
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(30,58,47,.35);
  opacity: 0; transform: translateY(16px);
  transition: opacity .3s, transform .3s;
  pointer-events: none;
}
#back-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
#back-top:hover { background: var(--forest-md); transform: translateY(-2px); }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 1024px) {
  .atouts-grid { grid-template-columns: repeat(2, 1fr); }
  .loc-grid { grid-template-columns: 1fr; }
  .thumb-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .burger { display: flex; }

  .stats-inner { gap: 0; }
  .stat-item { padding: 10px 20px; }
  .stat-divider { display: none; }
  .stats-inner { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(255,255,255,.1); }
  .stat-item { background: var(--forest); }

  .atouts-grid { grid-template-columns: 1fr; }
  .avis-grid { grid-template-columns: 1fr; }
  .thumb-grid { grid-template-columns: repeat(4, 1fr); }

  .float-badge { display: none; }
  .hero-title { font-size: clamp(2.2rem, 10vw, 3.5rem); }

  .carousel-slide img { height: 320px; }
  .slide-caption { padding: 24px; }
  .slide-caption h3 { font-size: 1.2rem; }

  .footer-inner { flex-direction: column; align-items: center; text-align: center; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn { justify-content: center; text-align: center; }
  .contact-cards { gap: 10px; }
  .booking-links { flex-direction: column; align-items: flex-start; }
  .thumb-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ── FADE IN for carousel ── */
@keyframes fadeSlide {
  from { opacity: 0; transform: scale(1.02); }
  to   { opacity: 1; transform: scale(1); }
}
.carousel-slide.active img { animation: fadeSlide .5s var(--ease-out) forwards; }
