/* Général */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    background: #f9f9f9;
    position: relative;
    color: #333;
}

.background {
    background: url('background.jpg') no-repeat center center/cover;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    filter: brightness(0.65);
}

header {
    text-align: center;
    padding: 20px 10px;
    color: white;
    background: rgba(52, 73, 94, 0.7);
    width: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.title-container {
    margin-bottom: 10px;
}

.title {
    font-size: 28px;
    font-weight: bold;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

.disclaimer {
    font-size: 14px;
    font-style: italic;
    color: #ffd700;
}

main {
    width: 90%;
    max-width: 900px;
    margin: 20px auto;
    z-index: 2;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    }
    .info-tarifs-container {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: space-between;
        width: 100%;
    }
    
    .info-section, .tarifs-section {
        flex: 1;
        min-width: 300px;
        max-width: 48%; /* Ajuste l'espacement entre les deux blocs */
        background: white;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        text-align: center;
    }
    
    /* Responsive Design */
    @media screen and (max-width: 768px) {
        .info-section, .tarifs-section {
            max-width: 100%;
        }
    
        .info-tarifs-container {
            flex-direction: column;
        }
    }
/* Blocs d'informations */
.info-section, .tarifs-section, .email-capture {
    background: white;
    padding: 20px;
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.info-section h2, .tarifs-section h2, .email-capture h2 {
    color: #3498db;
    margin-bottom: 15px;
    font-size: 20px;
}

.tarifs-section ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.tarifs-section ul li {
    margin: 10px 0;
    font-size: 16px;
}

.email-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.email-form input {
    padding: 10px;
    font-size: 14px;
    width: 70%;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.email-form input:focus {
    outline: none;
    border-color: #3498db;
}

.email-form button {
    padding: 10px 15px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s;
}

.email-form button:hover {
    background: #2980b9;
}

/* Réservation */
.booking-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.tab-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.tab {
    flex: 1;
    padding: 10px 15px;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    background: #eee;
    border-radius: 5px;
    transition: background 0.3s;
    margin: 0 5px;
}

.tab.active {
    background: #3498db;
    color: white;
}

.tab:hover {
    background: #2980b9;
    color: white;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-group {
    flex: 1;
    text-align: left;
}

label {
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

input, select {
    width: 90%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-top: 5px;
}

input:focus, select:focus {
    border-color: #3498db;
    outline: none;
}

button.btn-submit {
    background: #3498db;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

button.btn-submit:hover {
    background: #2980b9;
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 30px;
    width: 100%;
}

footer p {
    margin: 0;
    font-size: 14px;
}

footer .social-links {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

footer .social-links a {
    color: white;
    font-size: 18px;
    transition: color 0.3s;
}

footer .social-links a:hover {
    color: #3498db;
}
