/* Global styles */
body {
    background-image: url('Images/Cinéma_LeSplendid.jpg'); /* Chemin de l'image de fond */
    background-size: cover; /* Redimensionner l'image pour couvrir toute la page */
    background-repeat: no-repeat; /* Ne pas répéter l'image */
    background-attachment: fixed; /* Image fixe lors du défilement */
    color: white;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Header styles */
header {
    background-color: rgba(51, 51, 51, 0.9); /* Transparence pour l'en-tête */
    padding: 10px 0;
}

nav {
    display: flex;
    justify-content: center;
    position: relative;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 18px;
    position: relative;
    padding: 5px 0;
}

nav a:hover {
    color: #f39c12;
}

#indicator {
    height: 4px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

/* Button styles */
a[href*="reservation"] {
    background-color: green;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
}

a[href*="reservation"]:hover {
    background-color: darkgreen;
}

/* Presentation styles */
.Presentation {
    text-align: center;
    padding: 40px 20px;
    background-color: rgba(0, 0, 0, 0.7); /* Fond semi-transparent pour lisibilité */
    margin: 20px auto;
    border-radius: 10px;
    max-width: 800px;
}

.Presentation h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.Presentation p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* Seances styles */
.Seances {
    padding: 40px 20px;
    background-color: rgba(0, 0, 0, 0.7); /* Fond semi-transparent pour lisibilité */
    margin: 20px auto;
    border-radius: 10px;
    max-width: 800px;
}

.Seances h1 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
}

.seance {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    background-color: #222;
    padding: 10px;
    border-radius: 5px;
}

.seance img {
    width: 150px;
    height: auto;
    margin-right: 20px;
    border-radius: 5px;
}

.details {
    display: flex;
    flex-direction: column;
}

.details h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

.heure {
    font-size: 20px;
    margin-bottom: 10px;
}

.synopsis {
    font-size: 16px;
    max-width: 800px;
}

/* Reserver styles */
.Reserver {
    text-align: center;
    margin-top: 20px;
}

.Reserver .btn-large {
    background-color: green;
    color: white;
    padding: 15px 30px;
    font-size: 24px;
    border-radius: 10px;
    text-decoration: none;
}

.Reserver .btn-large:hover {
    background-color: darkgreen;
}
