* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: #f8f5f0;
  color: #333;
  line-height: 1.7;
}

h1,
h2,
h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
}

/* HERO */

.hero {
  background:
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
    url('pool-2.jpg') center/cover no-repeat;
  height: 100vh;
  color: white;
  position: relative;
}

/* NAVIGATION */

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
}

.logo img {
  height: 95px;
}

nav ul {
  display: flex;
  gap: 40px;
  list-style: none;
}

nav ul li a {
  color: #2d2d2d;
  text-decoration: none;
  letter-spacing: 2px;
  font-size: 13px;
  transition: 0.3s;
}

nav ul li a:hover {
  color: #c2a46d;
}

/* WHITE MENU ON HERO */

.hero nav ul li a {
  color: white;
}

.hero nav ul li a:hover {
  color: #e3c78f;
}

/* PAGE HEADER */

.page-header {
  background: white;
  border-bottom: 1px solid #eee;
}

/* HERO CONTENT */

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 850px;
  width: 90%;
  padding: 20px;
}

.hero-content h1 {
  font-size: 70px;
  line-height: 1.1;
}

.hero-content h2 {
  font-size: 34px;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 35px;
}

/* BUTTONS */

.btn {
  display: inline-block;
  background: #c2a46d;
  color: white;
  text-decoration: none;
  padding: 14px 30px;
  margin: 10px;
  border-radius: 3px;
  transition: 0.3s;
}

.btn:hover {
  opacity: 0.9;
}

.btn-outline {
  background: transparent;
  border: 1px solid white;
}

/* GENERAL SECTIONS */

.intro-section,
.page-title {
  padding: 100px 20px;
  text-align: center;
}

.container {
  max-width: 900px;
  margin: auto;
}

/* FEATURE + GALLERY BLOCKS */

.feature-section,
.gallery-block {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 80px 8%;
}

.reverse {
  flex-direction: row-reverse;
}

/* IMAGES */

.feature-image,
.gallery-block img {
  flex: 1;
}

.feature-image img,
.gallery-block img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  display: block;
}

/* EMPHASIZE FIRST EXPLORE IMAGE */

.gallery-block:first-child img {
  height: 620px;
}

/* TEXT */

.feature-text,
.gallery-text {
  flex: 1;
}

.feature-text h2,
.gallery-text h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

.feature-text ul {
  margin-top: 20px;
  padding-left: 20px;
}

/* NIGHT SECTION */

.night-section {
  background:
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url('pool-night.jpg') center/cover no-repeat;
  padding: 180px 20px;
  color: white;
  text-align: center;
}

.overlay {
  max-width: 800px;
  margin: auto;
}

.overlay h2 {
  font-size: 60px;
  margin-bottom: 20px;
}

/* BOOKING */

.booking-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 100px 8%;
}

.booking-form form {
  display: flex;
  flex-direction: column;
}

.booking-form input,
.booking-form textarea {
  margin-bottom: 20px;
  padding: 16px;
  border: 1px solid #ddd;
  background: white;
}

.booking-form button {
  padding: 16px;
  background: #c2a46d;
  color: white;
  border: none;
  cursor: pointer;
}

.contact-box {
  margin-top: 40px;
}

/* FOOTER */

footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 30px;
  margin-top: 60px;
}

/* MOBILE */

@media(max-width: 900px) {

  nav {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }

  .logo img {
    height: 75px;
  }

  nav ul {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }

  nav ul li a {
    font-size: 11px;
    letter-spacing: 1px;
  }

  .hero-content {
    width: 90%;
  }

  .hero-content h1 {
    font-size: 34px;
    line-height: 1.1;
  }

  .hero-content h2 {
    font-size: 22px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .feature-section,
  .gallery-block {
    flex-direction: column;
    gap: 30px;
    padding: 60px 20px;
  }

  .booking-section {
    grid-template-columns: 1fr;
    padding: 60px 20px;
  }

  .feature-image img,
  .gallery-block img,
  .gallery-block:first-child img {
    height: auto;
  }

  .feature-text h2,
  .gallery-text h2,
  .overlay h2 {
    font-size: 34px;
  }

}
.hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
  color: white;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.overlay-dark {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.45);
  z-index: 1;
}

.hero-slider nav,
.hero-slider .hero-content,
.slider-btn {
  position: relative;
  z-index: 2;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: none;
  color: white;
  font-size: 28px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  backdrop-filter: blur(4px);
}

.slider-btn:hover {
  background: rgba(255,255,255,0.3);
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}
.hero-slider nav ul li a {
  color: white;
}

.hero-slider nav ul li a:hover {
  color: #e3c78f;
}