/* ==========================================================================
   Croix de Bauzon - Summer Landing Page Stylesheet (Polished & Animated)
   Design: Premium, Fresh, Dynamic, Photo-rich
   ========================================================================== */

/* --- Design System / CSS Variables --- */
:root {
    --bg-dark: #0a192f;
    --bg-light: #f8fafc;
    --bg-fresh-tint: #f0f9ff;

    --primary-forest: #064e3b;      /* Forest Green */
    --primary-forest-rgb: 6, 78, 59;
    --primary-teal: #0d9488;        /* Teal */
    --primary-teal-rgb: 13, 148, 136;

    --accent-orange: #f97316;      /* Zipline Orange */
    --accent-orange-hover: #ea580c;
    --accent-blue: #0284c7;        /* Cool Blue */
    --accent-blue-light: #38bdf8;
    --accent-gold: #d97706;        /* Warm Gold */

    --text-dark: #0f172a;          /* Slate 900 */
    --text-light: #f8fafc;         /* Slate 50 */
    --text-muted: #475569;         /* Slate 600 */
    --text-muted-light: #94a3b8;   /* Slate 400 */

    --white: #ffffff;
    --black: #000000;

    --card-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.05);
    --hover-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.1);
    --glow-shadow: 0 0 20px rgba(249, 115, 22, 0.25);

    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
}

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

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

body {
    font-family: 'Nunito', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-forest);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- Common Components --- */
.section-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 6px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.badge-primary {
    background-color: rgba(6, 78, 59, 0.1);
    color: var(--primary-forest);
}

.badge-accent {
    background-color: rgba(249, 115, 22, 0.15);
    color: var(--accent-orange);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    text-align: center;
    gap: 10px;
}

.btn-primary {
    background-color: var(--accent-orange);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(249, 115, 22, 0.3);
}

.btn-primary:hover {
    background-color: var(--accent-orange-hover);
    transform: translateY(-2px);
    box-shadow: var(--glow-shadow);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 10px 22px;
    font-size: 0.9rem;
}

.glow-effect {
    position: relative;
    overflow: hidden;
}

.glow-effect::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        rgba(255, 255, 255, 0) 45%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 55%
		);
    transform: rotate(45deg);
    animation: shine 4s infinite;
}

@keyframes shine {
    0% {
		transform: translate(-50%, -50%) rotate(45deg);
	}
    80% {
		transform: translate(-50%, -50%) rotate(45deg);
	}
    100% {
		transform: translate(150%, 150%) rotate(45deg);
	}
}

/* --- Header / Navigation --- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-img, .logo-departement {
    height: auto;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
    vertical-align: middle;
}

.header-slogan {
    display: flex;
    align-items: center;
    flex-shrink: 1;
    min-width: 0;
}

.slogan-text {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--accent-orange);
    font-style: normal;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    padding-top: 170px;
    padding-bottom: 80px;
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    color: var(--white);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    text-align: left;
}

.hero-badge {
    font-family: 'Quicksand', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-blue-light);
    background: rgba(2, 132, 199, 0.15);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(2, 132, 199, 0.25);
    margin-bottom: 1.25rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--accent-blue-light);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1.25rem;
}

.hero-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    font-weight: 300;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-actions .btn {
    flex: 1 1 240px;
}

/* Parallax Character on Zipline styling */
.hero-character-container {
    position: relative;
    width: 100%;
    height: 380px;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.zipline-cable {
    position: absolute;
    width: 150%;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.1);
    border-bottom: 2px dashed rgba(255, 255, 255, 0.35);
    transform: rotate(-13deg);
    top: 35%;
    left: -25%;
    z-index: 1;
}

.hero-character-img {
    position: absolute;
    width: 290px;
    height: auto;
    z-index: 2;
    top: 25%;
    left: 20%;
    transform-origin: top center;
    animation: character-float 4s ease-in-out infinite alternate;
}

@keyframes character-float {
    0% {
		transform: translateY(-5px) rotate(-1.5deg);
	}
    100% {
		transform: translateY(8px) rotate(2.5deg);
	}
}

.zipline-wind-effect {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    background: transparent;
}

/* --- Main Content Layout --- */
.main-content-section {
    background-color: var(--white);
}

.content-layout {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 40px;
    align-items: start;
}

.content-title {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 12px;
}

.content-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--primary-teal);
    border-radius: var(--radius-full);
}

.intro-text > p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* Photo-rich Activity Grid */
.activities-photos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 2rem 0;
}

.activity-photo-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
}

.activity-photo-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
    border-color: rgba(13, 148, 136, 0.15);
}

.card-img-wrapper {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.activity-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.activity-photo-card:hover .activity-img {
    transform: scale(1.05);
}

.card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    color: var(--white);
}

.badge-sensations {
	background-color: var(--accent-orange);
}
.badge-adventure {
	background-color: var(--accent-gold);
}
.badge-explore {
	background-color: var(--primary-teal);
}
.badge-nature {
	background-color: var(--primary-forest);
}

.card-text-content {
    padding: 16px;
}

.card-text-content h3 {
    font-size: 1.15rem;
    color: var(--primary-forest);
    margin-bottom: 6px;
}

.card-text-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 400;
    line-height: 1.5;
}

/* --- Weather Sidebar & Heatwave Card --- */
.weather-sidebar {
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.heatwave-card {
    background-color: var(--bg-fresh-tint);
    border-radius: var(--radius-md);
    padding: 20px;
    border: 1px solid rgba(2, 132, 199, 0.1);
}

.heatwave-text {
    font-size: 1.05rem;
    color: var(--accent-blue);
    line-height: 1.5;
}

.heatwave-text strong {
    display: block;
    margin-top: 10px;
    font-size: 1.2rem;
    color: var(--primary-forest);
    font-family: 'Quicksand', sans-serif;
}

.weather-card-compact {
    background-color: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--card-shadow);
}

.sidebar-title {
    font-size: 1.35rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-title i {
    color: var(--accent-blue);
}

.weather-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.weather-comparison {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
}

.weather-box {
    background-color: var(--white);
    border-radius: var(--radius-md);
    padding: 16px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.01);
}

.weather-box.plain {
    border-left: 4px solid var(--accent-orange);
}

.weather-box.station {
    border-left: 4px solid var(--accent-blue);
    background: linear-gradient(180deg, rgba(2, 132, 199, 0.02) 0%, rgba(255, 255, 255, 1) 100%);
}

.box-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}

.weather-box.plain .box-label {
    color: var(--accent-orange);
}

.weather-box.station .box-label {
    color: var(--accent-blue);
}

.temp-display-compact {
    display: flex;
    justify-content: center;
    align-items: baseline;
}

.temp-val {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
}

.temp-unit {
    font-size: 1.25rem;
    color: var(--text-muted-light);
    margin-left: 2px;
}

.box-status {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.text-orange {
	color: var(--accent-orange);
}
.text-cyan {
	color: var(--accent-blue-light);
}

.weather-delta-box {
    text-align: center;
}

.delta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(2, 132, 199, 0.08);
    color: var(--accent-blue);
    border: 1px solid rgba(2, 132, 199, 0.15);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 10px rgba(2, 132, 199, 0.05);
    animation: deltaPulse 2.5s infinite ease-in-out;
}

@keyframes deltaPulse {
    0% {
		transform: scale(1);
	}
    50% {
		transform: scale(1.03);
	}
    100% {
		transform: scale(1);
	}
}

/* Schedule Card */
.schedule-card-compact {
    background-color: var(--white);
    border-radius: var(--radius-md);
    padding: 20px;
    border: 1px solid rgba(6, 78, 59, 0.08);
    box-shadow: var(--card-shadow);
}

.schedule-title {
    font-size: 1.1rem;
    color: var(--primary-forest);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.schedule-title i {
    color: var(--primary-teal);
}

.schedule-details {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 400;
    line-height: 1.5;
}

/* --- Footer --- */
.main-footer {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 70px 24px 30px 24px;
    border-top: 3px solid var(--primary-teal);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto 50px auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-brand {
    flex: 1 1 400px;
}

/* Targets screens that are 480px wide or smaller */
@media screen and (max-width: 480px) {
	.footer-brand {
		flex: 1 1 100px;
	}
}

.footer-logo {
    height: 110px;
    width: auto;
    margin-bottom: 20px;
    object-fit: contain;
}

.footer-slogan {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--accent-blue-light);
    margin-bottom: 12px;
    font-weight: 600;
}

.footer-contact {
    flex: 1 1 300px;
}

/* Targets screens that are 480px wide or smaller */
@media screen and (max-width: 480px) {
	.footer-contact {
		flex: 1 1 100px;
	}
}

.footer-title {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background-color: var(--primary-teal);
}

.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
	padding-left: 28px;
}

.footer-contact li {
    font-size: 0.95rem;
    color: var(--text-muted-light);
}

.footer-contact strong {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 25px;
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.85rem;
    color: var(--text-muted-light);
	place-content: center;
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a:hover {
    color: var(--white);
}

/* --- Responsive Media Queries --- */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .hero-content {
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-character-container {
        display: none; /* Cache la mascotte sur tablette/mobile pour garder de la clarté */
    }
}

@media (max-width: 900px) {
    .content-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .weather-sidebar {
        position: static;
    }

    .weather-comparison {
        flex-direction: row;
    }

    .weather-box {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.75rem;
    }

    .hero-description {
        font-size: 1.05rem;
    }

    .header-slogan {
        display: none; /* Cache le slogan sur mobile */
    }

    .footer-container {
        flex-direction: column;
    }

    .activities-photos-grid {
        grid-template-columns: 1fr;
    }

    .header-container {
        flex-wrap: wrap;
        gap: 10px;
        padding: 10px 16px !important;
        min-height: auto;
    }

    .logo-img {
        max-height: 64px !important;
        height: 64px !important;
    }

    .logo-departement {
        max-height: 52px !important;
        height: 52px !important;
    }

    .main-nav {
        order: 3;
        width: 100%;
        flex-wrap: wrap;
        gap: 8px;
        margin-right: 0;
    }

    .main-nav a {
        font-size: 13px !important;
        padding: 6px 12px;
    }
}

@media (max-width: 600px) {
    .hero-actions .btn {
        width: 100%;
        min-width: 0;
    }

    .weather-comparison {
        flex-direction: column;
    }

    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
    }
}

/* ==========================================================================
   Booking Modal (Disponibilités en direct)
   ========================================================================== */
.booking-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.booking-modal.active {
    display: flex;
}

.booking-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 25, 47, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.booking-modal-container {
    position: relative;
    background: #ffffff;
    width: 90%;
    max-width: 1000px;
    height: 85%;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 1001;
    animation: modalFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(15px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.booking-modal-header {
    padding: 16px 24px;
    background: var(--bg-light);
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.booking-modal-header h3 {
    font-family: 'Quicksand', sans-serif;
    color: var(--primary-forest);
    margin: 0;
    font-size: 1.25rem;
}

.booking-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-fast);
}

.booking-modal-close:hover {
    color: #ef4444;
    transform: scale(1.1);
}

.booking-modal-body {
    flex-grow: 1;
    position: relative;
    background: #ffffff;
}

.booking-modal-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    background: #ffffff;
    z-index: 2;
    color: var(--primary-teal);
}

.booking-modal-loader i {
    font-size: 40px;
}

.booking-modal-loader span {
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    color: var(--text-muted);
}

.booking-modal-body iframe {
    width: 100%;
    height: 100%;
    border: none;
    z-index: 1;
    opacity: 0;
}

/* ==========================================================================
   Corrections & Premium Section Styles (Summer 2026 Updates)
   ========================================================================== */

/* --- Funny Section Introductions --- */
.section-intro-funny {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.6;
    border-left: 3px solid var(--accent-orange);
    padding-left: 15px;
    text-align: left;
}

/* --- Inline Alliance Réseaux Widgets --- */
.widget-dispo-integrated {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px;
    margin-top: 15px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

/* --- Webcam Sidebar Block --- */
.webcam-sidebar-block {
    margin-bottom: 5px;
}

.webcam-sidebar-block .webcam-btn {
    transition: var(--transition-smooth) !important;
    border: none !important;
    box-shadow: 0 4px 10px rgba(2, 132, 199, 0.2) !important;
    background-color: var(--accent-blue) !important;
    color: var(--white) !important;
    cursor: pointer;
}

.webcam-sidebar-block .webcam-btn:hover {
    transform: translateY(-2px);
    background-color: var(--accent-blue-light) !important;
    box-shadow: 0 6px 15px rgba(2, 132, 199, 0.35) !important;
}

/* --- Tarifs Tabs & Content --- */
.tarif-tab-btn {
    cursor: pointer;
    font-family: 'Quicksand', sans-serif;
    font-weight: bold;
    font-size: 1rem;
    border-radius: 30px;
    transition: var(--transition-smooth);
}

.tarif-tab-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.15);
}

.tarif-tab-btn.active {
    box-shadow: 0 4px 15px rgba(13, 148, 136, 0.3);
}

.tarif-tab-pane {
    animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
    from {
		opacity: 0;
		transform: translateY(10px);
	}
    to {
		opacity: 1;
		transform: translateY(0);
	}
}

.tarif-table {
    box-shadow: var(--card-shadow);
    border-radius: 8px;
    overflow: hidden;
    background: var(--white);
}

.tarif-table th {
    background-color: var(--bg-light);
    color: var(--primary-forest);
    font-weight: 700;
    padding: 12px 10px;
    border-bottom: 2px solid #ddd;
}

.tarif-table tr:hover {
    background-color: rgba(2, 132, 199, 0.02);
}

.pass-card {
    transition: var(--transition-smooth);
    box-shadow: var(--card-shadow);
}

.pass-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.pass-card.highlighted:hover {
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.2);
}

.pass-features li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

/* --- Contact Form Styling --- */
.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-teal) !important;
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.15) !important;
}

.contact-form input, .contact-form textarea {
    transition: var(--transition-fast);
}

.contact-success-msg {
    animation: fadeIn 0.4s ease-in-out;
}

/* --- Cookie Banner --- */
.cookie-banner {
    display: flex;
    flex-direction: column;
}

@keyframes slideUp {
    from {
		transform: translate(-50%, 100px);
		opacity: 0;
	}
    to {
		transform: translate(-50%, 0);
		opacity: 1;
	}
}

.cookie-banner.fade-out {
    animation: slideDown 0.4s ease-in forwards;
}

@keyframes slideDown {
    from {
		transform: translate(-50%, 0);
		opacity: 1;
	}
    to {
		transform: translate(-50%, 100px);
		opacity: 0;
	}
}

/* --- Back to Top --- */
.back-to-top.visible {
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: scale(1);
}

.back-to-top:hover {
    background-color: var(--accent-orange) !important;
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(249, 115, 22, 0.3) !important;
}


/* ==========================================================================
   DESIGN CROIX DE BAUZON — Inspiré de la charte graphique officielle
   Couleurs : Vert forêt #1a5c3a, Doré #e8a020, Blanc, Bleu ciel dégradé
   ========================================================================== */

/* --- Palette charte officielle --- */
:root {
    --bauzon-forest:   #1a5c3a;
    --bauzon-forest-dk:#0f3d26;
    --bauzon-green:    #2d7a4f;
    --bauzon-gold:     #e8a020;
    --bauzon-gold-dk:  #c47d0e;
    --bauzon-sky:      #d0eef7;
    --bauzon-sky-dk:   #a8d8ea;
    --bauzon-white:    #ffffff;
}

/* --- HEADER : bande vert forêt en bas, fond blanc propre --- */
.main-header {
    background-color: rgba(255,255,255,0.97) !important;
    border-bottom: 4px solid var(--bauzon-forest) !important;
    box-shadow: 0 2px 20px rgba(26,92,58,0.08) !important;
}

/* Logo principal : réglé dans la règle unifiée ci-dessous */

/* Navigation : pills style panneau station dorés/verts */
.main-nav a {
    font-family: 'Quicksand', sans-serif !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    color: var(--bauzon-forest) !important;
    background: rgba(26,92,58,0.07);
    border-radius: 30px;
    padding: 7px 16px;
    border: 1.5px solid transparent;
    transition: all 0.25s ease;
    letter-spacing: 0.3px;
}
.main-nav a:hover {
    background: var(--bauzon-forest) !important;
    color: #fff !important;
    border-color: var(--bauzon-forest);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(26,92,58,0.2);
}

/* Slogan : doré comme la charte */
.slogan-text {
    color: var(--bauzon-gold) !important;
    font-size: 1.1rem !important;
    font-weight: 800 !important;
    white-space: nowrap !important;
    letter-spacing: 0.3px;
}

/* --- HERO : dégradé vert forêt profond → transparent sur photo --- */
.hero-section {
    background-image:
        linear-gradient(160deg, rgba(15,61,38,0.75) 0%, rgba(10,25,47,0.55) 60%, rgba(10,25,47,0.82) 100%),
        url('assets/20260613-_MG_1805.jpg') !important;
}

/* Badge altitude style pill doré */
.hero-badge {
    background: rgba(232,160,32,0.18) !important;
    color: var(--bauzon-gold) !important;
    border-color: rgba(232,160,32,0.35) !important;
    font-weight: 800 !important;
}

/* Titre héro : blanc pur, très grand */
.hero-title {
    font-size: 2.6rem !important;
    font-weight: 800 !important;
    color: #fff !important;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

/* Sous-titre altitude : doré */
.hero-subtitle {
    color: var(--bauzon-gold) !important;
    font-weight: 700 !important;
}

/* Bouton principal : doré comme les pills du panneau */
.btn-primary {
    background: var(--bauzon-gold) !important;
    color: #fff !important;
    box-shadow: 0 4px 16px rgba(232,160,32,0.35) !important;
    font-weight: 800 !important;
}
.btn-primary:hover {
    background: var(--bauzon-gold-dk) !important;
    box-shadow: 0 6px 20px rgba(232,160,32,0.5) !important;
}

/* --- SECTION ACTIVITÉS : fond dégradé bleu ciel très léger --- */
.main-content-section {
    background: linear-gradient(180deg, #eaf6fb 0%, #ffffff 100%) !important;
}

/* Titre section : vert forêt + soulignement doré */
.content-title {
    color: var(--bauzon-forest) !important;
    font-size: 2.2rem !important;
    font-weight: 800 !important;
}
.content-title::after {
    background-color: var(--bauzon-gold) !important;
    width: 70px !important;
    height: 4px !important;
}

/* Badges activités : style pills charte officielle */
.badge-sensations {
	background: var(--bauzon-gold) !important;
	color: #fff !important;
	border-radius: 20px !important;
	padding: 4px 12px !important;
	font-weight: 800 !important;
}
.badge-adventure  {
	background: var(--bauzon-forest) !important;
	color: #fff !important;
	border-radius: 20px !important;
	padding: 4px 12px !important;
	font-weight: 800 !important;
}
.badge-explore    {
	background: #0284c7 !important;
	color: #fff !important;
	border-radius: 20px !important;
	padding: 4px 12px !important;
	font-weight: 800 !important;
}
.badge-nature     {
	background: var(--bauzon-green) !important;
	color: #fff !important;
	border-radius: 20px !important;
	padding: 4px 12px !important;
	font-weight: 800 !important;
}

/* Cards activités : ombre verte subtile au hover */
.activity-photo-card:hover {
    border-color: rgba(26,92,58,0.2) !important;
    box-shadow: 0 12px 30px rgba(26,92,58,0.12) !important;
}
.activity-photo-card:hover .activity-img {
    transform: scale(1.06) !important;
}

/* Titres cards : vert forêt */
.card-text-content h3 {
    color: var(--bauzon-forest) !important;
}

/* Intro humouristique : bordure dorée */
.section-intro-funny {
    border-left-color: var(--bauzon-gold) !important;
    background: rgba(232,160,32,0.04);
    border-radius: 0 8px 8px 0;
    padding: 12px 15px !important;
}

/* --- SIDEBAR MÉTÉO : tons bleu ciel charte --- */
.heatwave-card {
    background: linear-gradient(135deg, #eaf6fb, #d0eef7) !important;
    border-color: rgba(2,132,199,0.15) !important;
}
.weather-box.station {
    border-left-color: var(--bauzon-forest) !important;
}

/* --- ONGLETS TARIFS : style pills doré/vert --- */
.tarif-tab-btn {
    font-family: 'Quicksand', sans-serif !important;
    font-weight: 700 !important;
    border-radius: 30px !important;
    font-size: 15px !important;
    transition: all 0.25s ease !important;
}
.tarif-tab-btn.active {
    background: var(--bauzon-forest) !important;
    border-color: var(--bauzon-forest) !important;
    color: #fff !important;
    box-shadow: 0 4px 16px rgba(26,92,58,0.25) !important;
}
.tarif-tab-btn:not(.active) {
    background: transparent !important;
    color: var(--bauzon-forest) !important;
    border-color: var(--bauzon-forest) !important;
}
.tarif-tab-btn:not(.active):hover {
    background: rgba(26,92,58,0.08) !important;
    transform: translateY(-1px);
}

/* Titres colonnes tarifs */
.tarif-category h3 {
    color: var(--bauzon-forest) !important;
    border-bottom-color: rgba(232,160,32,0.3) !important;
}

/* Prix tarifs : vert forêt */
.tarif-table td[style*="var(--primary-teal)"] {
    color: var(--bauzon-forest) !important;
}

/* Pass cards : hover vert */
.pass-card:hover {
    border-color: rgba(26,92,58,0.3) !important;
    box-shadow: 0 10px 25px rgba(26,92,58,0.12) !important;
}

/* Prix pass : doré */
.pass-card div[style*="accent-orange"] {
    color: var(--bauzon-gold) !important;
}

/* --- SECTION HÉBERGEMENTS : fond légèrement teinté --- */
.accommodation-section {
    background: linear-gradient(180deg, #f0f9f4 0%, #f8f9fa 100%) !important;
}

/* Titre hébergements */
.accommodation-section .content-title,
.accommodation-section h2 {
    color: var(--bauzon-forest) !important;
}

/* Cards hébergements : bordure vert forêt au hover */
.accommodation-card:hover {
    border-color: rgba(26,92,58,0.2);
    box-shadow: 0 8px 25px rgba(26,92,58,0.1) !important;
    transform: translateY(-3px);
    transition: all 0.3s ease;
}
.accommodation-card {
    transition: all 0.3s ease;
}
.accommodation-card h3 {
    color: var(--bauzon-forest) !important;
}

/* Banner info hébergements : vert teinté */
.accommodation-info-banner {
    background: rgba(26,92,58,0.06) !important;
    border-color: rgba(26,92,58,0.15) !important;
}
.accommodation-info-banner i {
    color: var(--bauzon-forest) !important;
}

/* --- TARIFS SECTION : fond blanc avec liseret doré en haut --- */
.tarifs-section {
    border-top: 4px solid var(--bauzon-gold) !important;
}

/* --- CONTACT : titre vert --- */
.contact-section h2,
.contact-section .content-title {
    color: var(--bauzon-forest) !important;
}
.contact-form input:focus, .contact-form textarea:focus {
    border-color: var(--bauzon-forest) !important;
    box-shadow: 0 0 0 3px rgba(26,92,58,0.12) !important;
}
#contact-form button[type="submit"] {
    background: var(--bauzon-gold) !important;
    box-shadow: 0 4px 16px rgba(232,160,32,0.3) !important;
}
#contact-form button[type="submit"]:hover {
    background: var(--bauzon-gold-dk) !important;
}

/* --- FOOTER : vert forêt profond, style panneau --- */
.main-footer {
    background: var(--bauzon-forest-dk) !important;
    border-top: 4px solid var(--bauzon-gold) !important;
}
.footer-title::after {
    background-color: var(--bauzon-gold) !important;
}
.footer-slogan {
    color: var(--bauzon-gold) !important;
}

/* --- Bouton retour haut : doré --- */
#back-to-top {
    background: var(--bauzon-gold) !important;
}
#back-to-top:hover {
    background: var(--bauzon-forest) !important;
}

/* --- Animation point webcam --- */
@keyframes webcamPulse {
    0%, 100% {
		opacity: 1;
		transform: scale(1);
	}
    50% {
		opacity: 0.4;
		transform: scale(0.8);
	}
}

/* --- Séparateur montagne SVG (sapin) entre hero et activités --- */
.forest-divider {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin-top: -2px;
}

/* Accommodation cards image zoom */
.accommodation-card img {
    transition: transform 0.4s ease !important;
}
.accommodation-card:hover img {
    transform: scale(1.03) !important;
}
.accommodation-card {
    overflow: hidden;
}


/* ==========================================================================
   MISE À JOUR DESIGN — Cohérence charte panneau Croix de Bauzon
   ========================================================================== */

/* --- HEADER : hauteur adaptée aux grands logos --- */
.header-container {
    padding: 4px 24px !important;
    align-items: center;
    gap: 16px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

/* --- BOUTON WEBCAM dans le bandeau --- */
.btn-webcam-header {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #1a5c3a;
    color: #fff !important;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 13px;
    padding: 8px 16px;
    border-radius: 30px;
    border: 2px solid rgba(255,255,255,0.2);
    text-decoration: none;
    transition: all 0.25s ease;
    white-space: nowrap;
    box-shadow: 0 3px 10px rgba(26,92,58,0.25);
}
.btn-webcam-header:hover {
    background: #0f3d26;
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(26,92,58,0.35);
}
.webcam-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #f87171;
    display: inline-block;
    animation: webcamPulse 1.5s infinite;
    flex-shrink: 0;
}

/* --- HERO : dégradé forêt encore plus présent --- */
.hero-section {
    padding-bottom: 40px !important;
}

/* Hero title : très grand, impactant */
.hero-title {
    font-size: 2.6rem !important;
    text-shadow: 0 3px 25px rgba(0,0,0,0.4) !important;
    line-height: 1.1 !important;
}
.hero-subtitle {
    font-size: 1.3rem !important;
    letter-spacing: 1.5px !important;
}

/* --- Slogan header : masqué sur petits écrans --- */
@media (max-width: 1100px) {
    .header-slogan {
		display: none;
	}
}
@media (max-width: 860px) {
    .btn-webcam-header {
		display: none;
	}
    .hero-title {
		font-size: 2.8rem !important;
	}
}

/* ==========================================================================
   NOUVELLES SECTIONS — 3 raisons, témoignages, infos tyrolienne, restauration
   ========================================================================== */

/* --- SECTION 3 RAISONS --- */
.raisons-section {
    background: linear-gradient(180deg, #ffffff 0%, #f0f9f4 100%);
    padding: 70px 0 60px;
    border-bottom: 1px solid rgba(26,92,58,0.08);
}
.raisons-header {
    text-align: center;
    margin-bottom: 50px;
}
.raisons-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--bauzon-forest);
    margin: 12px 0 8px;
}
.raisons-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-style: italic;
}
.raisons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.raison-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 28px 32px;
    box-shadow: 0 8px 30px rgba(26,92,58,0.08);
    border: 1.5px solid rgba(26,92,58,0.08);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.raison-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(26,92,58,0.14);
}
.raison-card::before {
    content: '';
    position: absolute;
    top: 0;
	left: 0;
	right: 0;
    height: 4px;
}
.raison-fraicheur::before  {
	background: linear-gradient(90deg, #0284c7, #38bdf8);
}
.raison-tyrolienne::before {
	background: linear-gradient(90deg, #e8a020, #f59e0b);
}
.raison-tanargue::before   {
	background: linear-gradient(90deg, #1a5c3a, #2d7a4f);
}

.raison-icon {
    width: 60px;
	height: 60px;
    border-radius: 16px;
    display: flex;
	align-items: center;
	justify-content: center;
    font-size: 26px;
    margin-bottom: 16px;
}
.raison-fraicheur  .raison-icon {
	background: rgba(2,132,199,0.1);
	color: #0284c7;
}
.raison-tyrolienne .raison-icon {
	background: rgba(232,160,32,0.12);
	color: #e8a020;
}
.raison-tanargue   .raison-icon {
	background: rgba(26,92,58,0.1);
	color: #1a5c3a;
}

.raison-temp-badge {
    display: inline-block;
    font-family: 'Quicksand', sans-serif;
    font-weight: 800;
    font-size: 13px;
    padding: 4px 14px;
    border-radius: 30px;
    background: rgba(2,132,199,0.1);
    color: #0284c7;
    margin-bottom: 14px;
    letter-spacing: 0.3px;
}
.raison-badge-gold  {
	background: rgba(232,160,32,0.12) !important;
	color: #c47d0e !important;
}
.raison-badge-green {
	background: rgba(26,92,58,0.1) !important;
	color: #1a5c3a !important;
}

.raison-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--bauzon-forest);
    margin-bottom: 12px;
}
.raison-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* --- INFOS PRATIQUES TYROLIENNE --- */
.activity-card-featured {
    border: 2px solid rgba(232,160,32,0.3) !important;
    box-shadow: 0 8px 25px rgba(232,160,32,0.12) !important;
}
.activity-card-featured:hover {
    border-color: rgba(232,160,32,0.6) !important;
}
.featured-tag {
    font-size: 0.75rem;
    font-weight: 700;
    background: var(--bauzon-gold);
    color: #fff;
    padding: 2px 10px;
    border-radius: 20px;
    margin-left: 6px;
    vertical-align: middle;
}
.card-resa-btn {
    position: absolute;
    bottom: 12px;
	right: 12px;
    background: var(--bauzon-gold);
    color: #fff !important;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 12px;
    padding: 6px 14px;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 3px 10px rgba(232,160,32,0.3);
}
.card-resa-btn:hover {
    background: #c47d0e;
    transform: translateY(-1px);
}
.zipline-infos {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}
.zipline-infos span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    font-weight: 600;
    background: rgba(26,92,58,0.07);
    color: var(--bauzon-forest);
    padding: 4px 10px;
    border-radius: 20px;
}
.zipline-infos .info-warning {
    background: rgba(239,68,68,0.08);
    color: #dc2626;
}

/* --- SECTION TÉMOIGNAGES --- */
.temoignages-section {
    background: linear-gradient(180deg, #f0f9f4 0%, #e8f5ed 100%);
    padding: 70px 0;
}
.temoignages-header {
    text-align: center;
    margin-bottom: 50px;
}
.temoignages-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--bauzon-forest);
    margin-top: 12px;
}
.temoignages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.temoignage-card {
    background: #fff;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 6px 24px rgba(26,92,58,0.08);
    border: 1.5px solid rgba(26,92,58,0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}
.temoignage-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(26,92,58,0.12);
}
.temoignage-card::before {
    content: '"';
    position: absolute;
    top: 16px;
	left: 20px;
    font-size: 60px;
    color: rgba(232,160,32,0.15);
    font-family: Georgia, serif;
    line-height: 1;
}
.temoignage-stars {
    color: var(--bauzon-gold);
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 14px;
}
.temoignage-text {
    font-size: 0.97rem;
    color: #374151;
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 20px;
}
.temoignage-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid rgba(0,0,0,0.06);
    padding-top: 16px;
}
.temoignage-avatar {
    width: 42px;
	height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bauzon-forest), var(--bauzon-green));
    color: #fff;
    display: flex;
	align-items: center;
	justify-content: center;
    font-family: 'Quicksand', sans-serif;
    font-weight: 800;
    font-size: 16px;
    flex-shrink: 0;
}
.temoignage-author strong {
    display: block;
    font-size: 0.95rem;
    color: var(--bauzon-forest);
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
}
.temoignage-author span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* --- RESPONSIVE nouvelles sections --- */
@media (max-width: 900px) {
    .raisons-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
    .temoignages-grid {
		grid-template-columns: 1fr;
	}
    .raisons-title, .temoignages-title {
		font-size: 1.8rem;
	}
}
@media (max-width: 600px) {
    .raison-card {
		padding: 26px 20px;
	}
    .zipline-infos span {
		font-size: 0.72rem;
	}
}


/* ==========================================================================
   AJOUTS — Restauration inline, Accès, Logos très grands
   ========================================================================== */

/* === LOGO PRINCIPAL — en gros, à gauche du header === */
.logo-img {
    max-height: 110px !important;
    height: 110px !important;
    width: auto !important;
}
.logo-departement {
    max-height: 85px !important;
    height: 85px !important;
    width: auto !important;
}

/* --- Restauration inline sous les activités --- */
.resto-inline-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: linear-gradient(135deg, #fff8ed, #fffdf5);
    border: 1.5px solid rgba(232,160,32,0.25);
    border-radius: 14px;
    padding: 20px 22px;
    margin-top: 24px;
    box-shadow: 0 4px 15px rgba(232,160,32,0.08);
}
.resto-inline-icon {
    width: 46px;
	height: 46px;
    background: rgba(232,160,32,0.15);
    border-radius: 12px;
    display: flex;
	align-items: center;
	justify-content: center;
    color: #e8a020;
    font-size: 20px;
    flex-shrink: 0;
}
.resto-inline-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--bauzon-forest);
    margin-bottom: 5px;
    font-family: 'Quicksand', sans-serif;
}
.resto-inline-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* --- Carte d'accès dans la sidebar --- */
.acces-card {
    background: #fff;
    border: 1.5px solid rgba(26,92,58,0.1);
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: 0 4px 14px rgba(26,92,58,0.06);
}
.acces-title {
    font-size: 1rem;
    color: var(--bauzon-forest);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
}
.acces-title i {
	color: var(--bauzon-gold);
}

.acces-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 14px;
}
.acces-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.acces-list li > i {
    color: var(--bauzon-gold);
    margin-top: 3px;
    flex-shrink: 0;
    font-size: 13px;
}
.acces-list li > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.acces-list strong {
    font-size: 0.9rem;
    color: var(--bauzon-forest);
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
}
.acces-list span {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
}
.acces-adresse {
    font-size: 0.82rem;
    color: var(--text-muted);
    border-top: 1px solid rgba(0,0,0,0.06);
    padding-top: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.acces-adresse i {
	color: var(--bauzon-forest);
}



/* ==========================================================================
   CORRECTIONS RESPONSIVE — Mobile-first fixes
   ========================================================================== */

/* --- 1. HEADER : navigation débordante sur mobile --- */
@media (max-width: 860px) {
    .header-container {
        flex-wrap: wrap;
        padding: 8px 16px !important;
        min-height: auto;
        gap: 8px;
    }

    .main-nav {
        order: 3;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 6px;
        margin-right: 0;
    }

    .main-nav a {
        font-size: 12px !important;
        padding: 6px 12px !important;
    }

    .header-right {
        gap: 8px;
    }

    .logo-img {
        max-height: 70px !important;
        height: 70px !important;
    }

    .logo-departement {
        max-height: 58px !important;
        height: 58px !important;
    }
}

@media (max-width: 600px) {
    .logo-img {
        max-height: 56px !important;
        height: 56px !important;
    }
}

/* --- 2. HERO : padding-top trop petit quand nav se replie sur 2 lignes --- */
@media (max-width: 860px) {
    .hero-section {
        padding-top: 210px;
    }
}
@media (max-width: 600px) {
    .hero-section {
        padding-top: 230px;
    }
    .hero-title {
        font-size: 2rem !important;
    }
    .hero-subtitle {
        font-size: 1.05rem !important;
    }
    .hero-description {
        font-size: 0.98rem;
    }
}

/* --- 4. SECTION ACTIVITIES : grid 2 colonnes trop étroite sur mobile --- */
@media (max-width: 480px) {
    .activities-photos-grid {
        grid-template-columns: 1fr;
    }
    .card-img-wrapper {
        height: 200px;
    }
}

/* --- 5. SIDEBAR MÉTÉO : webcam iframe ne se redimensionne pas --- */
.webcam-sidebar-block iframe {
    max-width: 100%;
}
@media (max-width: 900px) {
    .webcam-sidebar-block iframe {
        height: 180px;
    }
}

/* --- 6. SECTION 3 RAISONS : cards trop étroites sur 480px-768px --- */
@media (max-width: 768px) and (min-width: 481px) {
    .raisons-grid {
        grid-template-columns: 1fr 1fr;
    }
    .raison-card:last-child {
        grid-column: 1 / -1;
        max-width: 480px;
        margin: 0 auto;
        width: 100%;
    }
}

/* --- 7. TÉMOIGNAGES : éviter le débordement du texte "guillemet" décoratif --- */
@media (max-width: 480px) {
    .temoignage-card {
        padding: 20px 18px;
    }
    .temoignage-card::before {
        font-size: 40px;
        top: 12px;
        left: 14px;
    }
    .temoignage-text {
        font-size: 0.9rem;
    }
}

/* --- 8. TARIFS : tableaux multi-colonnes débordent sur mobile --- */
.tarif-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
@media (max-width: 600px) {
    .pass-cards-grid {
        grid-template-columns: 1fr !important;
    }
    .tarif-tab-btn {
        font-size: 13px !important;
        padding: 10px 16px !important;
    }
}

/* --- 10. COOKIE BANNER : boutons qui débordent sur mobile --- */
@media (max-width: 480px) {
    #cookie-banner .cookie-banner-actions {
        flex-direction: column;
        align-items: stretch;
    }
    #cookie-banner .btn {
        text-align: center;
        width: 100%;
    }
    #cookie-reject {
        text-align: center;
    }
}

/* --- 11. MODAL RÉSERVATION : trop haute sur petits écrans --- */
@media (max-width: 600px) {
    .booking-modal-container {
        width: 95%;
        height: 90%;
        border-radius: var(--radius-sm);
    }
}

/* --- 12. FOOTER : texte légal trop dense sur mobile --- */
@media (max-width: 480px) {
    .main-footer {
        padding: 50px 16px 20px;
    }
    .footer-logo {
        max-height: 80px !important;
        height: auto !important;
    }
    .copyright {
        font-size: 0.78rem;
        line-height: 1.5;
    }
}

/* --- 13. IMAGES HÉBERGEMENTS : hauteur fixe mal gérée sur petits écrans --- */
@media (max-width: 480px) {
    .accommodation-card img {
        height: 180px !important;
    }
}

/* --- 14. SECTION CONTENT : padding trop grand sur mobile --- */
@media (max-width: 480px) {
    .section-container {
        padding: 40px 16px;
    }
}

/* --- 15. RESTO INLINE : flex qui se casse sur très petit écran --- */
@media (max-width: 400px) {
    .resto-inline-card {
        flex-direction: column;
    }
}
