/* ─── Variables ─────────────────────────────────────────────────────────────── */
:root {
  --color-coral: #E07A5F;
  --color-coral-light: #F0937A;
  --color-coral-dark: #C55E42;
  --color-forest: #2C5F4E;
  --color-forest-light: #4A8572;
  --color-forest-dark: #1E4236;
  --color-ocean: #1B4D4D;
  --color-lagoon: #5FA8C9;
  --color-sand: #F5F1EB;
  --color-cream: #F5F1EB;
  --color-warm: #FAF8F5;
  --color-text: #2C2C2C;
  --color-text-light: #5A5A5A;
  --color-text-muted: #8A8A8A;
  --color-navy: #1F3A5F;
  --color-terracotta: #E07A5F;
  --border-color: #E0DCD4;
  --border-light: #F0ECE6;
  --font-heading: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
  --shadow-md: 0 4px 6px rgba(0,0,0,.1);
  --shadow-lg: 0 10px 15px rgba(0,0,0,.1);
  --transition-base: .3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); font-size: 16px; line-height: 1.6; color: var(--color-text); background: var(--color-cream); }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); font-weight: 600; line-height: 1.2; color: var(--color-forest); }
h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 3vw, 2rem); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* ─── Navbar ─────────────────────────────────────────────────────────────────── */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 1rem 0; transition: all var(--transition-base); background: transparent; }
.navbar.scrolled { background: linear-gradient(135deg, rgba(31,58,95,.97), rgba(44,95,78,.95)); backdrop-filter: blur(12px); box-shadow: 0 4px 24px rgba(31,58,95,.25); border-bottom: 1px solid rgba(95,168,201,.2); }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: #fff; }
.logo-text::before { content: "🐴"; margin-right: .4rem; }
.nav-menu { display: flex; align-items: center; gap: 1.5rem; list-style: none; }
.nav-menu a { color: rgba(255,255,255,.9); font-weight: 500; font-size: .95rem; transition: color .15s ease; }
.nav-menu a:hover { color: var(--color-coral); }
.nav-cta { background: var(--color-coral) !important; color: #fff !important; padding: 10px 24px; border-radius: var(--radius-full); font-weight: 600 !important; box-shadow: 0 4px 14px rgba(224,122,95,.3); transition: all var(--transition-base); }
.nav-cta:hover { background: var(--color-coral-light) !important; transform: translateY(-2px); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 5px; }
.nav-toggle span { width: 25px; height: 2px; background: #fff; transition: all .15s ease; }

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed; top: 70px; left: 0; right: 0;
    background: linear-gradient(135deg, var(--color-forest-dark), var(--color-forest));
    flex-direction: column; padding: 2rem; gap: 1rem;
    transform: translateY(-100%); opacity: 0; visibility: hidden;
    transition: all var(--transition-base); box-shadow: var(--shadow-lg);
  }
  .nav-menu.active { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav-menu a { color: rgba(255,255,255,.9) !important; font-size: 1.1rem; }
}

/* ─── Buttons ─────────────────────────────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: .5rem; padding: 14px 28px; border-radius: var(--radius-full); font-weight: 600; font-size: 1rem; cursor: pointer; transition: all var(--transition-base); border: none; text-decoration: none; white-space: nowrap; }
.btn-primary { background: var(--color-coral); color: #fff; box-shadow: 0 4px 14px rgba(224,122,95,.3); }
.btn-primary:hover { background: var(--color-coral-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(224,122,95,.4); }
.btn-outline { background: transparent; border: 2px solid var(--color-forest); color: var(--color-forest); }
.btn-outline:hover { background: var(--color-forest); color: #fff; }
.btn-outline-light { background: transparent; border: 2px solid rgba(255,255,255,.6); color: #fff; }
.btn-outline-light:hover { background: #fff; color: var(--color-navy); }
.btn-lg { padding: 16px 32px; font-size: 1.1rem; }

@media (max-width: 480px) {
  .btn { padding: 13px 22px; font-size: .95rem; }
  .btn-lg { padding: 14px 24px; font-size: 1rem; }
  .hero-cta .btn { width: 100%; justify-content: center; }
}

/* ─── Layout ─────────────────────────────────────────────────────────────────── */
.section { padding: 5rem 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-subtitle { color: var(--color-text-light); font-size: 1.1rem; margin-top: .75rem; }
.section-tag { display: inline-block; background: var(--color-coral); color: #fff; font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .2em; margin-bottom: .5rem; padding: 6px 14px; border-radius: var(--radius-full); }
.section-tag-light { background: transparent !important; color: var(--color-sand) !important; border: 1px solid var(--color-sand); }
.section-header-light h2 { color: #fff; }

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

/* ─── Hero ─────────────────────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background-size: cover; background-position: center;
  /* Fallback gradient quand pas d'image */
  background-color: var(--color-ocean);
  background-image: linear-gradient(135deg, var(--color-ocean) 0%, var(--color-forest) 100%);
}
.hero.has-image { background-attachment: fixed; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(27,77,77,.3), rgba(44,62,54,.85)); }
.hero-content { position: relative; z-index: 1; text-align: center; color: #fff; max-width: 900px; padding: 2rem 1.5rem; width: 100%; }
.hero-label { display: inline-block; background: rgba(200,125,89,.2); backdrop-filter: blur(10px); padding: .75rem 1.75rem; border-radius: 50px; font-size: .85rem; font-weight: 600; margin-bottom: 1.5rem; border: 1px solid rgba(200,125,89,.4); text-transform: uppercase; letter-spacing: 2px; color: var(--color-sand); }
.hero h1 { font-size: clamp(2.5rem, 7vw, 5rem); font-weight: 700; margin-bottom: 1rem; text-shadow: 0 4px 30px rgba(0,0,0,.4); color: #fff; }
.hero-subtitle { font-size: clamp(1rem, 2vw, 1.25rem); margin-bottom: 2.5rem; line-height: 1.7; max-width: 650px; margin-left: auto; margin-right: auto; opacity: .9; }
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.scroll-indicator { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); text-align: center; color: var(--color-sand); opacity: .8; animation: bounce 2s infinite; }
.scroll-indicator span { display: block; font-size: .75rem; margin-bottom: .5rem; text-transform: uppercase; letter-spacing: 2px; }
.scroll-arrow { width: 16px; height: 16px; border-right: 2px solid var(--color-sand); border-bottom: 2px solid var(--color-sand); transform: rotate(45deg); margin: 0 auto; }
@keyframes bounce { 0%,20%,50%,80%,100% { transform: translateX(-50%) translateY(0); } 40% { transform: translateX(-50%) translateY(-10px); } 60% { transform: translateX(-50%) translateY(-5px); } }

@media (max-width: 768px) {
  .hero { background-attachment: scroll !important; }
  .hero-label { font-size: .75rem; padding: .6rem 1.25rem; }
  .scroll-indicator { display: none; }
}

/* ─── Trust bar ─────────────────────────────────────────────────────────────── */
.trust-bar { display: flex; justify-content: center; gap: 2.5rem; padding: 1.25rem 1.5rem; background: var(--color-ocean); color: #fff; flex-wrap: wrap; border-bottom: 2px solid var(--color-coral); }
.trust-item { display: flex; align-items: center; gap: .75rem; }
.trust-item svg { color: var(--color-coral); flex-shrink: 0; }
.trust-text { display: flex; flex-direction: column; line-height: 1.3; }
.trust-text strong { font-size: .95rem; font-weight: 700; }
.trust-text span { font-size: .75rem; opacity: .7; }

@media (max-width: 640px) {
  .trust-bar { gap: 1.25rem; padding: 1rem; }
  .trust-item { gap: .5rem; }
  .trust-text strong { font-size: .85rem; }
}
@media (max-width: 400px) {
  .trust-bar { grid-template-columns: repeat(2, 1fr); display: grid; }
  .trust-item { justify-content: center; }
}

/* ─── Host section ─────────────────────────────────────────────────────────── */
.section-host { background: var(--color-cream); }
.host-grid { display: grid; grid-template-columns: 42% 1fr; gap: 4rem; align-items: center; }
.host-image-wrapper { border-radius: 20px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,.15); background: var(--color-sand); min-height: 300px; }
.host-image { width: 100%; height: 100%; object-fit: cover; display: block; }
.host-content h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); margin-bottom: 1.25rem; }
.host-description { font-size: 1.05rem; line-height: 1.8; color: var(--color-text-light); margin-bottom: 1.5rem; }
.host-quote { background: #fff; padding: 1.25rem 1.75rem; border-radius: 12px; border-left: 4px solid var(--color-coral); margin: 1.5rem 0; font-family: var(--font-heading); font-style: italic; font-size: 1.1rem; box-shadow: 0 4px 20px rgba(0,0,0,.05); }

@media (max-width: 1024px) {
  .host-grid { grid-template-columns: 1fr; gap: 2rem; }
  .host-image-wrapper { max-width: 500px; margin: 0 auto; min-height: 260px; }
}
@media (max-width: 640px) {
  .host-image-wrapper { max-width: 100%; min-height: 220px; }
}

/* ─── Lodge / Listings ─────────────────────────────────────────────────────── */
.section-lodge { background: #fff; }
.listings-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 2rem; }
.listing-card { background: var(--color-cream); border-radius: 24px; overflow: hidden; box-shadow: 0 10px 40px rgba(0,0,0,.08); transition: transform var(--transition-base), box-shadow var(--transition-base); }
.listing-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,.15); }
.listing-card-image { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--color-sand); }
.listing-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.listing-card:hover .listing-card-image img { transform: scale(1.05); }
.listing-card-image-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: var(--color-text-muted); font-size: 3rem; }
.listing-badge { position: absolute; top: 1rem; left: 1rem; background: var(--color-forest); color: var(--color-sand); padding: .4rem .9rem; border-radius: 50px; font-size: .78rem; font-weight: 600; }
.listing-card-body { padding: 1.5rem; }
.listing-card-body h3 { font-size: 1.4rem; margin-bottom: .6rem; }
.listing-meta { display: flex; gap: .75rem; margin-bottom: .9rem; flex-wrap: wrap; }
.listing-meta span { display: flex; align-items: center; gap: .35rem; font-size: .85rem; color: var(--color-text-light); }
.listing-meta svg { color: var(--color-coral); }
.listing-desc { color: var(--color-text-light); line-height: 1.6; margin-bottom: 1.1rem; font-size: .9rem; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.listing-chips { display: flex; flex-wrap: wrap; gap: .35rem; margin-bottom: 1.25rem; }
.listing-chip { display: flex; align-items: center; gap: 4px; font-size: .78rem; color: var(--color-text-light); background: #fff; padding: 4px 10px; border-radius: 6px; border: 1px solid var(--border-color); }
.listing-chip svg { color: var(--color-coral); }
.listing-card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 1rem; border-top: 1px solid var(--border-color); gap: 1rem; flex-wrap: wrap; }
.listing-price { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700; color: var(--color-forest); }
.listing-price span { font-size: .8rem; font-weight: 400; color: var(--color-text-muted); }

@media (max-width: 480px) {
  .listings-grid { grid-template-columns: 1fr; }
  .listing-card-footer { flex-direction: column; align-items: stretch; }
  .listing-card-footer .btn { width: 100%; justify-content: center; }
}

/* ─── Services ─────────────────────────────────────────────────────────────── */
.section-services { background: var(--color-ocean); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card { background: rgba(255,255,255,.05); border: 1px solid rgba(200,125,89,.15); border-radius: 16px; overflow: hidden; transition: all var(--transition-base); }
.service-card:hover { background: rgba(255,255,255,.1); border-color: rgba(200,125,89,.3); transform: translateY(-4px); }
.service-content { padding: 1.5rem; }
.service-icon-wrapper { width: 46px; height: 46px; background: rgba(200,125,89,.2); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: .9rem; color: var(--color-coral); }
.service-content h3 { color: #fff; font-size: 1.1rem; margin-bottom: .4rem; }
.service-content p { color: rgba(255,255,255,.7); font-size: .875rem; line-height: 1.6; margin-bottom: .6rem; }
.service-price { display: inline-block; color: var(--color-sand); font-size: .82rem; font-weight: 600; }

@media (max-width: 1024px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .services-grid { grid-template-columns: 1fr; } }

/* ─── Gallery ─────────────────────────────────────────────────────────────── */
.section-gallery { background: var(--color-warm); }
.gallery-bento { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: 280px 220px; gap: 1rem; }
.gallery-item-1 { grid-column: 1 / 3; grid-row: 1; }
.gallery-item-2 { grid-column: 3; grid-row: 1; }
.gallery-item-3 { grid-column: 1; grid-row: 2; }
.gallery-item-4 { grid-column: 2; grid-row: 2; }
.gallery-item-5 { grid-column: 3; grid-row: 2; }
.gallery-item { position: relative; border-radius: 12px; overflow: hidden; cursor: pointer; background: var(--color-sand); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(27,77,77,.7) 0%, transparent 50%); display: flex; align-items: flex-end; padding: 1.25rem; opacity: 0; transition: opacity .3s ease; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-text { color: #fff; font-size: .875rem; font-weight: 500; }

@media (max-width: 1024px) {
  .gallery-bento { grid-template-columns: repeat(2, 1fr); grid-template-rows: 240px 200px 200px; }
  .gallery-item-1 { grid-column: 1 / 3; grid-row: 1; }
  .gallery-item-2 { grid-column: 1; grid-row: 2; }
  .gallery-item-3 { grid-column: 2; grid-row: 2; }
  .gallery-item-4 { grid-column: 1; grid-row: 3; }
  .gallery-item-5 { grid-column: 2; grid-row: 3; }
}
@media (max-width: 640px) {
  .gallery-bento { grid-template-columns: 1fr; grid-template-rows: repeat(5, 200px); }
  .gallery-item-1, .gallery-item-2, .gallery-item-3, .gallery-item-4, .gallery-item-5 { grid-column: 1; grid-row: auto; }
}

/* ─── Reviews ─────────────────────────────────────────────────────────────── */
.section-reviews { background: var(--color-cream); }
.reviews-score { display: flex; align-items: center; justify-content: center; gap: .5rem; margin-top: .5rem; }
.reviews-score svg { color: var(--color-coral); }
.score-value { font-size: 1.25rem; font-weight: 700; color: var(--color-forest); }
.score-sub { color: var(--color-text-light); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial-card { background: #fff; padding: 1.75rem; border-radius: 16px; box-shadow: 0 4px 20px rgba(0,0,0,.06); transition: all var(--transition-base); position: relative; display: flex; flex-direction: column; border: 1px solid var(--border-color); }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 12px 35px rgba(0,0,0,.1); }
.platform-badge { position: absolute; top: 1.25rem; right: 1.25rem; padding: .35rem .75rem; border-radius: 50px; font-size: .72rem; font-weight: 600; }
.platform-airbnb { background: #ff5a5f; color: #fff; }
.testimonial-rating { display: flex; gap: 3px; margin-bottom: .9rem; color: var(--color-coral); }
.testimonial-text { font-family: var(--font-heading); font-size: 1rem; line-height: 1.7; color: var(--color-text); margin-bottom: 1.25rem; font-style: italic; flex: 1; }
.testimonial-author { display: flex; align-items: center; gap: .75rem; padding-top: .9rem; border-top: 1px solid var(--border-color); margin-top: auto; }
.author-avatar { width: 42px; height: 42px; background: var(--color-ocean); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--color-sand); font-weight: 700; font-size: 1rem; flex-shrink: 0; }
.author-name { font-weight: 600; color: var(--color-forest); font-size: .9rem; display: block; }
.author-location { font-size: .78rem; color: var(--color-text-muted); display: block; }

@media (max-width: 1024px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* ─── CTA Final ─────────────────────────────────────────────────────────────── */
.section-cta-final { position: relative; background: var(--color-ocean); padding: 6rem 0; text-align: center; overflow: hidden; }
.cta-overlay { position: absolute; inset: 0; background: radial-gradient(circle at 20% 50%, rgba(200,125,89,.1) 0%, transparent 50%), radial-gradient(circle at 80% 50%, rgba(200,125,89,.08) 0%, transparent 50%); }
.cta-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; color: #fff; padding: 0 1.5rem; }
.cta-content h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); color: #fff; margin-bottom: 1rem; }
.cta-content p { font-size: 1.05rem; opacity: .75; margin-bottom: 2rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

@media (max-width: 480px) {
  .cta-buttons .btn { width: 100%; justify-content: center; }
}

/* ─── Footer ─────────────────────────────────────────────────────────────────── */
.footer { background: linear-gradient(135deg, var(--color-forest-dark), var(--color-forest)); color: #fff; padding: 3rem 0 1.5rem; position: relative; }
.footer::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--color-lagoon), transparent); }
.footer-container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.footer-brand-section { text-align: center; margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid rgba(95,168,201,.25); }
.footer-logo-text { font-family: var(--font-heading); font-size: 1.75rem; font-weight: 700; color: var(--color-coral); }
.footer-tagline { opacity: .7; font-size: .95rem; margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: 1rem; justify-content: center; }
.footer-social a { width: 44px; height: 44px; background: rgba(224,122,95,.15); border: 1px solid rgba(224,122,95,.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all var(--transition-base); color: var(--color-coral); }
.footer-social a:hover { background: var(--color-coral); border-color: var(--color-coral); color: #fff; transform: translateY(-3px); }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 2rem; }
.footer-column h4 { color: var(--color-coral); font-size: .9rem; font-weight: 600; margin-bottom: .9rem; text-transform: uppercase; letter-spacing: 1px; }
.footer-column ul { list-style: none; }
.footer-column li { margin-bottom: .4rem; }
.footer-column a { color: rgba(255,255,255,.6); font-size: .875rem; transition: color var(--transition-base); }
.footer-column a:hover { color: var(--color-coral); }
.footer-contact-list li { display: flex; align-items: center; gap: .5rem; color: rgba(255,255,255,.6); font-size: .875rem; }
.footer-bottom { border-top: 1px solid rgba(95,168,201,.25); padding-top: 1.5rem; text-align: center; font-size: .85rem; color: rgba(255,255,255,.5); }
.footer-credits { margin-top: .4rem; }
.footer-credits a { color: var(--color-coral); }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .footer-contact-list li { justify-content: flex-start; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-contact-list li { justify-content: center; }
}
