/* === THE KAMPGROUND === */

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

/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Inter:wght@300;400;500;600&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --cream: #F7F4EE;
  --stone: #EAE6DF;
  --forest: #1C2420;
  --sage: #5E6B60;
  --gold: #B8860B;
  --light-text: #F0EBE1;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--forest);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
}

/* Navigation */
nav {
  position: fixed;
  top: 0; left: 0; width: 100%;
  height: 80px;
  padding: 0 5vw;
  z-index: 50;
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

nav.scrolled {
  background: RGB(247, 244, 238, 0.92);
  backdrop-filter: blur(10px);
}

nav.scrolled a { color: var(--forest) !important; }
nav.scrolled .brand { color: var(--forest) !important; }
nav.scrolled .hamburger span { background: var(--forest) !important; }

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--light-text);
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s;
}

.nav-links a:hover { opacity: 0.7; }

.btn-primary {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  padding: 10px 28px;
  border-radius: 100px;
  background: var(--forest);
  color: inherit;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--gold);
  color: var(--forest);
}

.btn-outline {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  text-transform: uppercase;
  padding: 12px 32px;
  border-radius: 100px;
  border: 1px solid RGB(240,235,225,0.4);
  background: transparent;
  color: var(--light-text);
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}

.btn-outline:hover {
  background: var(--light-text);
  color: var(--forest);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--light-text);
  transition: background 0.3s;
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100vh;
  background: var(--cream);
  z-index: 100;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mobile-nav.active { display: flex; }

.mobile-nav a {
  font-family: 'DM Serif Display', serif;
  font-size: 32px;
  color: var(--forest);
  text-decoration: none;
}

.mobile-nav .btn-primary {
  font-size: 14px;
  margin-top: 16px;
}

.close-btn {
  position: absolute;
  top: 24px; right: 24px;
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: var(--forest);
}

/* Hero */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to bottom, rgba(28,36,32,0.35) 0%, rgba(28,36,32,0.5) 50%, rgba(28,36,32,0.85) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 5vw;
}

.hero-content .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(240,235,225,0.6);
}

.hero-content h1 {
  font-size: clamp(44px, 9vw, 130px);
  color: var(--light-text);
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-top: 20px;
  text-shadow: 0 2px 30px rgba(0,0,0,0.3);
}

.hero-content p {
  font-size: 16px;
  color: rgba(240,235,225,0.8);
  max-width: 520px;
  margin: 24px auto 0;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 36px;
}

.hero-contact {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  padding: 24px 5vw;
  border-top: 1px solid rgba(240,235,225,0.15);
  z-index: 3;
}

.hero-contact-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 40px;
}

.hero-contact-inner a,
.hero-contact-inner span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(240,235,225,0.7);
  text-decoration: none;
  transition: color 0.3s;
}

.hero-contact-inner a:hover { color: var(--light-text); }

.hero-contact-inner .sep { color: rgba(240,235,225,0.3); }

/* Section Styles */
.section {
  padding: 120px 5vw;
}

.section-light { background: var(--cream); }
.section-stone { background: var(--stone); }
.section-dark { background: var(--forest); }

.container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--sage);
  margin-bottom: 16px;
}

.section-label-gold {
  color: var(--gold);
}

.section h2 {
  font-size: clamp(32px, 5vw, 64px);
  line-height: 0.95;
  color: var(--forest);
  margin-bottom: 48px;
}

.section-dark h2 { color: var(--light-text); }

.text-center { text-align: center; }

.intro-text {
  font-size: clamp(20px, 3vw, 32px);
  line-height: 1.3;
  color: var(--forest);
  max-width: 900px;
  margin: 0 auto 24px;
  text-align: center;
}

.link-arrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--forest);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.link-arrow:hover { text-decoration: underline; }

/* Amenities Grid */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.amenity-card {
  background: var(--stone);
  padding: 40px 32px;
  transition: background 0.3s;
}

.amenity-card:hover { background: #E0DDD6; }

.amenity-card h3 {
  font-size: 22px;
  color: var(--forest);
  margin: 16px 0 8px;
}

.amenity-card p {
  font-size: 14px;
  color: var(--sage);
  line-height: 1.6;
}

/* Accommodations Grid */
.accommodations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 24px;
}

.accommodation-card {
  cursor: pointer;
}

.accommodation-card .img-wrap {
  overflow: hidden;
  aspect-ratio: 16/10;
}

.accommodation-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.accommodation-card:hover img { transform: scale(1.03); }

.accommodation-card .cat {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sage);
  margin-top: 20px;
}

.accommodation-card h3 {
  font-size: 22px;
  color: var(--forest);
  margin-top: 8px;
  transition: text-decoration 0.3s;
}

.accommodation-card:hover h3 { text-decoration: underline; text-underline-offset: 4px; }

.accommodation-card p {
  font-size: 14px;
  color: var(--sage);
  line-height: 1.6;
  margin-top: 8px;
}

/* Parallax Banner */
.parallax-banner {
  position: relative;
  height: 60vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax-banner img {
  position: absolute;
  top: -15%; left: 0;
  width: 100%; height: 130%;
  object-fit: cover;
}

.parallax-banner .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(28,36,32,0.5);
}

.parallax-banner .content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 5vw;
}

.parallax-banner h2 {
  font-size: clamp(32px, 5vw, 72px);
  color: var(--light-text);
  line-height: 0.95;
  text-transform: uppercase;
  text-shadow: 0 2px 40px rgba(0,0,0,0.4);
}

.parallax-banner p {
  font-size: 16px;
  color: rgba(240,235,225,0.85);
  max-width: 500px;
  margin: 24px auto 0;
}

.parallax-banner .btn-outline {
  margin-top: 32px;
}

/* Two Column Layout */
.two-col {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.two-col .col-left { flex: 1 1 55%; min-width: 300px; }
.two-col .col-right { flex: 1 1 40%; min-width: 300px; }

.two-col img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.feature-list {
  list-style: none;
  margin-top: 40px;
}

.feature-list li {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  color: var(--light-text);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.feature-list li::before {
  content: "•";
  color: var(--gold);
  flex-shrink: 0;
}

/* Video + Gallery */
.video-gallery {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.video-gallery .video-side {
  flex: 1 1 45%;
  min-width: 300px;
}

.video-gallery .gallery-side {
  flex: 1 1 45%;
  min-width: 300px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.video-gallery .gallery-side img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

/* Location Section */
.location-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.location-grid .col-info { flex: 1 1 45%; min-width: 300px; }
.location-grid .col-map { flex: 1 1 45%; min-width: 300px; }

.address-block {
  font-size: 16px;
  color: var(--forest);
  line-height: 1.8;
  margin-top: 32px;
}

.address-block .name { font-weight: 600; }

.contact-info {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  color: var(--sage);
  line-height: 1.8;
  margin-top: 16px;
}

.contact-info a {
  color: var(--sage);
  text-decoration: none;
  transition: color 0.3s;
}

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

.about-block, .directions-block {
  margin-top: 32px;
  max-width: 480px;
}

.about-block p, .directions-block p {
  font-size: 15px;
  color: var(--forest);
  line-height: 1.7;
}

.directions-block p { font-size: 14px; }

/* Newsletter */
.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 40px;
}

.newsletter-form input {
  width: 320px;
  height: 48px;
  padding: 0 24px;
  border: 1px solid #C4BEB4;
  border-radius: 100px 0 0 100px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--forest);
  background: transparent;
  outline: none;
}

.newsletter-form button {
  height: 48px;
  padding: 0 32px;
  background: var(--forest);
  color: var(--light-text);
  border: none;
  border-radius: 0 100px 100px 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}

.newsletter-form button:hover {
  background: var(--gold);
  color: var(--forest);
}

/* Footer */
footer {
  background: var(--forest);
  padding: 80px 5vw 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-brand {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--light-text);
}

.footer-tagline {
  font-size: 14px;
  color: rgba(240,235,225,0.5);
  margin-top: 12px;
  max-width: 240px;
}

.footer-contact {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: rgba(240,235,225,0.4);
  line-height: 1.8;
  margin-top: 16px;
}

.footer-contact a {
  color: rgba(240,235,225,0.4);
  text-decoration: none;
  transition: color 0.3s;
}

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

.footer-col h4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(240,235,225,0.6);
  text-decoration: none;
  line-height: 2.2;
  transition: color 0.3s;
}

.footer-col a:hover { color: var(--light-text); }

.social-links {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.social-links a {
  color: rgba(240,235,225,0.6);
  transition: color 0.3s;
}

.social-links a:hover { color: var(--gold); }

.footer-bottom {
  max-width: 1400px;
  margin: 60px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(240,235,225,0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: rgba(240,235,225,0.4);
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in-up {
  opacity: 0;
}

.fade-in-up.visible {
  animation: fadeInUp 0.8s ease forwards;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero { height: auto; min-height: 100vh; padding: 120px 0 100px; }
  .hero-contact-inner { flex-direction: column; gap: 8px; }
  .sep { display: none; }
  .section { padding: 80px 5vw; }
  .amenities-grid, .accommodations-grid { grid-template-columns: 1fr; }
  .two-col, .location-grid, .video-gallery { flex-direction: column; }
  .parallax-banner { height: 50vh; }
  .newsletter-form { gap: 12px; }
  .newsletter-form input { width: 100%; border-radius: 100px; }
  .newsletter-form button { width: 100%; border-radius: 100px; }
}
