/* Reset & base */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: Arial, sans-serif; line-height: 1.6; color: #333; }
a { text-decoration: none; color: inherit; }

/* Header */
header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 2rem; background: #0066cc; color: #fff;
}
header .logo { font-size: 1.5rem; font-weight: bold; }
header nav a { margin: 0 1rem; color: #fff; }
header .btn { background: #fff; color: #0066cc; padding: 0.5rem 1rem; border-radius: 5px; }

/* Hero */
.hero {
  background: url('https://picsum.photos/1600/600?blur=3') center/cover no-repeat;
  color: #fff; text-align: center; padding: 5rem 2rem;
}

/* Sections */
.section { padding: 4rem 2rem; text-align: center; }
.section.alt { background: #f9f9f9; }
.section h2 { margin-bottom: 2rem; font-size: 2rem; }

/* Cards */
.cards { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.card {
  background: #fff; padding: 1.5rem; border: 1px solid #ddd;
  border-radius: 8px; width: 250px; box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.card h3 { margin-bottom: 1rem; color: #0066cc; }

/* Footer */
footer {
  text-align: center; padding: 1rem; background: #333; color: #fff;
}
/* Footer */
.footer {
  background: #f9f9f9;
  color: #333;
  padding: 40px 20px 20px;
  margin-top: 50px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  flex: 1 1 250px;
}

.footer-logo h2 {
  color: #0066cc;
  margin-bottom: 10px;
}

.footer-links,
.footer-contact {
  flex: 1 1 200px;
}

.footer-links h3,
.footer-contact h3 {
  margin-bottom: 10px;
  color: #0066cc;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #333;
  text-decoration: none;
}

.footer-links a:hover {
  color: #0066cc;
}

.footer-contact a {
  color: #0066cc;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}



.footer-socials a:hover {
  background: #004a99;
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  border-top: 1px solid #ddd;
  padding-top: 15px;
  font-size: 14px;
  color: #777;
}

.footer-contact {
    flex: 1 1 200px;
    min-width: 200px;
    text-align: center; /* Centre le contenu */
}

.footer-socials {
    margin-top: 20px; /* Plus d'espace vertical */
    display: flex;
    gap: 10px;
    justify-content: center; /* Centre les icônes horizontalement */
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #0066cc;
    border-radius: 50%;
    transition: transform 0.2s, background 0.2s;
}

.footer-socials img {
    width: 18px;
    height: 18px;
    filter: invert(1);
    object-fit: contain; /* S'assure que les SVG s'affichent correctement */
}

/* Hero / Topbar */
.hero {
  position: relative;
  height: 90vh;
  background: url('images/pexels-ron-lach-9885404.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-overlay {
  background: rgba(0,0,0,0.5);
  color: #fff;
  padding: 40px;
  border-radius: 10px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.hero .btn {
  background: #0066cc;
  color: #fff;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s;
}

.hero .btn:hover {
  background: #004a99;
}
.video-presentation {
  margin-top: 2rem;
  text-align: center;
}

.video-presentation video {
  width: 640px;       /* taille fixe identique */
  height: 360px;      /* format 16/9 */
  max-width: 100%;    /* reste responsive */
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  background: #000;   /* fond noir derrière le poster */
  object-fit: cover;  /* garde le logo proportionnel */
}
/* Styles pour le formulaire de réservation */

#reservation-form {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 40px auto;
    text-align: left;
}

#reservation-form h2 {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
}

#contactForm {
    display: flex;
    flex-direction: column;
}

#contactForm label {
    margin-bottom: 8px;
    font-weight: bold;
    color: #555;
}

#contactForm input[type="text"],
#contactForm input[type="tel"],
#contactForm input[type="email"],
#contactForm textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box; /* Assure que le padding n'augmente pas la taille totale */
    font-family: inherit;
    font-size: 1rem;
}

#contactForm textarea {
    resize: vertical; /* Permet de redimensionner verticalement la zone de texte */
}

/* Styles pour les boutons radio */
#contactForm label input[type="radio"] {
    margin-right: 10px;
}

#contactForm .radio-group {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

/* Styles pour le bouton d'envoi */
#contactForm .btn {
    align-self: center;
    background-color: #007bff;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#contactForm .btn:hover {
    background-color: #0056b3;
}