:root {
    --primary-color: #A67C52;
    --primary-hover: #8e6843;
    --text-main: #333333;
    --text-muted: #666666;
    --bg-light: #F9F7F4;
    --card-bg: #ffffff;
    --white: #ffffff;
    --transition-speed: 0.3s;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3 {
    font-weight: 800;
    color: var(--text-main);
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all var(--transition-speed);
    box-shadow: 0 4px 15px rgba(166, 124, 82, 0.4);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(166, 124, 82, 0.6);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('photos/environs_et_activités/IMG_20260101_165033.jpg') no-repeat center center/cover;
}

/* Gallery Section */
.gallery-section {
    padding: 6rem 0;
    background-color: var(--card-bg);
}

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

.gallery-item {
    margin: 0;
    overflow: hidden;
    border-radius: 16px;
    position: relative;
    background-color: var(--white);
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
}

.gallery-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-speed);
}

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

figcaption {
    padding: 1rem;
    font-size: 0.95rem;
    color: var(--text-main);
    font-weight: 600;
    text-align: center;
    background: var(--white);
    position: relative;
    z-index: 2;
}

/* Call to Action Reminder Block within Gallery */
.cta-reminder {
    background-color: var(--primary-color);
    color: var(--white);
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2.5rem;
}

.cta-reminder h3 {
    color: var(--white);
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
}

.cta-reminder p {
    margin-bottom: 1.5rem;
    font-weight: 300;
    font-size: 0.95rem;
}

.cta-reminder .btn-primary {
    background-color: var(--white);
    color: var(--primary-color);
    box-shadow: none;
    font-size: 0.95rem;
    padding: 0.8rem 1.8rem;
}

.cta-reminder .btn-primary:hover {
    background-color: var(--bg-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.cta-reminder.bg-dark {
    background-color: #2c2c2c;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}


.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    padding: 0 1rem;
}

.hero-content h1 {
    color: var(--white);
    font-size: 4rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-content p {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.8);
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background-color: var(--bg-light);
}

.section-heading {
    text-align: center;
    margin-bottom: 4rem;
}

.section-heading p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

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

.feature-card {
    background-color: var(--card-bg);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: transform var(--transition-speed);
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Booking Section */
.booking-section {
    padding: 6rem 0;
    background-color: var(--card-bg);
}

.booking-card {
    background: var(--bg-light);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    text-align: center;
}

.booking-card h2 {
    margin-bottom: 2rem;
}

/* Iframe Container */
.iframe-container {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: var(--card-bg); 
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.02);
}

/* Footer */
footer {
    background-color: #222;
    color: #fff;
    padding: 2rem 0;
    text-align: center;
}

.footer-content p {
    opacity: 0.6;
    font-size: 0.9rem;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-content p {
        font-size: 1.1rem;
    }
    .booking-card {
        padding: 1.5rem;
    }
    h2 {
        font-size: 2rem;
    }
}
