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

/* NAVBAR */

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 40px;
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 600;
}
.logo a {
color: inherit;
  text-decoration: none;
}

.logo a:hover {
  color: #7a0000;
}

a.links {
  color: inherit;
  text-decoration: none;
}
a.links:hover {
  color: #ffd700;
}

.nav-links a {
  margin-left: 25px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}
.nav-links a:hover {
  color: #7a0000;
}
.nav-links {
  display: flex;
  align-items: center;
}
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  background: none;
  border: none;
  color: #333;
}
@media (max-width: 768px) {
  .navbar {
    padding: 18px 20px;
    position: relative;
  }

  .hamburger {
    display: block;
  }

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

  /* when active (open menu) */
  .nav-links.active {
    left: 0;
  }

  .nav-links a {
    margin: 10px 0;
    width: 100%;
  }

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

  /* show overlay */
  .overlay.active {
    display: block;
  }
}

/* HERO */

.hero {
  height: 80vh;
  background: url("../../images/kingsport/hero-logo.webp") center/contain
    no-repeat;
  background-color: #7a0000;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* BOOKING BAR */

.booking-bar {
  background: #1e3a5f;
  color: white;
  padding: 30px;
  text-align: center;
}

.call-btn {
  background: #ffd700;
  color: #000;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  margin-top: 12px;
}
.call-btn:hover {
  background: #7a0000;
  color: white;
}

/* ABOUT */

.about {
  padding: 70px 20px;
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.about h2 {
  font-family: "Playfair Display", serif;
  font-size: 38px;
  margin-bottom: 20px;
}

/* ROOMS */

.rooms {
  background: white;
  padding: 80px 20px;
}

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

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

.gallery img {
  width: 100%;
  border-radius: 10px;
  transition: 0.3s;
}

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

/* LOCATION */

.location {
  padding: 80px 20px;
  background: #f1f1f1;
  text-align: center;
}

.location h2 {
  font-family: "Playfair Display", serif;
  font-size: 38px;
  margin-bottom: 25px;
}

.location iframe {
  width: 90%;
  max-width: 1000px;
  height: 450px;
  border: 0;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* CONTACT */

.contact {
  background: #1e3a5f;
  color: white;
  padding: 50px;
  text-align: center;
  font-size: 18px;
}

/* FOOTER */

footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 20px;
}
