/* Variables globales */
:root {
    --color-primary: #2c3e50;
    --color-secondary: #34495e;
    --color-accent: #e67e22;
    --color-background: #f5f6fa;
    --color-text: #2c3e50;
    --color-text-light: #7f8c8d;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --border-radius: 4px;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-background);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* Sections communes */
section {
    padding: var(--spacing-lg) 0;
}

h1, h2, h3 {
    margin-bottom: var(--spacing-md);
}

h2 {
    font-size: 2rem;
    text-align: center;
}

/* Boutons */
.btn-primary {
    background-color: var(--color-accent);
    color: white;
    padding: var(--spacing-sm) var(--spacing-md);
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #d35400;
}

/* Widget de réservation */
.booking-widget {
    background-color: white;
    padding: var(--spacing-md);
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
}

.booking-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-sm);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: var(--spacing-xs);
    color: var(--color-text-light);
}

.form-group input,
.form-group select {
    padding: var(--spacing-sm);
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
}

/* Vidéo de présentation */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Témoignages */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

/* Galerie */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-sm);
}

.gallery-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

details {
    margin-bottom: var(--spacing-sm);
    padding: var(--spacing-sm);
    background-color: white;
    border-radius: var(--border-radius);
}

summary {
    cursor: pointer;
    font-weight: bold;
}

details p {
    margin-top: var(--spacing-sm);
    color: var(--color-text-light);
}

/* Carte */
#map {
    height: 400px;
    border-radius: var(--border-radius);
}

/* Newsletter */
.newsletter {
    background-color: var(--color-primary);
    color: white;
    text-align: center;
}

.newsletter-form {
    display: flex;
    gap: var(--spacing-sm);
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: var(--spacing-sm);
    border: none;
    border-radius: var(--border-radius);
}

/* Footer */
footer {
    background-color: var(--color-secondary);
    color: white;
    padding: var(--spacing-lg) 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
}

.footer-section h3 {
    margin-bottom: var(--spacing-sm);
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: white;
    text-decoration: none;
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
}

/* Responsive */
@media (max-width: 768px) {
    .booking-form {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    h2 {
        font-size: 1.5rem;
    }
}