* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: #fafafa;
  color: #333;
}

/* NAVBAR */

nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 60px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  z-index: 1000;
}

nav h1 {
  font-family: "Playfair Display", serif;
  font-size: 26px;
}

nav a {
  text-decoration: none;
  color: #333;
  margin-left: 25px;
  font-weight: 500;
}
nav a:hover {
  color: #1f4d4d;
}

/* HERO */

.hero {
  height: 100vh;
  background: url("../../images/mountain-city/hero.webp") center center/cover
    no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.55);
  padding: 60px;
  border-radius: 10px;
  max-width: 700px;
}

.hero-overlay h2 {
  font-family: "Playfair Display", serif;
  font-size: 50px;
  margin-bottom: 15px;
}

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

.btn {
  background: #1f4d4d;
  color: white;
  padding: 16px 35px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  margin: 6px;
  display: inline-block;
}
.btn:hover {
  background: white;
  color: #1f4d4d;
}
a.links {
  color: inherit;
  text-decoration: none;
}
a.links:hover {
  color: #fafafa50;
}
/* SECTION */

.section {
  max-width: 1200px;
  margin: auto;
  padding: 90px 20px;
}

.section h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
  font-family: "Playfair Display", serif;
}

/* ROOM CARDS */

.rooms {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.room {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.room img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.room-content {
  padding: 25px;
}

/* GALLERY */

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.gallery img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s;
}

.gallery img:hover {
  transform: scale(1.05);
}

/* LIGHTBOX */

.lightbox {
  display: none;
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
}

/* AMENITIES */

.amenities {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  text-align: center;
}

.amenity {
  background: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

/* LOCATION */

.location {
  background: #1f2b2b;
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.location p {
  font-size: 18px;
  margin: 6px 0;
}

iframe {
  margin-top: 30px;
  border-radius: 10px;
}

footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 20px;
}
.nav-menu {
  display: flex;
  align-items: center;
}

.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  background: none;
  border: none;
  color: #333;
  z-index: 1101;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  z-index: 900;
}

.overlay.active {
  display: block;
}
@media (max-width: 768px) {
  nav {
    padding: 15px 20px;
  }

  .hero-overlay h2 {
    font-size: 34px;
  }

  .hero-overlay {
    padding: 35px;
  }
  .hamburger {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: -250px;
    width: 220px;
    height: 100vh;
    background: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 20px 20px;
    transition: 0.3s;
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.2);
    z-index: 1100;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu a {
    margin: 12px 0;
    width: 100%;
  }
}
