/* ============================================
   LakeView Berlin — Premium Event & Charter
   CI: Lake Blue #3e5468, Brown #a47053, White
   ============================================ */

:root {
  --lake-blue: #3e5468;
  --lake-blue-light: #4d6a82;
  --lake-blue-dark: #2d3e4f;
  --brown: #a47053;
  --brown-light: #b8876c;
  --cream: #f7f4f0;
  --white: #ffffff;
  --text: #2c2c2c;
  --text-light: #6b6b6b;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  background: var(--white);
}

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-weight: 400;
  line-height: 1.2;
  color: var(--lake-blue);
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }

p {
  font-size: 1.05rem;
  max-width: 680px;
}

a {
  color: var(--brown);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover { color: var(--lake-blue); }

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

.section { padding: 8rem 0; }
.section--cream { background: var(--cream); }

.section--blue {
  background: var(--lake-blue);
  color: var(--white);
}
.section--blue h2,
.section--blue h3 { color: var(--white); }
.section--blue p { color: rgba(255,255,255,0.85); }

.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 1.5rem;
  display: block;
}

.section--blue .section-label { color: var(--brown-light); }
.section-title { margin-bottom: 2rem; }
.section-text { color: var(--text-light); margin-bottom: 3rem; }

/* ============================================
   Navigation
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: all var(--transition);
}

.nav.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1rem 0;
  box-shadow: 0 1px 0 rgba(62,84,104,0.08);
}

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

.nav__logo img {
  height: 28px;
  width: auto;
}

.nav__logo .logo-dark { display: none; }
.nav.scrolled .nav__logo .logo-light { display: none; }
.nav.scrolled .nav__logo .logo-dark { display: block; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav__links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  transition: color var(--transition);
}

.nav.scrolled .nav__links a { color: var(--lake-blue); }
.nav__links a:hover { color: var(--brown); }

.nav__cta {
  padding: 0.6rem 1.5rem !important;
  border: 1px solid var(--white);
  transition: all var(--transition) !important;
}

.nav.scrolled .nav__cta { border-color: var(--lake-blue) !important; }

.nav__cta:hover {
  background: var(--white) !important;
  color: var(--lake-blue) !important;
}

.nav.scrolled .nav__cta:hover {
  background: var(--lake-blue) !important;
  color: var(--white) !important;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}

.nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}

.nav.scrolled .nav__toggle span { background: var(--lake-blue); }

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(45,62,79,0.4) 0%,
      rgba(45,62,79,0.1) 40%,
      rgba(45,62,79,0.55) 100%),
    url('../assets/images/hero.jpg') center/cover no-repeat;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 2rem;
}

.hero__logo {
  width: clamp(220px, 30vw, 380px);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.3s forwards;
}

.hero__tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 300;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.9);
  margin-bottom: 0.8rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.6s forwards;
}

.hero__sub {
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.8s forwards;
}

.hero__cta {
  display: inline-block;
  padding: 1rem 3rem;
  border: 1px solid rgba(255,255,255,0.6);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all var(--transition);
  opacity: 0;
  animation: fadeUp 1s ease 1s forwards;
}

.hero__cta:hover {
  background: var(--white);
  color: var(--lake-blue);
  border-color: var(--white);
}

.hero__scroll {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: fadeUp 1s ease 1.2s forwards;
  opacity: 0;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  animation: scrollLine 2s ease infinite;
}

/* ============================================
   Intro / About
   ============================================ */
.intro { text-align: center; }

.intro p {
  margin: 0 auto 1.5rem;
  font-size: 1.15rem;
  color: var(--text-light);
}

.intro__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 4rem;
  border-top: 1px solid rgba(62,84,104,0.1);
}

.stat__number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  color: var(--lake-blue);
  display: block;
  margin-bottom: 0.5rem;
}

.stat__label {
  font-size: 0.85rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

/* ============================================
   Parallax Image Band
   ============================================ */
.parallax-band {
  height: 50vh;
  min-height: 350px;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.parallax-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(45,62,79,0.2);
}

@supports (-webkit-touch-callout: none) {
  .parallax-band { background-attachment: scroll; }
}

/* ============================================
   Experience
   ============================================ */
.experience__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.experience__visual {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}

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

.experience__features {
  list-style: none;
  margin-top: 2.5rem;
}

.experience__features li {
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(62,84,104,0.08);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.95rem;
  color: var(--text-light);
}

.experience__features li::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--brown);
  margin-top: 0.8rem;
  flex-shrink: 0;
}

/* ============================================
   The Boat
   ============================================ */
.boat__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.boat__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.boat__images .img-main {
  grid-column: 1 / -1;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.boat__images .img-secondary {
  aspect-ratio: 1;
  overflow: hidden;
}

.boat__images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.boat__images img:hover {
  transform: scale(1.04);
}

.boat__specs {
  list-style: none;
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.boat__specs li {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(62,84,104,0.08);
  font-size: 0.9rem;
}

.boat__specs-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 0.3rem;
}

.boat__specs-value {
  color: var(--lake-blue);
  font-weight: 500;
}

/* ============================================
   Packages
   ============================================ */
.packages__intro {
  text-align: center;
  margin-bottom: 4rem;
}

.packages__intro p { margin: 0 auto; }

.packages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.package-card {
  padding: 3rem 2.5rem;
  border: 1px solid rgba(62,84,104,0.1);
  text-align: center;
  transition: all var(--transition);
  position: relative;
}

.package-card:hover { border-color: var(--brown); }

.package-card--featured {
  border-color: var(--lake-blue);
  background: var(--lake-blue);
  color: var(--white);
}

.package-card--featured h3 { color: var(--white); }

.package-card--featured .package-card__items li {
  color: rgba(255,255,255,0.75);
  border-color: rgba(255,255,255,0.1);
}

.package-card__badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.4rem 1.2rem;
  background: var(--brown);
  color: var(--white);
}

.package-card h3 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}

.package-card__items {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
}

.package-card__items li {
  padding: 0.6rem 0;
  font-size: 0.9rem;
  color: var(--text-light);
  border-bottom: 1px solid rgba(62,84,104,0.06);
}

.package-card__note {
  font-size: 0.85rem;
  color: var(--text-light);
  font-style: italic;
}

.package-card--featured .package-card__note {
  color: rgba(255,255,255,0.6);
}

/* ============================================
   Gallery
   ============================================ */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.gallery__item {
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
}

.gallery__item--wide {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery__item:hover img {
  transform: scale(1.06);
}

/* ============================================
   Location
   ============================================ */
.location__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.location__map {
  aspect-ratio: 1;
  overflow: hidden;
}

.location__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.5) contrast(1.05);
  transition: filter var(--transition);
}

.location__map:hover iframe { filter: grayscale(0); }

.location__details {
  list-style: none;
  margin-top: 2.5rem;
}

.location__details li {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(62,84,104,0.08);
  display: flex;
  gap: 1.5rem;
  font-size: 0.95rem;
}

.location__details-label {
  font-weight: 600;
  color: var(--lake-blue);
  min-width: 100px;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.location__details-value { color: var(--text-light); }

/* ============================================
   Contact / Anfrage
   ============================================ */
.contact { text-align: center; }

.contact__form {
  max-width: 640px;
  margin: 3rem auto 0;
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group { margin-bottom: 1.5rem; }
.form-group--full { grid-column: 1 / -1; }

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: border-color var(--transition);
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.4);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brown-light);
}

.form-group select option {
  background: var(--lake-blue-dark);
  color: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form__submit {
  display: inline-block;
  padding: 1rem 3.5rem;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.5);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  margin-top: 1rem;
}

.form__submit:hover {
  background: var(--white);
  color: var(--lake-blue);
  border-color: var(--white);
}

.contact__note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-top: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--lake-blue-dark);
  color: rgba(255,255,255,0.6);
  padding: 4rem 0 2rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__logo img {
  height: 24px;
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

.footer__desc {
  font-size: 0.85rem;
  line-height: 1.8;
  max-width: 320px;
}

.footer__heading {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.5rem;
}

.footer__links {
  list-style: none;
}

.footer__links li { margin-bottom: 0.8rem; }

.footer__links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer__links a:hover { color: var(--white); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  font-size: 0.75rem;
}

.footer__legal {
  display: flex;
  gap: 2rem;
}

.footer__legal a {
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
}

.footer__legal a:hover { color: var(--white); }

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

@keyframes scrollLine {
  0% { top: -100%; }
  50% { top: 100%; }
  100% { top: 100%; }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* ============================================
   Legal Pages
   ============================================ */
.legal-page {
  padding-top: 10rem;
  padding-bottom: 6rem;
}

.legal-page h1 { margin-bottom: 3rem; }

.legal-page h2 {
  font-size: 1.4rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.legal-page p {
  margin-bottom: 1rem;
  max-width: 100%;
}

.legal-page ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.legal-page li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: var(--text-light);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 968px) {
  .section { padding: 5rem 0; }

  .nav__links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--lake-blue-dark);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    z-index: 999;
  }

  .nav__links.active { display: flex; }
  .nav__links.active a { color: var(--white) !important; font-size: 1.2rem; }
  .nav__toggle { display: flex; z-index: 1001; }

  .experience__grid,
  .boat__grid,
  .location__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .packages__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .gallery__grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery__item--wide {
    grid-column: span 2;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .form-row { grid-template-columns: 1fr; }

  .parallax-band { background-attachment: scroll; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.2rem; }

  .intro__stats {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__item--wide { grid-column: span 1; aspect-ratio: 16/9; }

  .hero { min-height: 100svh; }

  .boat__images { grid-template-columns: 1fr; }
  .boat__specs { grid-template-columns: 1fr; }
}
