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

/* ---------- BODY ---------- */
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: transparent;
  color: #1f1f1f;
  line-height: 1.6;
}

/* ---------- COLORS ---------- */
:root {
  --primary: #1f4d3a;
  --accent: #e67e22;
  --light: #ffffff;
  --muted: #6b6b6b;
}

/* ---------- VIDEO BACKGROUND ---------- */
.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.page-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

/* ---------- HEADER / NAV ---------- */
header {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(6px);
  padding: 20px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo img {
  height: 48px;
}

/* ---------- NAV ---------- */
.nav {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-buttons {
  display: flex;
  gap: 12px;
}

.nav-buttons button {
  background: rgba(31, 77, 58, 0.08);
  border: 1px solid rgba(31, 77, 58, 0.15);
  color: var(--primary);
  font-size: 15px;
  padding: 10px 18px;
  cursor: pointer;
  border-radius: 999px;
  transition: all 0.25s ease;
}

.nav-buttons button:hover {
  background: var(--primary);
  color: white;
}

.nav-buttons button.active {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

.reserve-btn {
  background: var(--accent);
  color: white;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.25s ease;
}

.reserve-btn:hover {
  background: #cf6d18;
}

/* ---------- MAIN ---------- */
main {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
}

/* ---------- SECTIONS ---------- */
section {
  display: none;
  animation: fade 0.3s ease-in-out;
  margin-top: 20px;

  background: rgba(255,255,255,0.92);
  padding: 40px;
  border-radius: 14px;
}

section.active {
  display: block;
}

section h2 {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 25px;
}

section h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
}

@keyframes fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ---------- HERO ---------- */
.hero-home {
  text-align: center;
}

.hero-logo img {
  max-width: 300px;
  width: 80%;
  margin-bottom: 20px;
}

.hero {
  background: linear-gradient(
    rgba(255,255,255,0.88),
    rgba(255,255,255,0.88)
  );
  padding: 90px 30px;
  border-radius: 18px;
  margin-bottom: 60px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.hero h1 {
  font-size: clamp(34px, 5vw, 56px);
  margin-bottom: 20px;
  color: var(--primary);
  letter-spacing: 0.5px;
}

.hero p {
  font-size: 18px;
  max-width: 700px;
  margin: auto;
  margin-bottom: 18px;
}

p {
  margin-bottom: 16px;
}

/* ---------- GRID ---------- */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* ---------- CARDS ---------- */
.card {
  background: linear-gradient(
    to bottom right,
    rgba(255,255,255,0.96),
    rgba(245, 242, 235, 0.96)
  );
  padding: 30px;
  border-radius: 14px;
  box-shadow:
    0 12px 30px rgba(0,0,0,0.12),
    inset 0 0 0 1px rgba(230, 126, 34, 0.15);
}

.card a.attraction-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 14px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.card a.attraction-link:hover {
  color: var(--accent);
  text-decoration: underline;
}

.attraction-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  font-size: 14px;
  color: var(--muted);
}

.attraction-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(31, 77, 58, 0.1);
  border-radius: 50%;
  font-size: 16px;
}

.distance-badge {
  display: inline-block;
  margin-left: auto;
  background: rgba(230, 126, 34, 0.15);
  color: var(--accent);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
}

/* ---------- GALLERY ---------- */
.gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

/* ---------- CONTACT ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 30px;
}

.contact p {
  margin-bottom: 18px;
}

.map iframe {
  width: 100%;
  height: 350px;
  border: 0;
  border-radius: 10px;
}

.contact a {
  color: inherit;
  text-decoration: underline;
}

.contact a:hover {
  color: var(--accent);
}

/* ---------- FOOTER ---------- */
footer {
  background: rgba(255,255,255,0.95);
  color: #1f1f1f;
  text-align: center;
  padding: 25px;
  margin-top: 80px;
  font-size: 14px;
}

/* ---------- HAMBURGER ---------- */
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
  color: #1f1f1f;
}

/* ---------- MOBILE NAV ---------- */
@media (max-width: 700px) {
  .nav {
    flex-direction: row;
  }
  
  .hamburger {
    display: block;
    margin-left: auto;
  }

  .nav-buttons {
    display: none;
    width: 100%;
    flex-direction: column;
    margin-top: 15px;
    background: rgba(255,255,255,0.95);
    border-radius: 12px;
    padding: 10px 0;
  }

  .nav-buttons.open {
    display: flex;
  }

  .nav-buttons button {
    padding: 12px 20px;
    text-align: left;
    width: 100%;
    border-bottom: none;
  }

  .nav-buttons button:hover {
    background: rgba(0,0,0,0.05);
  }
}

/* ---------- MOBILE ---------- */
@media (max-width: 700px) {
  .nav {
    flex-direction: column;
    gap: 15px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .reserve-btn {
    width: 100%;
    text-align: center;
  }
}