/* ===== FONT IMPORT ===== */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@200;300;400;500;600&display=swap');

/* ===== ROOT & RESET ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --primary-green: #2d6a4f;
  --light-green:   #52b788;
  --accent:        #6DBF8A;
  --accent-soft:   #90D4A4;
  --mint:          #95d5b2;
  --pale-mint:     #E8F4EE;
  --white:         #ffffff;
  --off-white:     #F4F7F2;
  --cream:         #EAF2EC;
  --light-gray:    #EDF2EA;
  --border-gray:   #DFF0E6;
  --text-dark:     #182016;
  --text-gray:     #3D6450;
  --shadow-sm: 0 2px 8px rgba(24, 32, 22, 0.07);
  --shadow-md: 0 4px 20px rgba(24, 32, 22, 0.10);
  --shadow-lg: 0 10px 40px rgba(24, 32, 22, 0.15);
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text-dark);
  line-height: 1.7;
  background: var(--white);
}

h1, h2, h3 { font-family: 'Cormorant Garamond', serif; line-height: 1.15; color: var(--text-dark); }
h4, h5     { font-family: 'Cormorant Garamond', serif; line-height: 1.3;  color: var(--text-dark); }
h1 { font-size: clamp(3rem, 6vw, 5rem); font-family: 'Raleway', sans-serif; font-weight: 400; letter-spacing: 0.04em; }
h2 { font-size: clamp(2.4rem, 4.5vw, 3.8rem); font-family: 'Raleway', sans-serif; font-weight: 400; letter-spacing: 0.02em; line-height: 1.15; }
h3 { font-size: clamp(1.6rem, 2.8vw, 2.2rem); font-family: 'Raleway', sans-serif; font-weight: 500; letter-spacing: 0.01em; }
h4 { font-size: 1.25rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }

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

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 12px rgba(24, 32, 22, 0.07);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-gray);
}

.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: flex; justify-content: space-between; align-items: center;
  height: 82px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.nav-logo svg {
  filter: drop-shadow(0 2px 4px rgba(45, 106, 79, 0.2));
  flex-shrink: 0;
}

/* Two-line stylish wordmark */
.nav-wordmark {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  line-height: 1;
}

.nav-wordmark-top {
  font-family: 'Urbanist', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #182016 0%, #52b788 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-wordmark-btm {
  font-family: 'Urbanist', sans-serif;
  font-size: 0.52rem;
  font-weight: 200;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--text-gray);
}

.nav-menu {
  display: flex; gap: 2.5rem; list-style: none;
}

.nav-menu a {
  font-size: 0.7rem; font-weight: 600;
  color: var(--text-gray);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  position: relative;
}

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

.nav-menu a::after {
  content: ''; position: absolute; bottom: -6px; left: 0; right: 0;
  height: 1px; background: var(--accent);
  transform: scaleX(0); transition: transform 0.3s;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  transform: scaleX(1);
}

/* ===== LANGUAGE SWITCHER ===== */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-left: 1.2rem;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  text-decoration: none;
  opacity: 0.5;
  transition: opacity 0.2s, transform 0.2s;
  line-height: 1;
  overflow: hidden;
  padding: 0;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

.lang-btn:hover {
  opacity: 1;
  transform: scale(1.12);
}

.lang-btn.lang-active {
  opacity: 1;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.18));
}

/* ===== HERO ===== */
.hero {
  height: 100vh; min-height: 700px;
  background: linear-gradient(170deg, rgba(11, 42, 24, 0.45) 0%, rgba(27, 67, 50, 0.30) 50%, rgba(45, 90, 70, 0.20) 100%),
              url('images/Hauptbild.jpg') center 40%/cover no-repeat;
  display: flex; align-items: center; justify-content: center;
  text-align: center; position: relative; overflow: hidden;
  margin-top: 82px;
}

/* Vignette */
.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 40%, transparent 35%, rgba(8, 28, 16, 0.55) 100%);
}

/* Mountain ridge silhouette */
.hero-ridge {
  position: absolute; bottom: -1px; left: 0; right: 0;
  line-height: 0; z-index: 3;
}
.hero-ridge svg { width: 100%; display: block; }

.hero-content {
  position: relative; z-index: 2;
  max-width: 860px; padding: 2rem;
}

.hero-tag {
  display: inline-flex; align-items: center; gap: 0.9rem;
  font-size: 0.75rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent-soft); font-weight: 500;
  margin-bottom: 1.8rem;
}
.hero-tag::before,
.hero-tag::after {
  content: ''; display: inline-block;
  width: 36px; height: 1px; background: var(--accent-soft); opacity: 0.7;
}

.hero-content h1 {
  margin-bottom: 1.8rem;
  text-shadow: 0 2px 40px rgba(0,0,0,0.5);
}

.hero-line1 {
  display: block;
  font-family: 'Urbanist', sans-serif;
  font-size: clamp(1.9rem, 3.5vw, 3.0rem);
  font-weight: 200;
  letter-spacing: 0.12em;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 0.1em;
}

.hero-line2 {
  display: block;
  font-family: 'Urbanist', sans-serif;
  font-size: clamp(4rem, 7.5vw, 7rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.hero-accent { color: var(--accent); }
.hero-plain  { color: var(--white); }

.hero-tagline {
  font-family: 'Urbanist', sans-serif;
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
  font-weight: 300;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.90);
  margin-bottom: 2.8rem;
  line-height: 1.5;
}

.hero-content p {
  font-size: 1rem; color: rgba(255,255,255,0.78);
  max-width: 520px; margin: 0 auto 2.8rem;
  line-height: 1.8;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.hero-buttons {
  display: flex; gap: 1.2rem;
  justify-content: center; flex-wrap: wrap;
}

.scroll-indicator {
  position: absolute; bottom: 8rem; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.55);
  font-size: 1.4rem;
  animation: bounce 2.5s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.55; }
  50% { transform: translateX(-50%) translateY(10px); opacity: 0.9; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.95rem 2.6rem;
  border-radius: 2px;
  font-weight: 600; font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-green), var(--accent));
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent), var(--primary-green));
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

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

.btn-white {
  background: var(--white);
  color: var(--primary-green);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* ===== SECTIONS ===== */
section { padding: 6rem 0; }

.section-label {
  display: inline-block;
  font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--primary-green); font-weight: 600;
  margin-bottom: 1rem;
  padding-bottom: 0.15rem;
  border-bottom: 1.5px solid var(--accent);
}

.section-header {
  margin-bottom: 3.5rem;
  position: relative;
}

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

.section-header.center::after {
  content: '';
  position: absolute;
  bottom: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 1px;
  background: var(--accent);
  opacity: 0.55;
}

.section-header p {
  color: var(--text-gray);
  max-width: 600px;
  margin: 1rem auto 0;
}

/* ===== INTRO SECTION — Trek with Confidence ===== */
.intro {
  background: var(--off-white);
  box-shadow: 0 10px 32px rgba(30, 60, 35, 0.10);
  position: relative;
  z-index: 2;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.intro-text h2 { margin-bottom: 1.5rem; }
.intro-text p  { color: var(--text-gray); margin-bottom: 1.2rem; }

.intro-image img {
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(24, 32, 22, 0.15);
}

.link-arrow {
  display: inline-block;
  margin-top: 1rem;
  color: var(--primary-green);
  font-weight: 600;
}

.link-arrow:hover {
  color: var(--accent);
  transform: translateX(5px);
}

/* ===== FEATURED DESTINATIONS ===== */
.featured-destinations {
  background: var(--cream);
  box-shadow: 0 10px 32px rgba(30, 60, 35, 0.08);
  position: relative;
  z-index: 1;
}

.dest-featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.dest-featured-card {
  display: block;
  background: var(--white);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(24, 32, 22, 0.06);
  border: 1px solid rgba(24, 32, 22, 0.07);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  color: inherit;
  text-decoration: none;
}

.dest-featured-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(24, 32, 22, 0.14);
}

.dest-featured-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.dest-featured-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.dest-featured-card:hover .dest-featured-image img {
  transform: scale(1.08);
}

.dest-featured-content {
  padding: 1.8rem;
}

.dest-location {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.dest-featured-content h3 {
  margin-bottom: 0.8rem;
  color: var(--text-dark);
}

.dest-featured-content p {
  color: var(--text-gray);
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
}

.link-simple {
  color: var(--primary-green);
  font-weight: 600;
  font-size: 0.9rem;
}

.link-simple:hover {
  color: var(--accent);
}

.cta-center {
  text-align: center;
  margin-top: 2rem;
}

/* ===== STATS SECTION ===== */
.stats-section {
  background: var(--accent);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.stat-item h3 {
  font-size: clamp(2.8rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 0.4rem;
  font-family: 'Urbanist', sans-serif;
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1;
}

.stat-item p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--accent);
}

.cta-box {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  padding: 4.5rem 4rem;
  background: rgba(255,255,255,0.92);
  border-radius: 2px;
  box-shadow: 0 8px 48px rgba(24, 32, 22, 0.12);
  border: 1px solid rgba(255,255,255,0.6);
}

.cta-box h2 {
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.cta-box p {
  color: var(--text-gray);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

/* ===== PAGE HERO (subpages) ===== */
.page-hero {
  height: 50vh;
  background: linear-gradient(135deg, rgba(24, 32, 22, 0.80), rgba(45, 106, 79, 0.65)),
              url('images/Hauptbild.jpg') center/cover no-repeat;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  margin-top: 82px;
}

.page-hero h1 { color: white; }
.page-hero p  { color: rgba(255,255,255,0.88); }

/* ===== DESTINATION DETAIL HERO ===== */
.dest-hero {
  height: 70vh;
  display: flex; align-items: center; justify-content: center;
  margin-top: 82px;
  position: relative;
}

.dest-hero-content {
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 2rem;
}

.dest-hero h1 {
  color: white;
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 1rem;
}

/* ===== INFO BOXES (tour pages) ===== */
.info-box {
  background: var(--pale-mint);
  padding: 2rem;
  border-radius: 4px;
  text-align: center;
}

.info-box h4 {
  color: var(--primary-green);
  margin-bottom: 0.5rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.info-box p {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 1.1rem;
}

.trek-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--white);
  color: var(--text-dark);
  padding: 3.5rem 0 1.5rem;
  border-top: 1px solid var(--border-gray);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer-col h4, .footer-col h5 {
  color: var(--primary-green);
  margin-bottom: 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: 'Urbanist', sans-serif;
  font-weight: 600;
}

.footer-col p {
  color: var(--text-gray);
  font-size: 0.9rem;
  line-height: 1.7;
}

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

.footer-col ul li {
  margin-bottom: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-gray);
}

.footer-col ul li a:hover {
  color: var(--accent);
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-gray);
  font-size: 0.82rem;
  color: var(--text-gray);
}

/* ===== MOBILE HAMBURGER ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary-green);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.99);
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0 1rem;
    border-top: 1px solid var(--border-gray);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(12px);
  }
  .nav-menu.open { display: flex; }
  .nav-menu li { border-bottom: 1px solid var(--border-gray); }
  .nav-menu a { display: block; padding: 0.9rem 2rem; }
  .nav-menu a::after { display: none; }
  .hero { min-height: 550px; }
  .intro-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  section { padding: 3.5rem 0; }
  .dest-featured-grid { grid-template-columns: 1fr; }
  .cta-box { padding: 3rem 2rem; }
}
