@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  --color-primary: #1e3f33; /* Deep forest green */
  --color-primary-light: #2c5948;
  --color-accent: #d4af37; /* Elegant gold accent */
  --color-text-main: #1f2937;
  --color-text-muted: #4b5563;
  --color-bg: #f9fafb;
  --color-white: #ffffff;
  
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-body); background-color: var(--color-bg); color: var(--color-text-main); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* Typography */
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--color-primary); }
p { font-size: 1rem; color: var(--color-text-muted); }

/* Navbar */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 5%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}
.navbar.scrolled { padding: 0.8rem 5%; box-shadow: 0 4px 20px rgba(0,0,0,0.05); }
.logo { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; letter-spacing: 1px; color: var(--color-primary); }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a { font-weight: 500; font-size: 0.95rem; transition: var(--transition); position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--color-accent); transition: var(--transition); }
.nav-links a:hover::after { width: 100%; }
.btn-primary {
  background-color: var(--color-primary); color: var(--color-white);
  padding: 0.6rem 1.5rem; border-radius: 4px; font-weight: 500;
  transition: var(--transition); display: inline-block; cursor: pointer; border: none; font-family: var(--font-body);
}
.btn-primary:hover { background-color: var(--color-primary-light); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(30, 63, 51, 0.3); color: var(--color-white); }
.btn-primary.accent { background-color: var(--color-accent); color: #fff; }
.btn-primary.accent:hover { background-color: #b8972e; box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4); color: #fff; }

/* Hero Section */
.hero {
  height: 100vh; position: relative;
  display: flex; align-items: center; justify-content: center; text-align: center;
  color: var(--color-white);
  padding: 0 5%; margin-top: 0;
}
.hero::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to bottom, rgba(30, 63, 51, 0.4), rgba(30, 63, 51, 0.8)), url('assets/images/hero_mountains.jpg') no-repeat center center/cover;
  z-index: -1;
}
.hero-content { max-width: 800px; animation: fadeInUp 1s ease; }
.hero-content h1 { font-size: 4rem; color: var(--color-white); margin-bottom: 1.5rem; line-height: 1.1; text-shadow: 0 4px 12px rgba(0,0,0,0.3); }
.hero-content p { font-size: 1.25rem; color: rgba(255,255,255,0.9); margin-bottom: 2.5rem; }

/* Destinations */
.destinations { padding: 5rem 5%; background: var(--color-bg); }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { font-size: 2.5rem; margin-bottom: 1rem; }
.section-header p { max-width: 600px; margin: 0 auto; }
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2.5rem; }
.card {
  border-radius: 12px; overflow: hidden; background: var(--color-white);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: var(--transition);
  position: relative; cursor: pointer; display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.card-img-wrapper { height: 260px; overflow: hidden; position: relative; }
.card-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.card:hover .card-img-wrapper img { transform: scale(1.1); }
.card-content { padding: 2rem; display: flex; flex-direction: column; flex-grow: 1; }
.card-title { font-size: 1.5rem; margin-bottom: 1rem; }
.card-desc { font-size: 0.95rem; line-height: 1.6; margin-bottom: 1.5rem; flex-grow: 1; }
.card-btn { color: var(--color-primary); font-weight: 600; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 1px; }

/* Footer */
.footer { background: var(--color-primary); color: rgba(255,255,255,0.8); padding: 4rem 5% 2rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 3rem; margin-bottom: 3rem; }
.footer-col h3 { color: var(--color-white); margin-bottom: 1.5rem; font-family: var(--font-body); font-size: 1.1rem; text-transform: uppercase; letter-spacing: 1px; }
.footer-col p { color: inherit; font-size: 0.95rem; margin-bottom: 0.8rem; line-height: 1.6; }
.footer-col a { transition: var(--transition); font-size: 0.95rem; display: inline-block; }
.footer-col ul li { margin-bottom: 0.8rem; }
.footer-col a:hover { color: var(--color-accent); transform: translateX(5px); }
.footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.9rem; }

/* Policies Pages */
.page-header { background: var(--color-primary); color: var(--color-white); padding: 8rem 5% 4rem; text-align: center; }
.page-header h1 { color: var(--color-white); font-size: 3rem; }
.policy-content { padding: 4rem 5%; max-width: 800px; margin: 0 auto; background: var(--color-white); box-shadow: 0 10px 30px rgba(0,0,0,0.03); border-radius: 8px; margin-top: -2rem; position: relative; margin-bottom: 4rem;}
.policy-content h2 { margin-top: 2rem; margin-bottom: 1rem; font-size: 1.8rem; }
.policy-content p { margin-bottom: 1.2rem; font-size: 1.05rem; }

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

/* Mobile Menu */
.menu-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.menu-toggle span { width: 25px; height: 2px; background: var(--color-primary); transition: var(--transition); }
@media (max-width: 768px) {
  .nav-links { position: absolute; top: 100%; left: 0; width: 100%; background: var(--color-white); flex-direction: column; padding: 2rem; box-shadow: 0 10px 20px rgba(0,0,0,0.05); clip-path: polygon(0 0, 100% 0, 100% 0, 0 0); transition: clip-path 0.4s ease-in-out; }
  .nav-links.active { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
  .menu-toggle { display: flex; }
  .hero-content h1 { font-size: 2.5rem; }
}
