* {
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:"Segoe UI", Arial;
}

/* HEADER */
.header {
  position: absolute;
    top: 0;
    width: 100%;
    padding: 5px 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(90deg, #000000d4 0%, #2f646d 30%, #247782 60%, #010d18 100%);
    backdrop-filter: blur(6px);
    z-index: 10;
    color: #fff; /* pour le texte et les liens */
}
/* LOGO ROND BLANC */


.logo img {
  height:100px;
  width:auto;
}

.nav a {
  color:rgb(255, 255, 255);
  margin:0 18px;
  font-size:14px;
  letter-spacing:1.5px;
  text-transform:uppercase;
  text-decoration:none;
}

.btn-book {
  background:rgb(153, 3, 3);
  color:black;
  padding:12px 24px;
  font-weight:600;
}

/* HERO SLIDER */
.hero {
  height:100vh;
}

.slider {
  width:100%;
  height:100%;
  position:relative;
  overflow:hidden;
}

.slides {
  display:flex;
  height:100%;
  transition:transform 0.9s ease-in-out;
}

.slide {
  min-width:100%;
  height:67.4vh;
  background-size:cover;
  background-position:center;
  margin-top: 110px;
}

.nav-slide {
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:rgba(0,0,0,0.6);
  color:white;
  border:none;
  font-size:32px;
  padding:12px 18px;
  cursor:pointer;
}

.prev { left:30px; }
.next { right:30px; }

/* SERVICES */
/* SERVICES LUXE */
.services {
  margin-top:-67px;
  padding:0 80px;
  position:relative;
  z-index:5;
}

.service-grid {
  display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: linear-gradient(90deg, #000000d4 0%, #2f646d 30%, #247782 60%, #010d18 100%);
}

.service {
  padding:50px 30px;
  text-align:center;
  color:white;
  border-right:1px solid rgba(255,255,255,0.08);
}

.service:last-child {
  border-right:none;
}

.service i {
  font-size:34px;
  margin-bottom:18px;
  color:#ffffff;
}

.service h4 {
  font-size:15px;
  letter-spacing:1.5px;
  text-transform:uppercase;
  margin-bottom:8px;
}

.service p {
  font-size:13px;
  color:#cccccc;
}

.rooms-section {
  padding: 80px 50px;
  background: #f5f5f5; /* peut rester clair pour contraste avec slider */
  text-align: center;
}

.rooms-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: #01313c; /* couleur élégante bleu foncé */
  margin-bottom: 50px;
  letter-spacing: 2px;
}

/* Grid des rooms */
.rooms {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

/* Chaque chambre */
.room {
  background: rgba(1, 25, 30, 0.05); /* fond très léger semi-transparent */
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  position: relative;
}

.room img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.room h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin: 15px 0 10px 0;
  color: #01313c;
}

.room p {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  margin: 0 20px 20px 20px;
  color: #333;
}

/* Effet hover luxueux */
.room:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.35);
}

.room:hover img {
  transform: scale(1.05);
}

/* Ajouter overlay pour effet click */
.room::after {
  content: 'View Room';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  background: rgba(3, 49, 59, 0.8);
  padding: 15px 30px;
  border-radius: 30px;
  font-weight: 700;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.room:hover::after {
  opacity: 1;
}


footer {
  background:black;
  color:white;
  text-align:center;
  padding:30px;
}

.hero {
  position: relative;
  height: 120; /* Ajuste selon la hauteur du slider */
  overflow: hidden;
}

.slider .slides .slide {
  width: 100%;
  height: 81%;
  background-size: cover;
  background-position: center;
}
/* Assure que le slider soit positionné relative */
.slider {
  position: relative;
  width: 100%;
  height: 80vh; /* ajuste selon ton slider */
  overflow: hidden;
}

/* Bloc texte hero centré */
.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(1, 25, 30, 0.73); /* noir semi-transparent */
  color: #fff;
  padding: 40px 70px;
  text-align: center;
  border-radius: 15px;
  font-family: 'Playfair Display', serif;
  letter-spacing: 2px;
  line-height: 1.4;
  max-width: 90%;
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
  z-index: 10; /* important pour être au-dessus des slides */
  overflow: hidden;
}

/* Reflet animé derrière le texte */
.hero-text::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(4, 81, 126, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  animation: shine 3s linear infinite;
  pointer-events: none;
  z-index: 0; /* derrière le texte */
}

@keyframes shine {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}

/* Texte */
.hero-text h1 {
  font-size: 3rem;
  margin: 0 0 10px 0;
  font-weight: 700;
  position: relative; /* devant le pseudo-element */
  z-index: 2;
}

.hero-text p {
  font-size: 1.2rem;
  margin: 0;
  font-weight: 300;
  letter-spacing: 1px;
  position: relative;
  z-index: 2;
}
.footer {
  background: linear-gradient(135deg, #010d18 0%, #2f646d 100%);
  color: #fff;
  font-family: 'Playfair Display', serif;
  padding: 60px 50px 20px 50px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Logo */
.footer-logo img {
  width: 130px;
  margin-bottom: 10px;
}

.footer-logo p {
  font-size: 1rem;
  opacity: 0.8;
  max-width: 200px;
}

/* Sections */
.footer-contact, .footer-info, .footer-social {
  min-width: 200px;
}

.footer-contact h4,
.footer-info h4,
.footer-social h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #2fc4b2; /* couleur accent luxe */
  letter-spacing: 1px;
}

.footer-contact p,
.footer-info p,
.footer-info a,
.footer-social p {
  font-size: 1rem;
  margin: 5px 0;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px; /* espace entre icone et texte */
}

.footer-info a:hover {
  color: #2fc4b2;
  text-decoration: underline;
}

/* Social icons */
.footer-social .social-icons a {
  display: inline-block;
  margin-right: 15px;
  color: #fff;
  font-size: 1.5rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-social .social-icons a:hover {
  color: #2fc4b2;
  transform: scale(1.2);
}

/* Footer bottom */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 0.9rem;
  opacity: 0.7;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 20px;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .footer-social .social-icons {
    justify-content: center;
  }
  .footer-logo {
    margin-bottom: 20px;
  }
  .footer-contact p, .footer-info p {
    justify-content: center;
  }
}
.room {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.room:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.3);
}

.slide video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* couvre tout comme un background-image */
  display: block;
}

.hero {
  position: relative;
  width: 100%;      /* toute la largeur */
  height: 80vh;     /* ajuste selon besoin */
  overflow: hidden;
}

.slide {
  min-width: 100%;
  height: 100%;
  position: relative;
}

.slide video {
  width: 100%;      /* largeur totale */
  height: 100%;     /* hauteur totale du slide */
  object-fit: cover; /* couvre tout le slide sans déformer */
  display: block;
}


