body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #020617;
    color: white;
}

a { text-decoration: none; 
    color: inherit; 
     }


 header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 30px;
    background: rgba(15, 23, 42, 0.9);
    flex-wrap: wrap;
}
 .header h2 { 
    margin: 0; 
    }


nav{
    display: flex;
    justify-content: end;
    padding-right: 30px;   
}

nav a {
    margin-left: 30px;
    font-weight: bold;
    color: white;
    transition: color 0.3s;
}
nav a:hover {
     color: orange; 
     }

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

    nav { 
        display: flex; 
        flex-direction: column; 
        width: 100%; 
        }
    nav a {
         margin: 5px 0; 
         }
}


.hero {
    height: 70vh;
    background: url('images/salle-de-cinema.webp') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.hero h1 { 
    font-size: 48px;
     margin-bottom: 15px; 
     }

.hero p { 
    font-size: 20px; 
    margin-bottom: 20px; 
    }

.btn { 
    background: orange; 
    padding: 12px 25px;
     border-radius: 20px; 
     font-weight: bold; 
     color: white; 
     }

.btn:hover { 
    background: darkorange; 
    }

@media(max-width:768px){
    .hero { 
        height: 50vh; 
        }
    .hero h1 { 
        font-size: 32px; 
        }
    .hero p { 
        font-size: 16px; 
        }
    .btn { 
        padding: 10px 20px; 
        font-size: 14px; 
        }
}


.bienvenue {
    background-color: #020b1c;
    color: #ffffff;
    padding: 50px 30px;
    line-height: 1.7;
}

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


.bienvenue h4 {
    font-size: 22px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bienvenue h4 span {
    font-size: 20px;
}

.bienvenue p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #d1d5db; 
}

@media (max-width: 768px) {
    .bienvenue {
        padding: 30px 15px;
    }

    .bienvenue h2 {
        font-size: 18px;
    }

    .bienvenue p {
        font-size: 14px;
    }
}


.top-films {
  padding: 50px;
}
.films-row {
  display: flex;
  gap: 80px; 
  overflow-x: auto;
  padding: 10px 0;
}
.films-row img {
  width: 240px;   
  height: 360px;  
  object-fit: cover;
  border-radius: 12px;
  transition: 0.3s;
}
.films-row img:hover {
  transform: scale(1.08);
  
}

@media(max-width:768px){
    .films-row img {
         width: 150px; }
}
  

.films {
  padding: 50px;
}
.cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 20px 10px;
}
.card {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    width: 220px;
    padding: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.card:hover{
    transform: scale(1.1);
}
.card img { 
    width: 100%; 
    height: 180px; 
    object-fit: cover;
     margin-bottom: 10px; 
     }

.card h3 { 
    margin: 10px 0; 
    }

.card p { 
    margin-bottom: 15px; 
    }

.card button {
    background: #f59e0b;
    border: none;
    padding: 10px;
    border-radius: 8px;
    color: white;
    cursor: pointer;
}
.card button:hover { 
    background: #d97706; 
    }

.card:hover { 
    transform: scale(1.05); 
    }

@media(max-width:768px){
    .card { 
        width: 100%; 
        max-width: 100%; 
        }
    .cards-container { 
        padding: 10px; 
        gap: 15px; 
        }
}
   
/* SECTION */
.contact {
    padding: 60px 20px;
}

/* CONTAINER */
.container {
    max-width: 1100px;
    margin: auto;
}

/* TITRES */
.contact h1 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 10px;
}

.subtitle {
    text-align: center;
    color: #ccc;
    margin-bottom: 40px;
}

/* LAYOUT */
.contact-content {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

/* INFOS */
.contact-info {
    flex: 1;
    background: #0f172a;
    padding: 25px;
    border-radius: 10px;
}

.contact-info h2 {
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 15px;
    color: #ddd;
}

/* FORM */
.contact-form {
    flex: 1;
    background: #0f172a;
    padding: 25px;
    border-radius: 10px;
}

.contact-form h2 {
    margin-bottom: 20px;
}

/* INPUTS */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: none;
    border-radius: 6px;
    outline: none;
    background: #1e293b;
    color: white;
}

/* BOUTON */
.contact-form button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 6px;
    background: #f59e0b;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    background: #d97706;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .contact-content {
        flex-direction: column;
    }
}


/* SECTION */
.apropos {
    padding: 60px 20px;
}

/* CONTAINER */
.container {
    max-width: 1100px;
    margin: auto;
}

/* TITRES */
.apropos h1 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 10px;
}

.subtitle {
    text-align: center;
    color: #ccc;
    margin-bottom: 40px;
}

/* HISTOIRE */
.histoire {
    background: #0f172a;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.histoire h2 {
    margin-bottom: 15px;
}

.histoire p {
    margin-bottom: 15px;
    color: #ddd;
    line-height: 1.6;
}

/* EQUIPE */
.equipe h2 {
    margin-bottom: 20px;
}

/* GRID TEAM */
.team {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* MEMBRE */
.membre {
    background: #0f172a;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s;
}

.membre:hover {
    transform: translateY(-5px);
}

/* IMAGE */
.membre img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

/* NOM */
.membre h3 {
    margin-bottom: 5px;
}

/* ROLE */
.role {
    color: #f59e0b;
    font-weight: bold;
    margin-bottom: 10px;
}

/* TEXTE */
.membre p {
    font-size: 14px;
    color: #ccc;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .team {
        grid-template-columns: 1fr;
    }
}


/* LOGIN  */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(to right, #0f172a,#1e1f36);
}
.login-form {
    background: #1e293b;
    padding: 30px;
    border-radius: 10px;
    width: 320px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}
.login-form h2{
    text-align: center;
    margin-bottom: 15px;
}
.login-form input { 
    padding: 15px; 
    border: none; 
    border-radius: 5px; 
    outline: none; 
    }

.options { 
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    font-size: 14px; 
    margin: 15px 0; 
    }

.options input[type=checkbox]{
    accent-color: #f59e0b;
    width: 16px;
    height: 16px;
}

.options a{
    color: #f59e0b;
    text-decoration: none;
    font-weight: 500;
}

.options a:hover{
    text-decoration: underline;
}
button{
    background: #f59e0b;
    border: none;
    padding: 12px;
    border-radius: 5px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition:0.3s;
}

button:hover{
    background: #d97706;
}

.back{
    text-align: center;
    margin-top: 18px;
}

.back a{
    color: #94a3b8;
    text-decoration: none;
    transition: 0.3s;
}

@media(max-width:768px){
    .login-form { 
        width: 75%; }
}


/*FOOTER */
footer {
    background: rgba(15, 23, 42, 0.9);
    padding: 40px 20px;
}
.footer-container {
     display: flex; 
     justify-content: space-around; 
     flex-wrap: wrap; 
     }

.footer-section { 
    width: 200px; 
    margin-bottom: 20px; 
    }

.footer-section h3 { 
    margin-bottom: 10px; 
    }

.footer-section ul {
list-style: none; 
padding: 0; 
}

.footer-section a { 
    color: #94a3b8; 
    }

.footer-section a:hover { 
    color: #f59e0b; 
    }

footer .copyright { 
    text-align: center;
     margin-top: 20px; 
     font-size: 14px; 
     color: #94a3b8; 
     }

@media(max-width:768px){
    .footer-container { 
        flex-direction: column; 
        align-items: center; 
        text-align: center; }

    .footer-section { 
        width: 100%; 
        margin-bottom: 15px; }
}
     