/* Base */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #333;
    line-height: 1.6;
    background: #fafafa;
}

img {
    max-width: 100%;
    width: 266px;
    height: 200px;
    display: block;
}

a {
    color: #006d77;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

/* Header */

.site-header {
    background: #ffffff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 10;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
}

.site-header h1 {
    margin: 0;
    font-size: 1.5rem;
}

.tagline {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

.main-nav a {
    margin-left: 1rem;
    font-size: 0.95rem;
}

/* Hero */

.hero {
    position: relative;
    background: url("../img/hero.jpg") center/cover no-repeat;
    height: 60vh;
    min-height: 300px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.hero-content {
    position: relative;
    text-align: center;
    padding: 1rem;
}

.hero-content h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.hero-content p {
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

/* Sections */

.section {
    padding: 3rem 0;
    background: #fafafa;
}

.section-alt {
    background: #ffffff;
}

.section h2 {
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-size: 1.7rem;
}

/* Features */

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

.feature {
    background: #fff;
    padding: 1.25rem;
    border-radius: 6px;
    border: 1px solid #eee;
}

/* Gallery */

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

/* Tarifs */

.tarifs-list {
    list-style: none;
    padding: 0;
}

.tarifs-list li {
    margin-bottom: 0.5rem;
}

.info-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666;
}

/* Accès */

.map-wrapper {
    margin-top: 1rem;
    padding: 1rem;
    background: #fff;
    border-radius: 6px;
    border: 1px solid #eee;
}

/* Contact */

.contact-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.contact-list li {
    margin-bottom: 0.4rem;
}

.contact-form {
    max-width: 500px;
}

.form-row {
    margin-bottom: 0.8rem;
}

.form-row label {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.form-row input,
.form-row textarea {
    width: 100%;
    padding: 0.5rem;
    border-radius: 4px;
    border: 1px solid #ccc;
    font: inherit;
}

.btn-primary {
    display: inline-block;
    padding: 0.6rem 1.4rem;
    border-radius: 999px;
    border: none;
    background: #006d77;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
}

.btn-primary:hover {
    background: #005862;
}

/* Footer */

.site-footer {
    background: #111827;
    color: #9ca3af;
    text-align: center;
    padding: 1rem 0;
    font-size: 0.9rem;
}

/* Responsive */

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .main-nav {
        display: flex;
        flex-wrap: wrap;
    }

    .main-nav a {
        margin: 0.25rem 0.5rem 0 0;
    }

    .hero-content h2 {
        font-size: 1.8rem;
    }
}