* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: #0b0f14;
  color: #f4f7fb;
  line-height: 1.6;
  overflow-x: hidden;
}

img,
video {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 110px 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease;
}

.site-header.scrolled {
  background: rgba(8, 12, 17, 0.75);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark{
  width:80px;
  height:80px;
  

  display:flex;
  align-items:center;
  justify-content:center;

  overflow:hidden;
}

.brand-mark img{
  width:100%;
  height:auto;
  object-fit:contain;
}

.logo-text {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 600;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background: #7cff3a;
  transition: 0.3s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 800;
  transition: 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-accent {
  background: linear-gradient(135deg, #7cff3a, #16d97a);
  color: #091017;
  box-shadow: 0 16px 30px rgba(80, 255, 120, 0.2);
}

.btn-accent:hover {
  transform: translateY(-2px);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.16);
}

.btn-dark-outline {
  background: transparent;
  color: #0d1117;
  border: 2px solid rgba(13, 17, 23, 0.16);
}

.btn-dark-outline:hover {
  background: rgba(13, 17, 23, 0.05);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 8, 12, 0.36) 0%, rgba(5, 8, 12, 0.48) 38%, rgba(5, 8, 12, 0.82) 100%);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(124, 255, 58, 0.16), transparent 24%),
    radial-gradient(circle at 80% 30%, rgba(22, 217, 122, 0.14), transparent 22%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: 90px;
  margin-top: auto;
  margin-left: auto;
  margin-right: auto;
  width: min(1280px, calc(100% - 48px));

}

.hero-tag,
.section-label {
  display: inline-block;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #dfffe6;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 22px;
  backdrop-filter: blur(10px);
}

.section-label.light {
  background: rgba(255, 255, 255, 0.08);
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 0.96;
  font-weight: 900;
  letter-spacing: -2px;
  max-width: 920px;
  margin-bottom: 24px;
}

.hero p {
  max-width: 760px;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 900px;
}

.hero-stat {
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.hero-stat strong {
  display: block;
  font-size: 1.15rem;
  color: #7cff3a;
  margin-bottom: 6px;
}

.hero-stat span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 3;
  width: 36px;
  height: 60px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  display: grid;
  place-items: start center;
  padding-top: 10px;
}

.scroll-indicator span {
  width: 6px;
  height: 14px;
  border-radius: 999px;
  background: #7cff3a;
  animation: scrollDot 1.6s infinite;
}

@keyframes scrollDot {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(18px);
  }
}

.quick-intro {
  position: relative;
  margin-top: -50px;
  z-index: 5;
}

.quick-intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.intro-box {
  background: linear-gradient(180deg, rgba(18, 26, 34, 0.96), rgba(11, 15, 20, 0.96));
  border: 1px solid rgba(124, 255, 58, 0.14);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.24);
  border-radius: 28px;
  padding: 28px;
}

.intro-box span {
  display: inline-block;
  color: #7cff3a;
  font-size: 0.9rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.intro-box h3 {
  font-size: 1.25rem;
  line-height: 1.3;
}

.experiences {
  background: linear-gradient(180deg, #0b0f14 0%, #111a22 100%);
}

.section-head {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-head h2,
.split-left h2,
.lifestyle-text h2,
.booking-text h2,
.final-cta-box h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.05;
  margin-bottom: 18px;
  font-weight: 900;
  letter-spacing: -1.2px;
}

.section-head p,
.split-left p,
.lifestyle-text p,
.booking-text p {
  color: rgba(244, 247, 251, 0.72);
}

.section-head-light p {
  color: rgba(255, 255, 255, 0.72);
}

.experience-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 22px;
}

.experience-card {
  min-height: 300px;
  border-radius: 30px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
   
}

.experience-card.large {
  min-height: 460px;
}

.experience-content {
  position: relative;
  z-index: 2;
}

.experience-type {
  display: inline-block;
  margin-bottom: 12px;
  color: #7cff3a;
  font-weight: 800;
  font-size: 0.9rem;
}

.experience-card:nth-child(1){
  background:
  linear-gradient(180deg, rgba(10,16,22,.2), rgba(10,16,22,.9)),
  url("images/pano.png") center/cover;
}

.experience-card:nth-child(2){
  background:
  linear-gradient(180deg, rgba(10,16,22,.2), rgba(10,16,22,.9)),
  url("images/gruppe.png") center/cover;
}

.experience-card:nth-child(3){
  background:
  linear-gradient(180deg, rgba(10,16,22,.2), rgba(10,16,22,.9)),
  url("images/tour-3.png") center/cover;
}

.experience-card h3,
.spot-content h3,
.point-card strong {
  font-size: 1.5rem;
  line-height: 1.2;
  margin-bottom: 12px;
  font-weight: 800;
}

.experience-card p,
.spot-content p,
.point-card span,
.booking-contact p {
  color: rgba(255, 255, 255, 0.74);
}

.text-link {
  display: inline-block;
  margin-top: 18px;
  color: #7cff3a;
  font-weight: 800;
}

.split-section {
  background: #f4f7fb;
  color: #0d1117;
}

.split-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.split-left p {
  color: rgba(13, 17, 23, 0.72);
}

.feature-list {
  list-style: none;
  margin: 28px 0 34px;
  display: grid;
  gap: 14px;
}

.feature-list li {
  position: relative;
  padding-left: 32px;
  color: #25313b;
  font-weight: 600;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #16d97a;
  font-weight: 900;
}

.split-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.training-panel {
  background: #0e141b;
  color: #fff;
  border-radius: 32px;
  padding: 30px;
  box-shadow: 0 25px 50px rgba(5, 8, 12, 0.18);
}

.training-row {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.training-row:last-child {
  border-bottom: none;
}

.training-row strong {
  display: block;
  color: #7cff3a;
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.training-row span {
  color: rgba(255, 255, 255, 0.76);
}

.dark-section {
  background: linear-gradient(180deg, #0a0d12 0%, #0c1117 100%);
}

.spot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.spot-card {
  background: #121920;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 26px;
  overflow: hidden;
}

.spot-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.spot-content {
  padding: 24px;
}

.lifestyle-section {
  background: #121922;
}

.lifestyle-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  align-items: center;
}

.lifestyle-image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: 32px;
}

.lifestyle-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.point-card {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(124, 255, 58, 0.1);
}

.point-card strong {
  display: block;
  color: #7cff3a;
}

.booking-section {
  background: #f4f7fb;
  color: #0d1117;
}

.booking-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 32px;
  align-items: start;
}

.booking-text p {
  color: rgba(13, 17, 23, 0.72);
}

.booking-contact {
  margin-top: 26px;
  display: grid;
  gap: 10px;
}

.booking-contact p {
  color: #3b4954;
}

.booking-form {
  background: #ffffff;
  border: 1px solid rgba(13, 17, 23, 0.08);
  border-radius: 30px;
  padding: 32px;
  box-shadow: 0 20px 40px rgba(14, 20, 27, 0.08);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group-full {
  grid-column: 1 / -1;
}

.form-group label {
  margin-bottom: 8px;
  font-weight: 700;
  color: #1a242d;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px 16px;
  border-radius: 16px;
  border: 1px solid #d8e0e7;
  background: #f8fbfd;
  color: #0d1117;
  font: inherit;
  outline: none;
  transition: 0.25s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #16d97a;
  box-shadow: 0 0 0 4px rgba(22, 217, 122, 0.12);
}

.submit-btn {
  margin-top: 22px;
}

.form-message {
  margin-top: 16px;
  font-weight: 700;
  color: #1d8e56;
}

.final-cta {
  padding: 0 0 100px;
  background: #f4f7fb;
}

.final-cta-box {
  text-align: center;
  padding: 70px 30px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(124, 255, 58, 0.16), transparent 20%),
    linear-gradient(135deg, #091017, #121a22);
  color: #fff;
  box-shadow: 0 30px 60px rgba(10, 15, 20, 0.18);
}

.final-cta-box h2 {
  margin-bottom: 14px;
}

.final-cta-box p {
  max-width: 760px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer {
  background: #0a0e13;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 600;
}

.scroll-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, #7cff3a, #16d97a);
  color: #091017;
  font-size: 1.15rem;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(80, 255, 120, 0.22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s ease;
  z-index: 999;
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.24s;
}

.delay-3 {
  transition-delay: 0.36s;
}

@media (max-width: 1100px) {
  .hero-stats,
  .quick-intro-grid,
  .spot-grid,
  .lifestyle-points {
    grid-template-columns: 1fr;
  }

  .experience-grid,
  .split-layout,
  .lifestyle-layout,
  .booking-layout {
    grid-template-columns: 1fr 1fr;
  }

}

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .header-cta {
    display: none;
  }

  .main-nav {
    position: absolute;
    top: 88px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    border-radius: 22px;
    background: rgba(8, 12, 17, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
  }

  .main-nav.open {
    display: flex;
  }

  .experience-grid,
  .split-layout,
  .spot-grid,
  .lifestyle-layout,
  .booking-layout,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 95vh;
  }

  .hero-content {
    padding-bottom: 80px;
  }

  .section {
    padding: 85px 0;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .hero h1 {
    font-size: 2.7rem;
    letter-spacing: -1px;
  }

  .btn {
    width: 100%;
  }

  .hero-actions,
  .split-actions {
    flex-direction: column;
  }

  .intro-box,
  .experience-card,
  .training-panel,
  .booking-form,
  .final-cta-box,
  .point-card {
    padding: 24px;
  }
}