/* --- HEADER & NAVIGATION --- */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #fffaea;
    margin: 0;
    color: #1a1a1a;
    line-height: 1.6;
}

/* --- HEADER --- */
header {
    background: linear-gradient(135deg, #941818, #5e0202);
    color: white;
    padding: 40px 5%;
    text-align: center;
    border-bottom: 10px solid #d4af37;
}

.logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid #d4af37;
    transition: transform 0.5s;
    object-fit: cover;
    margin-bottom: 10px;
}

.logo:hover { 
    transform: rotate(360deg); /* Animation  */
} 

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 25px;
    padding: 20px 0;
}

nav a {
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

nav a:hover { 
    color: gold; 
}

/* --- STRUCTURE PRINCIPALE (Utilisation de l'espace) --- */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.menu-section {
    margin-bottom: 60px;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    color: #b8860b;
    margin-bottom: 30px;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #d4af37;
    margin: 10px auto;
}



/* --- FORMULAIRES DE RÉSERVATION (Design sans tableaux) --- */
.form-container {
    display: flex;
    justify-content: center;
    padding: 20px;
}

.reservation-form {
    background: white;
    width: 100%;
    max-width: 700px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 30px;
}

fieldset {
    border: 2px solid #d4af37;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

legend {
    font-weight: bold;
    color: #941818;
    padding: 0 15px;
    font-size: 1.3rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
    margin-bottom: 15px;
}

.form-group label {
    margin-bottom: 5px;
    font-weight: bold;
    color: #5e0202;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

/* Alignement côte à côte pour Date/Heure */
.form-group-row {
    display: flex;
    gap: 20px;
}

.form-group-row .form-group {
    flex: 1;
}

/* --- BOUTONS --- */
.form-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.btn-link {
    display: inline-block;
    padding: 12px 30px;
    background-color: #b8860b;
    color: white;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.btn-link:hover {
    background-color: #1a1a1a;
}

.btn-secondary {
    padding: 12px 30px;
    background-color: #666;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

/* --- FOOTER & RETOUR EN HAUT --- */
footer {
    background: #1a1a1a;
    color: #888;
    padding: 50px;
    text-align: center;
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #d4af37;
    color: black;
    padding: 10px 15px;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
