:root {
  /* Color System */
  --primary: #2e7d32;
  --secondary: #facc15;
  --accent: #e76f51;
  --soft-blue: #60a5fa;
  --bg-main: #f9fafb;
  --bg-soft: #f1f5f9;
  
  --text-heading: #111827;
  --text-body: #374151;
  --text-muted: #6b7280;
  
  /* Gradients */
  --grad-nature: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
  --grad-sky: linear-gradient(135deg, var(--soft-blue), var(--primary));
  --grad-sunset: linear-gradient(135deg, var(--secondary), var(--accent));
  
  /* UI Elements */
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 10px 25px rgba(0, 0, 0, 0.1);
  --radius-card: 16px;
  --radius-btn: 50px;
  
  /* Layout */
  --max-width: 1200px;
}

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

body {
  font-family: 'Inter', 'Poppins', sans-serif;
  background-color: var(--bg-main);
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-heading);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

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

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

/* Typography Utility */
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.section-title { font-size: 2.5rem; margin-bottom: 0.5rem; }
.section-subtitle { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 3rem; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-btn);
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--grad-nature);
  color: #fff;
  box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4);
}

.btn-secondary {
  background: #fff;
  color: var(--text-heading);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--bg-soft);
  transform: translateY(-2px);
}

.btn-accent {
  background: var(--accent);
  color: #fff;
}

.btn-accent:hover {
  background: #d05a3e;
}

/* Header & Nav */
.glass-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(249, 250, 251, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: var(--shadow-soft);
  padding: 1rem 0;
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-weight: 500;
  color: var(--text-body);
  transition: color 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--primary);
}

.nav-cta {
  display: flex;
  align-items: center;
}

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

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--text-heading);
  border-radius: 3px;
  transition: 0.3s;
}

/* Main Layout */
main {
  padding-top: 80px; /* offset for fixed header */
  min-height: calc(100vh - 300px);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 2rem;
}

/* Hero Section */
.hero {
  background: var(--bg-soft);
  padding: 6rem 2rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 3.5rem;
  background: var(--grad-nature);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--text-body);
  margin-bottom: 2rem;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
}

.hero-featured .card {
  position: relative;
  transform: rotate(2deg);
  transition: transform 0.4s ease;
}

.hero-featured .card:hover {
  transform: rotate(0deg) scale(1.02);
}

/* Card System */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.card {
  background: #fff;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.card-img-wrapper {
  position: relative;
  height: 200px;
  overflow: hidden;
}

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

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

.card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--secondary);
  color: var(--text-heading);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-btn);
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--shadow-soft);
}

.card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-location {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.card-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

/* Single Experience Page */
.exp-hero {
  height: 60vh;
  min-height: 400px;
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  border-radius: 0 0 40px 40px;
  overflow: hidden;
}

.exp-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(17,24,39,0.9) 0%, rgba(17,24,39,0) 100%);
}

.exp-hero-content {
  position: relative;
  padding: 4rem 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  color: #fff;
}

.exp-hero-content h1 {
  color: #fff;
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.exp-meta {
  display: flex;
  gap: 1.5rem;
  color: #e5e7eb;
  font-size: 1rem;
}

.exp-content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  padding: 4rem 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.exp-main-text h2 {
  color: var(--primary);
  margin-top: 2rem;
}

.exp-sidebar .widget {
  background: #fff;
  padding: 2rem;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  margin-bottom: 2rem;
}

.widget-title {
  border-bottom: 2px solid var(--bg-soft);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

.widget ul {
  list-style: none;
}

.widget ul li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Nature & Hidden Gems */
.nature-section {
  background: var(--bg-soft);
}

.nature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.nature-item {
  position: relative;
  height: 250px;
  border-radius: var(--radius-card);
  overflow: hidden;
}

.nature-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nature-item-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: #fff;
}

/* Cities List Layout */
.city-block {
  display: flex;
  gap: 3rem;
  margin-bottom: 4rem;
  align-items: center;
}

.city-block:nth-child(even) {
  flex-direction: row-reverse;
}

.city-img {
  flex: 1;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.city-content {
  flex: 1;
}

.city-content ul {
  margin: 1rem 0 2rem 1.5rem;
  color: var(--text-body);
}

.city-content ul li {
  margin-bottom: 0.5rem;
}

/* Form Styles */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-group input, .form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-family: inherit;
}

.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

/* Legal Pages */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 3rem;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
}

.legal-content h2 {
  margin-top: 2rem;
  color: var(--primary);
}

/* Footer */
footer {
  background: #111827;
  color: #fff;
  padding: 4rem 2rem 2rem;
}

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

.footer-brand h3 {
  color: var(--secondary);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer-links h4 {
  color: #fff;
  margin-bottom: 1.2rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #9ca3af;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--secondary);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #374151;
  color: #9ca3af;
  font-size: 0.9rem;
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 8rem;
  }
  
  .hero-ctas {
    justify-content: center;
  }
  
  .exp-content-grid {
    grid-template-columns: 1fr;
  }
  
  .nature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .city-block, .city-block:nth-child(even) {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    text-align: center;
  }
  
  .nav-links.active {
    display: flex;
    animation: slideDown 0.3s ease;
  }
  
  .nav-cta {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .nature-grid {
    grid-template-columns: 1fr;
  }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}