@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=Lato:wght@300;400;600&family=Cormorant+Garamond:wght@300;400&display=swap');

/* ====================================
   VARIABLES ET STYLES GLOBAUX
   ==================================== */

:root {
    --primary-color: #82291A;
    --secondary-color: #82291A;
    --accent-color: #D4A574;
    --dark-bg: #2c3e50;
    --light-bg: #f9f5f0;
    --text-dark: #4A4A4A;
    --text-light: #666;
    --border-color: #ddd;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    padding-top: 70px; /* compense la navbar fixed */
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', 'Georgia', serif;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    color: var(--primary-color);
}

h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* ====================================
   NAVIGATION
   ==================================== */

.navbar {
    background: white;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Page transition veil — sits below navbar */
#page-veil {
    position: fixed;
    inset: 0;
    background: #ffffff;
    z-index: 8000;
    opacity: 1;
    pointer-events: none;
    transition: opacity 0.25s ease;
}
#page-veil.veil-hidden {
    opacity: 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--secondary-color);
    font-family: 'Georgia', serif;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* Menu déroulant Gîtes */
.nav-gites {
    position: relative;
}

.nav-gites::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 0.5rem;
    pointer-events: auto;
}

.nav-gites a i {
    font-size: 0.65rem;
    margin-left: 0.3rem;
    transition: var(--transition);
}

.gites-submenu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    background: white;
    list-style: none;
    padding: 0.5rem 0;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    min-width: 220px;
    z-index: 999;
    margin: 0;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.gites-submenu li {
    margin: 0;
    padding: 0;
}

.nav-gites:hover .gites-submenu {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.nav-gites:hover a i {
    transform: rotate(180deg);
}

.gites-submenu li a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.gites-submenu li a:hover {
    background: var(--light-bg);
    color: var(--primary-color);
    padding-left: 2rem;
}

.nav-gites:hover a i {
    transform: rotate(180deg);
}

.btn-reserve {
    background: var(--primary-color);
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn-reserve:hover {
    background: #6a1f14;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(130, 41, 26, 0.2);
}

.btn-reserve:focus-visible {
    outline: 3px solid var(--accent-color);
    outline-offset: 3px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 5px 0;
    transition: var(--transition);
}

/* ====================================
   BOUTONS
   ==================================== */

.btn {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: #6a1f14;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(130, 41, 26, 0.3);
}

.btn-secondary {
    background: var(--primary-color);
    color: white;
}

.btn-secondary:hover {
    background: #6a1f14;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(130, 41, 26, 0.3);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: var(--primary-color);
}

.btn-link {
    background: none;
    color: var(--primary-color);
    border: none;
    padding: 0.5rem 0;
    text-decoration: underline;
    cursor: pointer;
    font-weight: 600;
}

.btn-link:hover {
    color: var(--primary-color);
    opacity: 0.8;
}

/* Focus states — accessibilité clavier (WCAG AA) */
.btn:focus-visible,
.btn-primary:focus-visible,
.btn-secondary:focus-visible,
.btn-outline:focus-visible,
.btn-link:focus-visible {
    outline: 3px solid var(--accent-color);
    outline-offset: 3px;
}

a:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    border-radius: 2px;
}

/* Reduction de mouvement — accessibilité */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ====================================
   HERO SECTION
   ==================================== */

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #3d0f0a, var(--primary-color));
    animation: zoomIn 1s ease-out;
}

.hero-home {
    background: url('../images/chateau-hero.jpg') center/cover no-repeat;
    align-items: flex-end;
}

.hero-home::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.52) 0%, transparent 100%);
    z-index: 1;
}

.hero-home .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-bottom: 4rem;
    max-width: 100%;
}

.hero-home h1 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 300;
    font-size: 2.8rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.95);
    text-shadow: 0 1px 20px rgba(0,0,0,0.25);
    margin-bottom: 0;
    white-space: nowrap;
}

@keyframes zoomIn {
    from {
        transform: scale(0.95);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    animation: slideUp 0.8s ease-out 0.2s both;
}

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

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 800px;
}

/* ====================================
   FEATURED GALLERY
   ==================================== */

.featured-gallery {
    padding: 4rem 0;
    background: var(--light-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
    animation: fadeInUp 0.6s ease-out;
}

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

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

/* ====================================
   CTA SECTION
   ==================================== */

.cta-section {
    background: linear-gradient(135deg, #3d0f0a, var(--primary-color));
    color: white;
    padding: 4rem 0;
    text-align: center;
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.cta-section h2 {
    color: white;
    font-size: 2.5rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255,255,255,0.9);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ====================================
   GITES PREVIEW/DETAIL
   ==================================== */

.gites-preview {
    padding: 4rem 0;
}

.gites-intro-text {
    font-family: 'Lato', sans-serif;
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.85;
    max-width: 760px;
    margin-bottom: 2.5rem;
    border-left: 3px solid var(--primary-color);
    padding-left: 1.2rem;
    text-align: justify;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 700px;
}

.gites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gite-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.gite-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.gite-card img {
    width: 100%;
    height: clamp(200px, 24vw, 250px);
    object-fit: cover;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gite-card:hover img {
    transform: scale(1.08);
    filter: brightness(1.05);
}

.gite-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
}

.gite-card p {
    padding: 0 1.5rem;
}

.gite-features {
    display: flex;
    gap: 1rem;
    padding: 1rem 1.5rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
}

.gite-features span {
    background: var(--light-bg);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: var(--text-dark);
}

.gite-card .btn {
    margin: 1.5rem;
    margin-top: auto;
    width: calc(100% - 3rem);
}

/* ====================================
   HISTORIQUE SECTION (Accueil)
   ==================================== */

.historique-section {
    padding: 5.5rem 0;
    background: #f9f5f0;
    overflow: hidden;
}

.historique-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.historique-img-wrap {
    position: relative;
}
.historique-img-wrap::before {
    content: '';
    position: absolute;
    inset: -14px -14px 14px 14px;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    opacity: 0.3;
    pointer-events: none;
}
.historique-img-wrap img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 14px 44px rgba(0,0,0,0.14);
    filter: sepia(15%) contrast(1.04);
    display: block;
    position: relative;
    z-index: 1;
}

.historique-eyebrow {
    display: inline-block;
    font-family: 'Lato', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.historique-section h2 {
    font-family: 'Georgia', serif;
    font-size: 2rem;
    color: #2e2e2e;
    margin-bottom: 1.2rem;
    line-height: 1.25;
}

.historique-rule {
    width: 36px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
    margin-bottom: 1.3rem;
}

.historique-section p {
    font-family: 'Georgia', serif;
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.85;
    color: #5a5047;
    margin-bottom: 0;
}

.historique-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-top: 2rem;
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    padding-bottom: 3px;
    transition: opacity 0.2s, gap 0.2s;
}
.historique-link:hover { opacity: 0.7; gap: 0.85rem; }

@media (max-width: 860px) {
    .historique-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .historique-img-wrap::before { display: none; }
}

/* ====================================
   PAGE HEADER
   ==================================== */

.page-header {
    background: linear-gradient(135deg, #3d0f0a, var(--primary-color));
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.page-header.region-hero {
    position: relative;
    height: 70vh;
    min-height: 400px;
    background: url('../images/iStock-507004249.jpg') center/cover no-repeat;
    padding: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.page-header.region-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 55%;
    background: linear-gradient(to top, rgba(0,0,0,0.58) 0%, transparent 100%);
    z-index: 1;
}

.page-header.region-hero .hero-label {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-bottom: 3.5rem;
    width: 100%;
}

.page-header.region-hero h1 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 300;
    font-size: 2.8rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.95);
    text-shadow: 0 1px 20px rgba(0,0,0,0.3);
    margin-bottom: 0.4rem;
}

.page-header.region-hero p {
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
    letter-spacing: 0.08em;
    margin: 0;
}

.page-header h1 {
    color: white;
}

.page-header p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ====================================
   REGION & ACTIVITIES
   ==================================== */

.region-preview,
.region-content {
    padding: 4rem 0;
}

.activities-grid,
.attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.activity-card {
    position: relative;
    height: 380px;
    border-radius: 10px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.18);
    transition: var(--transition);
    cursor: pointer;
}

.activity-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 35px rgba(0,0,0,0.25);
}

.activity-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem 2rem 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 100%);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.activity-card h3,
.activity-card-overlay h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 400;
    font-size: 1.6rem;
    color: white;
    margin-bottom: 0;
    padding: 0;
    text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

.activity-card p,
.activity-card-overlay p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.88);
    margin-bottom: 0.5rem;
    padding: 0;
    line-height: 1.5;
}

.activity-card .btn-link,
.activity-card-overlay .btn-link {
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255,255,255,0.6);
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    padding: 0 0 2px 0;
    cursor: pointer;
    transition: var(--transition);
}

.activity-card .btn-link:hover,
.activity-card-overlay .btn-link:hover {
    border-bottom-color: white;
    color: white;
}

/* ====================================
   EXPERIENCES & ACTIVITIES
   ==================================== */

/* ====================================
   TESTIMONIALS
   ==================================== */

.testimonials {
    background: white;
    padding: 4rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.stars {
    color: #ffc107;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
}

.author {
    font-weight: 600;
    color: var(--primary-color);
}

/* ====================================
   CONTACT SECTION
   ==================================== */

.contact-section {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(168, 60, 60, 0.2);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-form .btn {
    width: 100%;
    margin-top: 1rem;
}

.contact-info-wrapper {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.info-block {
    margin-bottom: 2rem;
}

.info-block h3 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.info-block p {
    margin-bottom: 0.5rem;
}

.info-block a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.info-block a:hover {
    text-decoration: underline;
}

.hours {
    background: var(--light-bg);
    padding: 1rem;
    border-radius: 4px;
}

.hour-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.hour-row:last-child {
    border-bottom: none;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    transition: var(--transition);
    text-decoration: none;
}

.social-btn:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* ====================================
   MAP SECTION
   ==================================== */

.map-section {
    padding: 4rem 0;
    background: var(--light-bg);
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* ====================================
   NEWSLETTER FORM
   ==================================== */

.newsletter-form {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: wrap;
}

.newsletter-input {
    flex: 1;
    min-width: 200px;
    padding: 0.75rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(168, 60, 60, 0.2);
}

/* ====================================
   FAQ SECTION
   ==================================== */

.faq-section {
    padding: 4rem 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-left: 4px solid var(--primary-color);
}

.faq-item h3 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

/* ====================================
   FOOTER
   ==================================== */

.footer {
    background: var(--dark-bg);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255,255,255,0.5);
}

/* ====================================
   GALLERY PAGES
   ==================================== */

.full-gallery {
    padding: 4rem 0;
}

.gallery-full {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item-large {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.gallery-item-large img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item-large:hover img {
    transform: scale(1.1);
}

/* ====================================
   RESPONSIVE DESIGN
   ==================================== */

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: white;
        gap: 0;
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu a {
        padding: 1rem;
        display: block;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-home h1 {
        font-size: 1.6rem;
        letter-spacing: 0.2em;
        white-space: normal;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .gites-grid,
    .activities-grid,
    .testimonials-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .page-header p {
        max-width: 95%;
        margin-left: auto;
        margin-right: auto;
    }

}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-home h1 {
        font-size: 1.3rem;
        letter-spacing: 0.15em;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .nav-menu {
        gap: 0;
    }

    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .gites-grid,
    .attractions-grid,
    .activities-grid,
    .testimonials-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item img {
        height: 200px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .contact-form,
    .contact-info-wrapper {
        padding: 1.5rem;
    }
}

.conservation {
    background: white;
    padding: 4rem 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

/* Utilities */
.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 2rem; }
