/* ===== RESET & VARIABLES ===== */
:root {
  /* Colors */
  --primary: #1c3f3a;
  --primary-light: #2c5952;
  --primary-dark: #122a27;
  --accent: #e89e47;
  --accent-light: #f5b76b;
  --text-main: #333333;
  --text-muted: #666666;
  --bg-main: #fbfaf8;
  --bg-light: #f0eee9;
  --white: #ffffff;
  --black: #000000;

  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Outfit', sans-serif;

  /* Transitions */
  --transition-fast: 0.3s ease;
  --transition-slow: 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  
  /* Shadows */
  --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 40px rgba(0,0,0,0.12);
  
  /* Border Radius */
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-round: 50%;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-main);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===== UTILITIES ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.grid-2-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.center-text { text-align: center; }
.mt-4 { margin-top: 4rem; }
.pt-1 { margin-top: 1rem; }
.pb-4 { padding-bottom: 4rem; }
.radius-lg { border-radius: var(--radius-lg); }
.shadow-xl { box-shadow: var(--shadow-lg); }
.bg-light { background-color: var(--bg-light); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  font-weight: 500;
  font-size: 1rem;
  transition: var(--transition-fast);
  cursor: pointer;
  border: none;
  gap: 8px;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--accent);
  color: var(--white);
}

.btn-large {
  padding: 16px 36px;
  font-size: 1.1rem;
}

/* Section Common */
.section {
  padding: 100px 0;
}

.section-tag {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--accent);
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 24px;
  color: var(--primary);
}

.section-description {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 24px 0;
  transition: var(--transition-fast);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 16px 0;
  box-shadow: var(--shadow-sm);
}

.navbar.scrolled .nav-link, 
.navbar.scrolled .logo {
  color: var(--primary);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  transition: var(--transition-fast);
}

.logo-icon {
  color: var(--accent);
}

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

.nav-link {
  color: var(--white);
  font-weight: 500;
  position: relative;
  transition: var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: var(--transition-fast);
}

.nav-link:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

.navbar.scrolled .mobile-menu-btn {
  color: var(--primary);
}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: var(--white);
  z-index: 2000;
  padding: 60px 40px;
  box-shadow: -10px 0 30px rgba(0,0,0,0.1);
  transition: var(--transition-slow);
}

.mobile-nav.active {
  right: 0;
}

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

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav-links a.btn {
  margin-top: 20px;
}

/* ===== HERO ===== */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  animation: bgZoom 20s infinite alternate;
  z-index: 1;
}

@keyframes bgZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.6));
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--accent);
  display: block;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 5rem;
  line-height: 1.1;
  margin-bottom: 24px;
  text-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.hero-text {
  font-size: 1.25rem;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
}

/* ===== FEATURES ===== */
.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 1.1rem;
  color: var(--primary);
}

.feature-list i {
  color: var(--accent);
}

/* ===== TENTS ===== */
.tent-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.tent-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-fast);
}

.tent-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.tent-card-img {
  height: auto;
  overflow: hidden;
}

.tent-card-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition-slow);
}

.tent-card:hover .tent-card-img img {
  transform: scale(1.05);
}

.tent-card-content {
  padding: 32px;
}

.tent-card-content h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: var(--primary);
}

.tent-amenities-list span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-light);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
  color: var(--primary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  align-items: start;
}

.img-full {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition-slow);
}

.img-full:hover {
  transform: scale(1.02);
}

/* ===== ANIMATIONS ===== */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal-up.active, .reveal-left.active, .reveal-right.active {
  opacity: 1;
  transform: translate(0, 0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Responsive */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }
  .grid-2-col { grid-template-columns: 1fr; }
  .hero-title { font-size: 3.5rem; }
  .section-title { font-size: 2.2rem; }
}
