/* ========================================
   MONHOTEL GLOBAL STYLE
   ======================================== */

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  color: #222;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

/* ========================================
   HERO SLIDER
   ======================================== */
.hero {
  position: relative;
  overflow: hidden;
  height: 500px;
}

.hero-track {
  display: flex;
  transition: transform 0.8s ease-in-out;
  height: 100%;
}

.hero-slide {
  min-width: 100%;
  position: relative;
  overflow: hidden;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-info {
  position: absolute;
  bottom: 50px;
  left: 50px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

.hero-info h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.hero-info p {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.btn-cta {
  display: inline-block;
  padding: 12px 25px;
  background: #ff6b6b;
  color: #fff;
  border-radius: 5px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-cta:hover {
  background: #ff4757;
}

/* ========================================
   SECTION RECHERCHE
   ======================================== */
.search-section {
  background: #fff;
  padding: 40px 20px;
  text-align: center;
}

.search-section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.search-section form {
  max-width: 700px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.search-section label {
  font-weight: 500;
  margin-bottom: 5px;
  display: block;
  text-align: left;
}

.search-section input,
.search-section select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.search-section .amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
}

.search-section .amenities label {
  display: flex;
  align-items: center;
  gap: 5px;
}

.btn-gps {
  background: #1e90ff;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  margin-top: 10px;
  font-weight: 600;
  cursor: pointer;
  border: none;
}

.btn-gps:hover {
  background: #0c7cd5;
}

/* ========================================
   SECTION PRESENTATION
   ======================================== */
.presentation {
  padding: 60px 20px;
  background: #f1f1f1;
  text-align: center;
}

.presentation h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.steps {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

.step {
  background: #fff;
  padding: 20px;
  flex: 1 1 200px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.step h3 {
  font-size: 2rem;
  color: #ff6b6b;
  margin-bottom: 15px;
}

.step p {
  font-size: 1rem;
  color: #555;
}

/* ========================================
   FOOTER
   ======================================== */
footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 25px 10px;
  margin-top: 50px;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media(max-width: 1024px){
  .hero-info h2 {
    font-size: 1.7rem;
  }
  .hero-info p {
    font-size: 1rem;
  }
  .steps {
    flex-direction: column;
  }
}

@media(max-width: 768px){
  .hero {
    height: 350px;
  }
  .btn-cta, .btn-gps {
    width: 100%;
  }
}