/* ================= GLOBAL STYLES ================= */
@import url("https://fonts.googleapis.com/css2?family=Inria+Serif:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inria Serif", serif !important;
  color: #fff;
  background-color: #151b1e;
  overflow-x: hidden;
  scroll-behavior: smooth !important;
}

/* ================= HERO ================= */
.hero {
  height: 100vh;
  background: url("/images/hero.png") center center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #00000000 0%, #151b1e 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
  padding: 50px 20px;
}

.hero-content h1 {
  font-weight: 300;
  font-size: 60px;
  line-height: 74px;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: #e8e8e8;
}

.hero-content p {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.02em;
  margin-bottom: 30px;
  color: #c6c6c6;
  font-family: "Inria Serif", serif;
  opacity: 0.7 !important;
}

.btn-hero {
  border-radius: 8px;
  display: inline-block;
  background: #ffffff;
  color: #1d262b;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.03em;
  transition: background 0.3s ease;
}

.btn-hero:hover {
  background: #ddd;
}

.mobile-book {
  display: none;
}

/* ================= MOBILE NAV MENU ================= */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .btn-nav {
    display: none;
  }

  .nav-center {
    flex: none;
  }

  .nav-links {
    position: fixed;
    top: -100%; /* hidden above */
    left: 0;
    width: 100%;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: top 0.3s ease-in-out;
    backdrop-filter: blur(12px); /* glass effect */
  }
  .nav-links li {
    width: 80%;
  }

  .nav-links li a {
    display: block;
    width: 100%;
    padding: 15px;
    text-align: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1); /* glass button */
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  .nav-links li a:hover {
    background: rgba(255, 255, 255, 0.2);
  }

  .mobile-book {
    display: block;
  }
  .mobile-book a {
    background: #fff !important;
    color: #151b1e !important;
    font-weight: 700;
  }

  .mobile-book a:hover {
    background: #ddd !important;
  }

  /* Hide desktop BOOK NOW */
  .desktop-book {
    display: none;
  }

  .nav-links.active {
    top: 0; /* slide down from top */
  }

  body.menu-open #main-content {
    filter: blur(6px);
    pointer-events: none;
    user-select: none;
  }
}

/* Glassy effect for mobile menu links */

/*  */

/* ================= RESPONSIVE HERO ================= */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 44px;
    line-height: 58px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 36px;
    line-height: 38px;
    font-weight: 400;
  }

  .hero-content p {
    font-size: 14px;
    line-height: 22px;
    color: #c6c6c6;
    font-weight: 300;
  }

  .btn-hero {
    padding: 10px 20px;
    font-size: 14px;
  }
}
