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

:root {
  --bg: hsl(40, 33%, 96%);
  --fg: hsl(150, 25%, 15%);
  --card: hsl(40, 30%, 93%);
  --primary: hsl(150, 30%, 22%);
  --primary-fg: hsl(40, 33%, 96%);
  --secondary: hsl(345, 25%, 35%);
  --muted: hsl(40, 20%, 90%);
  --muted-fg: hsl(150, 10%, 40%);
  --accent: hsl(43, 60%, 50%);
  --border: hsl(40, 20%, 85%);
  --radius: 0.375rem;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* Layout */
.container { max-width: 72rem; margin: 0 auto; padding: 0 1rem; }
.container.narrow { max-width: 56rem; }
.text-center { text-align: center; }

/* Navigation */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: hsla(40, 33%, 96%, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 72rem; margin: 0 auto; padding: 0 1rem;
  display: flex; align-items: center; justify-content: space-between; height: 4rem;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; font-weight: 600; letter-spacing: 0.05em; color: var(--fg);
}
.nav-links {
  display: flex; align-items: center; gap: 2rem;
}
.nav-links a {
  font-size: 0.875rem; font-weight: 500; color: var(--muted-fg);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--fg); }
.nav-actions { display: flex; align-items: center; gap: 0.75rem; }
.lang-toggle {
  padding: 0.25rem 0.75rem; font-size: 0.75rem; font-weight: 600;
  border: 1px solid var(--border); border-radius: 2px; background: transparent;
  letter-spacing: 0.15em; cursor: pointer; transition: background 0.2s;
}
.lang-toggle:hover { background: var(--muted); }
.menu-toggle {
  display: none; background: none; border: none; cursor: pointer; color: var(--fg);
}

/* Mobile nav */
@media (max-width: 768px) {
  .nav-links {
    display: none; flex-direction: column; align-items: stretch;
    position: absolute; top: 4rem; left: 0; right: 0;
    background: var(--bg); border-bottom: 1px solid var(--border);
    padding: 0.5rem 1rem 1rem;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.5rem 0; }
  .menu-toggle { display: block; }
}

/* Divider */
.divider {
  display: inline-block; width: 3rem; height: 1px; background: var(--accent);
}

/* Section */
.section { padding: 6rem 1rem; }
.bg-card { background: var(--card); }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 {
  font-size: clamp(1.875rem, 4vw, 2.25rem); font-weight: 600; color: var(--fg); margin: 0.5rem 0;
}
.section-intro {
  text-align: center; color: var(--muted-fg); max-width: 40rem; margin: 0 auto 4rem;
  line-height: 1.7;
}

/* Hero */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0.3;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, hsla(150,30%,22%,0.2), hsla(150,30%,22%,0.1), var(--bg));
}
.hero-content {
  position: relative; z-index: 1; text-align: center; padding: 1rem; max-width: 48rem;
  animation: fadeIn 1s ease-out;
}
.hero-content h1 {
  font-size: clamp(3rem, 8vw, 4.5rem); font-weight: 700; color: var(--fg);
  margin-bottom: 1.5rem; letter-spacing: -0.02em;
}
.hero-content .divider { width: 4rem; margin-bottom: 1.5rem; }
.hero-location {
  font-size: clamp(1.125rem, 2.5vw, 1.25rem); color: var(--muted-fg);
  font-weight: 300; margin-bottom: 0.5rem;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.125rem); color: var(--muted-fg);
  font-weight: 300; line-height: 1.7; max-width: 36rem; margin: 0 auto 2.5rem;
}

/* Button */
.btn {
  display: inline-flex; align-items: center; gap: 0.75rem;
  padding: 0.75rem 2rem; background: var(--primary); color: var(--primary-fg);
  font-size: 0.875rem; font-weight: 500; letter-spacing: 0.05em;
  border-radius: 2px; transition: opacity 0.2s; border: none; cursor: pointer;
}
.btn:hover { opacity: 0.9; }

/* About */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.about-image {
  aspect-ratio: 4/5; border-radius: 2px; overflow: hidden; background: var(--muted);
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-text { display: flex; flex-direction: column; gap: 1.5rem; }
.about-text p { color: var(--muted-fg); line-height: 1.7; }

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; }
}

/* Gallery */
.gallery {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; margin-bottom: 4rem;
}
.gallery-item {
  aspect-ratio: 4/3; border-radius: 2px; overflow: hidden; background: var(--muted);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 640px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
}

/* Cards */
.cards-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; margin-bottom: 4rem;
}
.card {
  padding: 2rem; border: 1px solid var(--border); border-radius: 2px; background: var(--bg);
}
.card h3 {
  font-size: 1.25rem; font-weight: 600; color: var(--fg); margin-bottom: 1rem;
}
.card p { color: var(--muted-fg); line-height: 1.7; }

@media (max-width: 768px) {
  .cards-row { grid-template-columns: 1fr; }
}

/* Features */
.features {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
  max-width: 40rem; margin: 0 auto;
}
.feature-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.875rem; color: var(--muted-fg);
}
.feature-check { color: var(--accent); flex-shrink: 0; }

@media (max-width: 640px) {
  .features { grid-template-columns: repeat(2, 1fr); }
}

/* Excursions */
.excursions-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
}
.excursion-card {
  padding: 1.5rem; border: 1px solid var(--border); border-radius: 2px;
  background: var(--bg); transition: border-color 0.2s;
}
.excursion-card:hover { border-color: var(--accent); }
.excursion-inner { display: flex; gap: 0.75rem; align-items: flex-start; }
.excursion-icon { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.excursion-card h3 {
  font-size: 1.125rem; font-weight: 600; color: var(--fg); margin-bottom: 0.5rem;
}
.excursion-card p { font-size: 0.875rem; color: var(--muted-fg); line-height: 1.7; }

@media (max-width: 640px) {
  .excursions-grid { grid-template-columns: 1fr; }
}

/* Contact */
.contact-actions { margin-bottom: 3rem; }
.contact-address {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-size: 0.875rem; color: var(--muted-fg);
}
.contact-address svg { color: var(--accent); }

/* Footer */
.footer { padding: 2rem 1rem; border-top: 1px solid var(--border); }
.footer-inner {
  max-width: 72rem; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; font-size: 0.875rem; color: var(--muted-fg);
  flex-wrap: wrap;
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
