/* Les Marines de Saint-Gilles - style.css */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Segoe UI', system-ui, -apple-system, sans-serif; background: #fff; color: #1a2e2a; line-height: 1.7; }
img { max-width: 100%; height: auto; display: block; }
a { color: #0d9488; text-decoration: none; transition: color 0.2s; }
a:hover { color: #f97316; }
ul { list-style: none; }
:root { --teal: #0d9488; --teal-dark: #0a7a70; --teal-light: #ccfbf1; --coral: #f97316; --coral-dark: #ea6e0e; --sand: #fef3c7; --sand-dark: #fde68a; --cream: #fffbf0; --text: #1a2e2a; --text-light: #4a6360; --white: #ffffff; --shadow: 0 4px 24px rgba(13,148,136,0.10); --radius: 12px; --radius-lg: 20px; --max-w: 1200px; --transition: 0.3s ease; }
h1,h2,h3,h4,h5 { font-weight: 700; line-height: 1.25; color: var(--text); }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p { margin-bottom: 1rem; color: var(--text-light); }
p:last-child { margin-bottom: 0; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-bg { background: var(--cream); }
.section-sand { background: var(--sand); }
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-white p { color: rgba(255,255,255,0.88) !important; }
.section-title { margin-bottom: 1rem; }
.section-subtitle { font-size: 1.05rem; color: var(--text-light); margin-bottom: 3rem; max-width: 680px; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }
.section-label { display: inline-block; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--coral); margin-bottom: 0.75rem; }
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.85rem 2rem; border-radius: 50px; font-weight: 700; font-size: 0.95rem; cursor: pointer; transition: all var(--transition); border: 2px solid transparent; text-decoration: none; }
.btn-primary { background: var(--coral); color: var(--white); border-color: var(--coral); }
.btn-primary:hover { background: var(--coral-dark); border-color: var(--coral-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(249,115,22,0.35); }
.btn-secondary { background: transparent; color: var(--white); border-color: var(--white); }
.btn-secondary:hover { background: var(--white); color: var(--teal); transform: translateY(-2px); }
.btn-teal { background: var(--teal); color: var(--white); border-color: var(--teal); }
.btn-teal:hover { background: var(--teal-dark); border-color: var(--teal-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(13,148,136,0.35); }
.btn-outline-teal { background: transparent; color: var(--teal); border-color: var(--teal); }
.btn-outline-teal:hover { background: var(--teal); color: var(--white); transform: translateY(-2px); }
.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; }
.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 16px rgba(13,148,136,0.08); transition: all var(--transition); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 0.85rem 1.5rem; max-width: var(--max-w); margin: 0 auto; }
.logo-img { height: 52px; width: auto; }
.nav-menu { display: flex; align-items: center; gap: 0.25rem; }
.nav-menu a { padding: 0.5rem 0.9rem; border-radius: 8px; font-weight: 600; font-size: 0.92rem; color: var(--text); transition: all var(--transition); }
.nav-menu a:hover, .nav-menu a.active { background: var(--teal-light); color: var(--teal); }
.nav-cta { background: var(--coral) !important; color: var(--white) !important; border-radius: 50px !important; padding: 0.5rem 1.25rem !important; }
.nav-cta:hover { background: var(--coral-dark) !important; color: var(--white) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 0.5rem; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2.5px; background: var(--text); border-radius: 2px; transition: all var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; background-image: url('/images/hero-plage.jpg'); background-size: cover; background-position: center; background-attachment: fixed; }
.hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,122,112,0.88) 0%, rgba(26,46,42,0.85) 100%); z-index: 1; }
.hero-content { position: relative; z-index: 2; padding: 8rem 1.5rem 4rem; max-width: var(--max-w); margin: 0 auto; width: 100%; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(249,115,22,0.2); border: 1px solid rgba(249,115,22,0.4); color: #fed7aa; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.4rem 1rem; border-radius: 50px; margin-bottom: 1.5rem; }
.hero h1 { color: var(--white); margin-bottom: 1.25rem; max-width: 750px; }
.hero-lead { font-size: 1.2rem; color: rgba(255,255,255,0.88); max-width: 580px; margin-bottom: 2.5rem; }
.hero-stats { display: flex; gap: 2.5rem; margin-top: 3.5rem; flex-wrap: wrap; }
.hero-stat strong { display: block; font-size: 2rem; font-weight: 800; color: var(--white); line-height: 1; }
.hero-stat span { font-size: 0.82rem; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.08em; }
.wave-divider { line-height: 0; overflow: hidden; }
.wave-divider svg { display: block; width: 100%; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 4rem; }
.service-card { background: var(--white); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow); border: 1px solid rgba(13,148,136,0.08); transition: all var(--transition); }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(13,148,136,0.16); border-color: var(--teal-light); }
.service-icon { width: 56px; height: 56px; background: var(--teal-light); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 1.25rem; }
.service-card h3 { margin-bottom: 0.6rem; font-size: 1.1rem; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.two-col-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 20px 60px rgba(13,148,136,0.18); }
.two-col-img img { width: 100%; height: 420px; object-fit: cover; transition: transform 0.5s ease; }
.two-col-img:hover img { transform: scale(1.04); }
.two-col-text .section-label { display: block; margin-bottom: 0.6rem; }
.two-col-text ul { list-style: none; margin: 1.25rem 0; }
.two-col-text ul li { padding: 0.4rem 0 0.4rem 1.5rem; position: relative; color: var(--text-light); }
.two-col-text ul li::before { content: '\2713'; position: absolute; left: 0; color: var(--teal); font-weight: 700; }
.partner-section { background: var(--sand); border-radius: var(--radius-lg); padding: 2.5rem; margin-top: 3rem; border-left: 4px solid var(--coral); }
.partner-section p { margin-bottom: 0.5rem; }
.partner-section a { color: var(--coral); font-weight: 700; text-decoration: underline; }
.partner-section a:hover { color: var(--coral-dark); }
.banner-section { position: relative; padding: 6rem 0; background-image: url('/images/vue-aerienne.jpg'); background-size: cover; background-position: center; background-attachment: fixed; }
.banner-section::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,122,112,0.87) 0%, rgba(26,46,42,0.82) 100%); z-index: 1; }
.banner-content { position: relative; z-index: 2; text-align: center; color: var(--white); }
.banner-content h2 { color: var(--white); margin-bottom: 1rem; }
.banner-content p { color: rgba(255,255,255,0.88); font-size: 1.1rem; margin-bottom: 2rem; }
.banner-features { display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; margin-top: 3rem; }
.banner-feature { text-align: center; }
.banner-feature-icon { font-size: 2.2rem; margin-bottom: 0.5rem; }
.banner-feature strong { display: block; color: var(--white); font-size: 1rem; }
.banner-feature span { color: rgba(255,255,255,0.7); font-size: 0.82rem; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial-card { background: var(--white); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow); border: 1px solid rgba(13,148,136,0.08); position: relative; }
.testimonial-card::before { content: '\201C'; position: absolute; top: -0.5rem; left: 1.5rem; font-size: 5rem; line-height: 1; color: var(--teal-light); font-family: Georgia, serif; }
.stars { color: #fbbf24; font-size: 1rem; margin-bottom: 1rem; }
.testimonial-card p { font-style: italic; margin-bottom: 1.25rem; }
.testimonial-author strong { display: block; color: var(--text); font-size: 0.92rem; }
.testimonial-author span { color: var(--text-light); font-size: 0.82rem; }
.cta-section { background: var(--sand); }
.cta-highlights { display: flex; gap: 1rem; margin: 1.5rem 0; flex-wrap: wrap; }
.cta-highlight { display: flex; align-items: center; gap: 0.5rem; background: rgba(13,148,136,0.08); padding: 0.5rem 1rem; border-radius: 50px; font-size: 0.88rem; font-weight: 600; color: var(--teal); }
.accommodation-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.accommodation-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: all var(--transition); border: 1px solid rgba(13,148,136,0.08); }
.accommodation-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(13,148,136,0.16); }
.accommodation-img { height: 200px; background: var(--teal-light); display: flex; align-items: center; justify-content: center; font-size: 4rem; overflow: hidden; }
.accommodation-img img { width: 100%; height: 100%; object-fit: cover; }
.accommodation-body { padding: 1.5rem; }
.accommodation-price { display: inline-block; background: var(--coral); color: var(--white); font-weight: 700; font-size: 0.82rem; padding: 0.25rem 0.75rem; border-radius: 50px; margin-bottom: 0.75rem; }
.accommodation-features { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.accommodation-feature { font-size: 0.8rem; color: var(--text-light); background: var(--cream); padding: 0.25rem 0.6rem; border-radius: 6px; }
.activities-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.activity-card { border-radius: var(--radius-lg); overflow: hidden; position: relative; min-height: 280px; background: var(--teal); display: flex; align-items: flex-end; box-shadow: var(--shadow); }
.activity-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,122,112,0.9) 0%, rgba(10,122,112,0.2) 60%); z-index: 1; transition: all var(--transition); }
.activity-card-bg { position: absolute; inset: 0; font-size: 5rem; display: flex; align-items: center; justify-content: center; opacity: 0.15; }
.activity-content { position: relative; z-index: 2; padding: 2rem; color: var(--white); }
.activity-content h3 { color: var(--white); margin-bottom: 0.5rem; }
.activity-content p { color: rgba(255,255,255,0.85); margin: 0; font-size: 0.92rem; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border: 1px solid rgba(13,148,136,0.15); border-radius: var(--radius); margin-bottom: 1rem; overflow: hidden; background: var(--white); }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 1.25rem 1.5rem; cursor: pointer; font-weight: 600; color: var(--text); transition: background var(--transition); gap: 1rem; }
.faq-question:hover { background: var(--teal-light); }
.faq-question.open { background: var(--teal-light); color: var(--teal); }
.faq-icon { width: 28px; height: 28px; min-width: 28px; background: var(--teal); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; transition: transform var(--transition); }
.faq-question.open .faq-icon { transform: rotate(45deg); background: var(--coral); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer.open { max-height: 500px; }
.faq-answer-inner { padding: 1.25rem 1.5rem; border-top: 1px solid rgba(13,148,136,0.1); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; }
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 2rem; }
.contact-info-icon { width: 48px; height: 48px; min-width: 48px; background: var(--teal-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; }
.contact-info-text strong { display: block; color: var(--text); margin-bottom: 0.25rem; }
.contact-form { background: var(--white); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow); }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 600; font-size: 0.88rem; margin-bottom: 0.4rem; color: var(--text); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.85rem 1rem; border: 2px solid rgba(13,148,136,0.15); border-radius: 10px; font-size: 0.95rem; font-family: inherit; color: var(--text); background: var(--cream); transition: border-color var(--transition); outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--teal); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.blog-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: all var(--transition); border: 1px solid rgba(13,148,136,0.08); display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(13,148,136,0.18); }
.blog-card-img { height: 200px; overflow: hidden; background: var(--teal-light); }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-card-cat { display: inline-block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--coral); margin-bottom: 0.6rem; }
.blog-card-body h3 { font-size: 1rem; margin-bottom: 0.6rem; }
.blog-card-body p { font-size: 0.88rem; margin-bottom: 1rem; flex: 1; }
.blog-card-meta { display: flex; align-items: center; justify-content: space-between; font-size: 0.8rem; color: var(--text-light); border-top: 1px solid rgba(13,148,136,0.1); padding-top: 1rem; margin-top: auto; }
.read-more { color: var(--teal); font-weight: 700; font-size: 0.85rem; display: flex; align-items: center; gap: 0.3rem; }
.read-more:hover { color: var(--coral); }
.article-hero { position: relative; height: 480px; background-size: cover; background-position: center; display: flex; align-items: flex-end; }
.article-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,122,112,0.90) 0%, rgba(10,122,112,0.30) 70%); z-index: 1; }
.article-hero-content { position: relative; z-index: 2; padding: 2.5rem 1.5rem; max-width: var(--max-w); margin: 0 auto; width: 100%; color: var(--white); }
.article-hero-content h1 { color: var(--white); margin-bottom: 0.75rem; }
.article-meta { display: flex; gap: 1.5rem; flex-wrap: wrap; font-size: 0.85rem; color: rgba(255,255,255,0.8); }
.article-meta span { display: flex; align-items: center; gap: 0.4rem; }
.breadcrumb { background: var(--cream); padding: 0.85rem 0; border-bottom: 1px solid rgba(13,148,136,0.1); }
.breadcrumb ol { display: flex; gap: 0.5rem; align-items: center; flex-wrap: wrap; font-size: 0.85rem; max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.breadcrumb li { color: var(--text-light); }
.breadcrumb li + li::before { content: '/'; margin-right: 0.5rem; color: var(--teal); }
.breadcrumb a { color: var(--teal); }
.article-layout { display: grid; grid-template-columns: 1fr 320px; gap: 3rem; align-items: start; max-width: var(--max-w); margin: 0 auto; padding: 3rem 1.5rem; }
.article-body { min-width: 0; }
.article-body h2 { margin: 2rem 0 1rem; font-size: 1.5rem; }
.article-body h3 { margin: 1.5rem 0 0.75rem; font-size: 1.2rem; }
.article-body p { margin-bottom: 1.25rem; }
.article-body ul, .article-body ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li { margin-bottom: 0.4rem; color: var(--text-light); }
.article-body strong { color: var(--text); }
.article-mid-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 12px 40px rgba(13,148,136,0.15); margin: 2rem 0; }
.article-mid-img img { width: 100%; height: 340px; object-fit: cover; }
.article-mid-img figcaption { padding: 0.75rem 1rem; background: var(--cream); font-size: 0.82rem; color: var(--text-light); font-style: italic; }
.article-sidebar { position: sticky; top: 90px; }
.sidebar-widget { background: var(--white); border-radius: var(--radius-lg); padding: 1.5rem; box-shadow: var(--shadow); margin-bottom: 1.5rem; border: 1px solid rgba(13,148,136,0.08); }
.sidebar-widget h4 { margin-bottom: 1rem; font-size: 1rem; color: var(--teal); }
.sidebar-links li { margin-bottom: 0.6rem; }
.sidebar-links a { font-size: 0.88rem; color: var(--text-light); display: flex; align-items: center; gap: 0.4rem; }
.sidebar-links a:hover { color: var(--coral); }
.article-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 2rem; }
.article-tag { background: var(--teal-light); color: var(--teal); font-size: 0.8rem; font-weight: 600; padding: 0.3rem 0.75rem; border-radius: 50px; }
.related-articles { background: var(--cream); border-radius: var(--radius-lg); padding: 2rem; margin-top: 3rem; }
.related-articles h3 { margin-bottom: 1.25rem; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.related-link { background: var(--white); border-radius: var(--radius); padding: 1rem; border: 1px solid rgba(13,148,136,0.1); font-size: 0.88rem; font-weight: 600; color: var(--text); transition: all var(--transition); display: block; }
.related-link:hover { background: var(--teal-light); color: var(--teal); border-color: var(--teal); }
.page-hero { position: relative; padding: 8rem 0 4rem; background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%); overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px; border-radius: 50%; background: rgba(255,255,255,0.04); }
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.85); font-size: 1.1rem; max-width: 580px; }
.region-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.region-card { background: var(--white); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow); border: 1px solid rgba(13,148,136,0.08); border-top: 4px solid var(--teal); transition: all var(--transition); }
.region-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(13,148,136,0.15); }
.region-card-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.region-card h3 { margin-bottom: 0.75rem; }
.site-footer { background: #0d2420; color: rgba(255,255,255,0.75); padding: 4rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 3rem; }
.footer-logo { height: 48px; width: auto; filter: brightness(0) invert(1); margin-bottom: 1rem; }
.footer-desc { font-size: 0.88rem; line-height: 1.7; max-width: 280px; }
.footer-title { font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--teal-light); margin-bottom: 1.25rem; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.65); transition: color var(--transition); }
.footer-links a:hover { color: var(--teal-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 1.5rem 0; display: flex; justify-content: space-between; align-items: center; font-size: 0.82rem; flex-wrap: wrap; gap: 0.5rem; }
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--teal-light); }
.footer-social { display: flex; gap: 0.75rem; }
.social-link { width: 36px; height: 36px; background: rgba(255,255,255,0.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1rem; transition: background var(--transition); }
.social-link:hover { background: var(--teal); }
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }
.fade-up:nth-child(6) { transition-delay: 0.5s; }
.error-page { min-height: 70vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 4rem 1.5rem; }
.error-code { font-size: 8rem; font-weight: 900; color: var(--teal-light); line-height: 1; }
.tag-list { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1rem 0; }
.tag { background: var(--teal-light); color: var(--teal); font-size: 0.8rem; font-weight: 600; padding: 0.3rem 0.75rem; border-radius: 50px; }
.highlight-box { background: var(--teal-light); border-left: 4px solid var(--teal); border-radius: 0 var(--radius) var(--radius) 0; padding: 1.25rem 1.5rem; margin: 1.5rem 0; }
.highlight-box p { color: var(--teal-dark); margin: 0; font-weight: 500; }
.divider { height: 2px; background: linear-gradient(90deg, var(--teal), var(--coral)); border-radius: 2px; margin: 3rem 0; }
@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; } .article-layout { grid-template-columns: 1fr; } .article-sidebar { position: static; } .related-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } .testimonials-grid { grid-template-columns: repeat(2, 1fr); } .accommodation-grid { grid-template-columns: repeat(2, 1fr); } .blog-grid { grid-template-columns: repeat(2, 1fr); } .activities-grid { grid-template-columns: 1fr; } .two-col { grid-template-columns: 1fr; gap: 2rem; } .two-col.reverse .two-col-text { order: -1; } .contact-grid { grid-template-columns: 1fr; } .region-grid { grid-template-columns: 1fr; } }
@media (max-width: 768px) { .hamburger { display: flex; } .nav-menu { position: fixed; top: 0; right: -100%; width: 80%; max-width: 320px; height: 100vh; background: var(--white); flex-direction: column; justify-content: flex-start; padding: 5rem 2rem 2rem; box-shadow: -4px 0 24px rgba(0,0,0,0.15); transition: right var(--transition); gap: 0.25rem; } .nav-menu.open { right: 0; } .nav-menu a { width: 100%; padding: 0.75rem 1rem; border-radius: 10px; } .hero { background-attachment: scroll; } .banner-section { background-attachment: scroll; } .hero-stats { gap: 1.5rem; } .hero-stat strong { font-size: 1.5rem; } .banner-features { gap: 1.5rem; } .form-row { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } .testimonials-grid { grid-template-columns: 1fr; } .accommodation-grid { grid-template-columns: 1fr; } .blog-grid { grid-template-columns: 1fr; } .footer-grid { grid-template-columns: 1fr; } .related-grid { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; text-align: center; } .article-hero { height: 340px; } .two-col-img img { height: 280px; } .hero-lead { font-size: 1rem; } }
