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

body {
  font-family: system-ui, -apple-system, Arial, sans-serif;
  background: #f7f9fc;
  color: #000;
  line-height: 1.6;
}

/* ================= NAVBAR ================= */
.navbar {
  width: 100%;
  background: #0d1b2a;
  padding: 12px 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}

.nav-container {
  width: min(1200px, 92%);
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
  text-decoration: none;
}

.nav-menu {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-menu a,
.drop-btn {
  color: white;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
}

.drop-btn {
  background: transparent;
  border: none;
  font-size: 1rem;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background: #112233;
  top: 30px;
  min-width: 220px;
  border-radius: 8px;
  padding: 10px 0;
}

.dropdown-content a {
  display: block;
  padding: 10px 14px;
  color: white;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Mobile button */
.mobile-menu-btn {
  display: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
}

/* SHOW on mobile */
.nav-menu.show {
  display: block;
}

/* ================= HERO ================= */
.hero {
  width: 100%;
  height: 75vh;
  background: url("/assets/img/Cool-Prague-Guide-Cover-Photo.png") center/cover no-repeat;
  position: relative;
  margin-top: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.hero-content {
  position: relative;
  color: white;
  text-align: center;
  max-width: 900px;
  padding: 20px;
}

.hero-content h1 {
  font-size: clamp(1.8rem, 2.5vw, 3rem);
  font-weight: 900;
}

.hero-content p {
  margin-top: 12px;
  font-size: 1.1rem;
}

.hero-btn {
  margin-top: 20px;
  display: inline-block;
  padding: 12px 22px;
  background: #e0b85a;
  color: #000;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
}

/* ================= CONTENT ================= */
.content-section {
  padding: 60px 0;
}

.container {
  width: min(1100px, 92%);
  margin: auto;
}

.container img {
  width: 100%;
  border-radius: 12px;
}

/* ================= MOBILE ================= */
@media (max-width: 860px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    background: #0d1b2a;
    padding: 20px;
    margin-top: 10px;
    border-radius: 8px;
  }

  .mobile-menu-btn {
    display: block;
  }
}
