/* ==========================================================================
   Camping Baie de Cavalaire - style.css
   ========================================================================== */

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

:root {
  --primary: #0891b2;
  --primary-dark: #0e7490;
  --primary-light: #e0f2fe;
  --accent: #f59e0b;
  --accent-dark: #d97706;
  --sand: #fdf6e3;
  --sand-dark: #f5e6c8;
  --text: #1e293b;
  --text-light: #64748b;
  --white: #ffffff;
  --border: #e2e8f0;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
  --max-width: 1200px;
}

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

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }
ul { list-style: none; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }

/* Typography */
h1, h2, h3, h4, h5 { line-height: 1.25; color: var(--text); }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }
p { margin-bottom: 1rem; }

.section-title { text-align: center; margin-bottom: 0.75rem; }
.section-subtitle { text-align: center; color: var(--text-light); font-size: 1.1rem; margin-bottom: 3rem; max-width: 640px; margin-left: auto; margin-right: auto; }
.accent-line { display: block; width: 60px; height: 4px; background: linear-gradient(90deg, var(--primary), var(--accent)); border-radius: 2px; margin: 0.75rem auto 1.5rem; }

/* Buttons */
.btn { display: inline-block; padding: 14px 32px; border-radius: 50px; font-size: 1rem; font-weight: 600; cursor: pointer; border: none; transition: all var(--transition); text-align: center; }
.btn-primary { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: var(--white); box-shadow: 0 4px 16px rgba(8,145,178,0.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(8,145,178,0.45); color: var(--white); }
.btn-accent { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: var(--white); box-shadow: 0 4px 16px rgba(245,158,11,0.35); }
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,158,11,0.45); color: var(--white); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--primary); }
.btn-outline-primary { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline-primary:hover { background: var(--primary); color: var(--white); }

/* Header / Nav */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(255,255,255,0.97); backdrop-filter: blur(10px); box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; max-width: var(--max-width); margin: 0 auto; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-weight: 700; color: var(--primary); }
.logo-img { height: 44px; width: auto; }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-text span { font-size: 0.75rem; font-weight: 400; color: var(--text-light); }
.logo-text strong { color: var(--primary); font-size: 1rem; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a { padding: 8px 14px; border-radius: 8px; font-size: 0.92rem; font-weight: 500; color: var(--text); transition: all var(--transition); }
.nav-links a:hover, .nav-links a.active { background: var(--primary-light); color: var(--primary); }
.nav-links .btn-nav-cta { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: var(--white) !important; padding: 8px 18px; border-radius: 50px; font-weight: 600; }
.nav-links .btn-nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(8,145,178,0.4); background: linear-gradient(135deg, var(--primary), var(--primary-dark)); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; border: none; background: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all var(--transition); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Hero */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; background-size: cover; background-position: center; background-attachment: fixed; padding-top: 80px; }
.hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(8,30,60,0.88) 0%, rgba(8,100,140,0.82) 50%, rgba(0,0,0,0.75) 100%); }
.hero-content { position: relative; z-index: 1; color: var(--white); max-width: 760px; }
.hero-badge { display: inline-block; background: rgba(245,158,11,0.2); border: 1px solid rgba(245,158,11,0.5); color: var(--accent); padding: 6px 16px; border-radius: 50px; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1.5rem; }
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 span { color: var(--accent); }
.hero-desc { font-size: 1.15rem; color: rgba(255,255,255,0.88); margin-bottom: 2rem; max-width: 580px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-scroll { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,0.7); font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; animation: bounce 2s infinite; }
.hero-scroll::after { content: ''; display: block; width: 1px; height: 40px; background: rgba(255,255,255,0.4); }
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-8px); } }

/* Section Padding */
.section { padding: 80px 0; }
.section-lg { padding: 100px 0; }
.section-sm { padding: 60px 0; }
.bg-sand { background: var(--sand); }
.bg-sand-dark { background: var(--sand-dark); }
.bg-white { background: var(--white); }

/* Two-Column Layout */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
.two-col-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); position: relative; }
.two-col-img img { width: 100%; height: 480px; object-fit: cover; display: block; }
.img-badge { position: absolute; bottom: 20px; left: 20px; background: var(--accent); color: var(--white); padding: 8px 18px; border-radius: 50px; font-size: 0.85rem; font-weight: 700; }
.two-col-text .section-subtitle { text-align: left; margin-left: 0; }
.two-col-text .section-title { text-align: left; }
.two-col-text .accent-line { margin-left: 0; }
.feature-list { margin: 1.5rem 0; }
.feature-list li { display: flex; align-items: flex-start; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 0.97rem; }
.feature-list li:last-child { border-bottom: none; }
.feature-icon { width: 28px; height: 28px; background: var(--primary-light); color: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; flex-shrink: 0; margin-top: 2px; }

/* Cards Grid */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; transition: transform var(--transition), box-shadow var(--transition); }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-img { width: 100%; height: 220px; object-fit: cover; }
.card-body { padding: 24px; }
.card-tag { font-size: 0.75rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.card-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; line-height: 1.35; }
.card-excerpt { font-size: 0.9rem; color: var(--text-light); margin-bottom: 16px; }
.card-link { font-size: 0.88rem; font-weight: 600; color: var(--primary); display: inline-flex; align-items: center; gap: 4px; }

/* Icon Cards */
.icon-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.icon-card { background: var(--white); border-radius: var(--radius); padding: 32px 24px; text-align: center; box-shadow: var(--shadow); transition: transform var(--transition), box-shadow var(--transition); border-top: 3px solid transparent; }
.icon-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-top-color: var(--primary); }
.icon-card .icon { font-size: 2.5rem; margin-bottom: 1rem; }
.icon-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.icon-card p { font-size: 0.88rem; color: var(--text-light); margin: 0; }

/* Full-Width Banner */
.banner-section { position: relative; padding: 100px 0; background-size: cover; background-position: center; background-attachment: fixed; text-align: center; color: var(--white); }
.banner-section::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(8,30,60,0.82) 0%, rgba(8,100,140,0.75) 100%); }
.banner-content { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.banner-section h2 { color: var(--white); margin-bottom: 1rem; }
.banner-section p { font-size: 1.1rem; color: rgba(255,255,255,0.88); margin-bottom: 2rem; }

/* Stats */
.stats-bar { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); padding: 50px 0; color: var(--white); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-number { font-size: 2.6rem; font-weight: 800; color: var(--accent); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 0.92rem; color: rgba(255,255,255,0.85); }

/* Testimonials */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: var(--white); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); position: relative; }
.testimonial-stars { color: var(--accent); font-size: 1rem; margin-bottom: 12px; }
.testimonial-text { font-style: italic; color: var(--text-light); font-size: 0.95rem; margin-bottom: 16px; }
.testimonial-author { font-weight: 700; font-size: 0.9rem; }
.testimonial-location { font-size: 0.8rem; color: var(--text-light); }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; }
.faq-question { padding: 18px 24px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-weight: 600; background: var(--white); transition: background var(--transition); gap: 12px; }
.faq-question:hover { background: var(--primary-light); }
.faq-toggle { width: 28px; height: 28px; background: var(--primary-light); color: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; transition: transform var(--transition), background var(--transition); }
.faq-item.open .faq-toggle { transform: rotate(45deg); background: var(--primary); color: var(--white); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; padding: 0 24px; background: var(--sand); font-size: 0.95rem; color: var(--text-light); }
.faq-item.open .faq-answer { max-height: 600px; padding: 18px 24px; }

/* Contact Form */
.contact-form-wrap { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.contact-info h3 { margin-bottom: 1rem; }
.contact-info p { color: var(--text-light); font-size: 0.95rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.ci-icon { width: 40px; height: 40px; background: var(--primary-light); color: var(--primary); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.ci-text strong { display: block; font-size: 0.9rem; margin-bottom: 2px; }
.ci-text span { font-size: 0.88rem; color: var(--text-light); }
.form-card { background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-lg); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.9rem; font-weight: 600; margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 16px; border: 2px solid var(--border); border-radius: 10px; font-size: 0.95rem; color: var(--text); background: var(--sand); transition: border-color var(--transition), box-shadow var(--transition); font-family: inherit; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(8,145,178,0.12); background: var(--white); }
.form-group textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { width: 100%; padding: 14px; }

/* Blog Hero */
.blog-hero { position: relative; min-height: 55vh; display: flex; align-items: center; background-size: cover; background-position: center; padding-top: 80px; }
.blog-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(8,30,60,0.86) 0%, rgba(8,100,140,0.80) 100%); }
.blog-hero-content { position: relative; z-index: 1; color: var(--white); max-width: 800px; }
.blog-hero h1 { color: var(--white); margin-bottom: 1rem; }

/* Blog Article */
.article-layout { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; }
.article-body { background: var(--white); border-radius: var(--radius); padding: 48px; box-shadow: var(--shadow); }
.article-body h2 { margin: 2rem 0 1rem; color: var(--primary); }
.article-body h3 { margin: 1.5rem 0 0.75rem; }
.article-body p { font-size: 1rem; line-height: 1.8; margin-bottom: 1.25rem; }
.article-body ul, .article-body ol { margin: 1rem 0 1.25rem 1.5rem; list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li { margin-bottom: 0.5rem; font-size: 0.97rem; line-height: 1.7; }
.article-mid-img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); margin: 2rem 0; }
.article-sidebar { position: sticky; top: 100px; }
.sidebar-card { background: var(--white); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); margin-bottom: 24px; }
.sidebar-card h4 { margin-bottom: 14px; color: var(--primary); }
.sidebar-links { display: flex; flex-direction: column; gap: 8px; }
.sidebar-links a { font-size: 0.9rem; color: var(--text); padding: 8px 12px; background: var(--sand); border-radius: 8px; transition: all var(--transition); border-left: 3px solid transparent; }
.sidebar-links a:hover { border-left-color: var(--primary); color: var(--primary); background: var(--primary-light); }
.article-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 2rem; }
.article-tag { background: var(--primary-light); color: var(--primary); padding: 4px 14px; border-radius: 50px; font-size: 0.8rem; font-weight: 600; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: rgba(255,255,255,0.75); margin-bottom: 1.5rem; flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,0.85); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { color: rgba(255,255,255,0.5); }

/* Page Hero */
.page-hero { position: relative; padding: 160px 0 80px; background: linear-gradient(135deg, var(--primary-dark), var(--primary)); text-align: center; color: var(--white); overflow: hidden; }
.page-hero h1 { color: var(--white); position: relative; z-index: 1; }
.page-hero p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-top: 1rem; position: relative; z-index: 1; }

/* Blog Listing */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.blog-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: transform var(--transition), box-shadow var(--transition); }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-card-img { width: 100%; height: 220px; object-fit: cover; }
.blog-card-body { padding: 28px; }
.blog-card-tag { font-size: 0.75rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.blog-card-title { font-size: 1.1rem; font-weight: 700; line-height: 1.35; margin-bottom: 10px; color: var(--text); }
.blog-card-excerpt { font-size: 0.9rem; color: var(--text-light); margin-bottom: 18px; line-height: 1.6; }
.blog-card-meta { display: flex; align-items: center; justify-content: space-between; font-size: 0.8rem; color: var(--text-light); }
.blog-card-link { color: var(--primary); font-weight: 600; font-size: 0.88rem; }
.blog-card-link:hover { text-decoration: underline; }

/* Hebergements */
.hebergement-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); margin-bottom: 48px; display: grid; grid-template-columns: 1fr 1fr; }
.hebergement-card-img { height: 100%; min-height: 340px; object-fit: cover; width: 100%; }
.hebergement-card-body { padding: 48px; display: flex; flex-direction: column; justify-content: center; }
.hebergement-card-body h3 { font-size: 1.6rem; margin-bottom: 1rem; }
.price-tag { display: inline-block; background: var(--accent); color: var(--white); padding: 6px 18px; border-radius: 50px; font-weight: 700; font-size: 0.9rem; margin-bottom: 1rem; }
.amenities { display: flex; flex-wrap: wrap; gap: 8px; margin: 1rem 0; }
.amenity { background: var(--primary-light); color: var(--primary); padding: 4px 12px; border-radius: 50px; font-size: 0.8rem; font-weight: 600; }

/* Footer */
.site-footer { background: #0f172a; color: rgba(255,255,255,0.8); padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 20px; margin-top: 14px; }
.footer-social { display: flex; gap: 10px; }
.social-btn { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.1); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; transition: background var(--transition); text-decoration: none; }
.social-btn:hover { background: var(--primary); color: var(--white); }
.footer-col h4 { font-size: 0.92rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--white); margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 0.88rem; color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; display: flex; align-items: center; justify-content: space-between; font-size: 0.82rem; color: rgba(255,255,255,0.45); }
.footer-bottom a { color: rgba(255,255,255,0.45); }
.footer-bottom a:hover { color: var(--white); }

/* 404 */
.page-404 { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; background: var(--sand); padding: 40px 20px; }
.page-404-inner { max-width: 500px; }
.num-404 { font-size: 8rem; font-weight: 900; color: var(--primary); line-height: 1; opacity: 0.2; }
.page-404 h1 { font-size: 2rem; margin-bottom: 1rem; }
.page-404 p { color: var(--text-light); margin-bottom: 2rem; }

/* Fade-in Animation */
.fade-in { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
.fade-in-delay-5 { transition-delay: 0.5s; }

/* Utilities */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.badge { background: rgba(255,255,255,0.15); color: var(--white); border: 1px solid rgba(255,255,255,0.3); padding: 5px 14px; border-radius: 50px; font-size: 0.82rem; font-weight: 500; }
.badge-accent { background: rgba(245,158,11,0.2); border-color: rgba(245,158,11,0.5); color: var(--accent); }
.gap-badge { display: inline-flex; gap: 10px; flex-wrap: wrap; margin-bottom: 1.5rem; }
.highlight-box { background: var(--primary-light); border-left: 4px solid var(--primary); border-radius: 0 var(--radius) var(--radius) 0; padding: 20px 24px; margin: 1.5rem 0; font-size: 0.97rem; }
.highlight-box p:last-child { margin-bottom: 0; }
.hero-badge { display: inline-block; background: rgba(245,158,11,0.2); border: 1px solid rgba(245,158,11,0.5); color: var(--accent); padding: 6px 16px; border-radius: 50px; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1.5rem; }

/* Responsive */
@media (max-width: 1024px) {
  .cards-grid, .icon-cards { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col { gap: 40px; }
}
@media (max-width: 900px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .contact-form-wrap { grid-template-columns: 1fr; }
  .hebergement-card { grid-template-columns: 1fr; }
  .hebergement-card-img { height: 260px; }
}
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links { position: fixed; top: 72px; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 20px; gap: 4px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); transform: translateY(-110%); transition: transform var(--transition); z-index: 999; }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { width: 100%; padding: 12px 16px; }
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .two-col.reverse { direction: ltr; }
  .two-col-img img { height: 300px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .section { padding: 60px 0; }
  .section-lg { padding: 70px 0; }
  .blog-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
  .icon-cards { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .article-body { padding: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .banner-section { padding: 70px 0; }
  .banner-section, .hero { background-attachment: scroll; }
}
@media (max-width: 480px) {
  .icon-cards { grid-template-columns: 1fr; }
}
