/* ============================================================
   DENISE KOLL — City Landing Pages
   Aesthetic: Editorial Romance
   ============================================================ */

/* --- Design Tokens --- */
:root {
  --koll-white: #ffffff;
  --koll-cream: #faf8f5;
  --koll-warm-gray: #f3eeea;
  --koll-warm-light: #f0ebe5;
  --koll-mauve: #c4a7b3;
  --koll-mauve-soft: #d6c3cd;
  --koll-mauve-deep: #9e7e8c;
  --koll-mauve-glow: rgba(196, 167, 179, 0.15);
  --koll-text: #2a2a2a;
  --koll-text-soft: #5a5a5a;
  --koll-text-muted: #8a8a8a;
  --koll-dark: #1a1a1a;
  --koll-dark-soft: #2e2e2e;
  --koll-border: rgba(42, 42, 42, 0.08);

  --koll-font-serif: "Fraunces", "Georgia", serif;
  --koll-font-sans: "Montserrat", "Helvetica Neue", sans-serif;

  --koll-ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --koll-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --koll-ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);

  --koll-nav-h: 72px;
  --koll-container-w: 1280px;
  --koll-section-py: clamp(64px, 10vw, 120px);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

.koll-city-page {
  font-family: var(--koll-font-sans);
  font-weight: 400;
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.7;
  color: var(--koll-text);
  background: var(--koll-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.koll-city-page img {
  display: block;
  max-width: 100%;
  height: auto;
}

.koll-city-page a {
  color: inherit;
  text-decoration: none;
}

.koll-city-page h1,
.koll-city-page h2,
.koll-city-page h3,
.koll-city-page h4 {
  font-family: var(--koll-font-sans);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2em !important;
  line-height: 1.25;
}

.koll-city-page h2 {
  font-size: clamp(22px, 2.8vw, 36px);
  color: var(--koll-text);
}

.koll-city-page h3 {
  font-size: clamp(16px, 1.6vw, 22px);
}

/* Fraunces als Subheadline-Stil */
.koll-hero-sub,
.koll-hero-tagline,
.koll-section-sub,
.koll-price {
  font-family: var(--koll-font-serif) !important;
  font-style: italic;
  font-weight: 400;
  text-transform: none !important;
  letter-spacing: 0 !important;
}

/* --- Container --- */
.koll-container {
  width: 100%;
  max-width: var(--koll-container-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}


/* ============================================================
   NAVIGATION
   ============================================================ */
.koll-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--koll-nav-h);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--koll-border);
  transition: background 0.4s var(--koll-ease), box-shadow 0.4s var(--koll-ease);
}

.koll-nav-inner {
  max-width: var(--koll-container-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.koll-nav-logo img {
  height: 48px;
  width: auto;
  transition: opacity 0.3s var(--koll-ease);
}

.koll-nav-logo:hover img {
  opacity: 0.7;
}

.koll-nav-links {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.5vw, 40px);
}

.koll-nav-links a {
  font-family: var(--koll-font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--koll-text);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s var(--koll-ease);
}

.koll-nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--koll-mauve);
  transition: width 0.4s var(--koll-ease-out);
}

.koll-nav-links a:hover {
  color: var(--koll-mauve-deep);
}

.koll-nav-links a:hover::after {
  width: 100%;
}

/* Burger */
.koll-nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.koll-nav-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--koll-text);
  transition: all 0.35s var(--koll-ease-out);
  transform-origin: center;
}

.koll-nav-burger.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.koll-nav-burger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.koll-nav-burger.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile Menu */
.koll-mobile-menu {
  position: fixed;
  top: var(--koll-nav-h);
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 24px clamp(20px, 4vw, 48px) 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
  z-index: 999;
  transform: translateY(-110%);
  opacity: 0;
  transition: transform 0.5s var(--koll-ease-out), opacity 0.4s var(--koll-ease);
  border-bottom: 1px solid var(--koll-border);
}

.koll-mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
}

.koll-mobile-menu a {
  font-family: var(--koll-font-sans);
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 14px 0;
  border-bottom: 1px solid var(--koll-border);
  transition: color 0.3s var(--koll-ease), padding-left 0.3s var(--koll-ease-out);
}

.koll-mobile-menu a:last-child {
  border-bottom: none;
}

.koll-mobile-menu a:hover {
  color: var(--koll-mauve-deep);
  padding-left: 8px;
}


/* ============================================================
   HERO
   ============================================================ */
.koll-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 600px;
  overflow: hidden;
}

.koll-hero-image {
  position: absolute;
  inset: 0;
}

.koll-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  animation: heroZoom 20s var(--koll-ease) forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}

.koll-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(20, 18, 16, 0.7) 0%, rgba(20, 18, 16, 0.3) 35%, transparent 65%),
    linear-gradient(to bottom, rgba(20, 18, 16, 0.15) 0%, transparent 20%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: clamp(60px, 10vh, 140px);
}

.koll-hero-content {
  text-align: center;
  color: var(--koll-white);
  max-width: 800px;
  padding: 0 24px;
  animation: heroFadeUp 1.2s var(--koll-ease-out) 0.3s both;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.koll-hero-sub {
  font-family: var(--koll-font-serif);
  font-style: italic;
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 400;
  letter-spacing: 0 !important;
  text-transform: none;
  color: var(--koll-mauve-soft);
  margin-bottom: 16px;
}

.koll-hero-content h1 {
  font-family: var(--koll-font-sans);
  font-weight: 400;
  font-size: clamp(28px, 4.5vw, 56px);
  line-height: 1.15;
  letter-spacing: 0.2em !important;
  text-transform: uppercase;
  margin-bottom: 16px;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.15);
}

.koll-hero-tagline {
  font-family: var(--koll-font-serif);
  font-style: italic;
  font-size: clamp(15px, 1.3vw, 19px);
  font-weight: 400;
  letter-spacing: 0 !important;
  text-transform: none;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
}

/* --- Buttons --- */
.koll-btn {
  display: inline-block;
  font-family: var(--koll-font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 16px 40px;
  background: var(--koll-mauve);
  color: var(--koll-white);
  border: 1px solid var(--koll-mauve);
  transition: all 0.4s var(--koll-ease);
  cursor: pointer;
}

.koll-btn:hover {
  background: var(--koll-mauve-deep);
  border-color: var(--koll-mauve-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(158, 126, 140, 0.25);
}

.koll-btn-outline {
  display: inline-block;
  font-family: var(--koll-font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 16px 40px;
  background: transparent;
  color: var(--koll-text);
  border: 1px solid var(--koll-mauve);
  transition: all 0.4s var(--koll-ease);
  cursor: pointer;
}

.koll-btn-outline:hover {
  background: var(--koll-mauve);
  color: var(--koll-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(158, 126, 140, 0.2);
}

.koll-btn-lg {
  padding: 20px 52px;
  font-size: 12px;
}

.koll-cta-center {
  text-align: center;
  margin-top: 48px;
}


/* ============================================================
   SECTIONS — General
   ============================================================ */
.koll-section {
  padding: var(--koll-section-py) 0;
  position: relative;
}

.koll-section-sub {
  font-family: var(--koll-font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(15px, 1.2vw, 18px);
  color: var(--koll-text-soft);
  margin-top: 12px;
  margin-bottom: 0;
  text-transform: none;
  letter-spacing: 0 !important;
}

/* Decorative flourish between sections */
.koll-intro::before,
.koll-gallery-section::before,
.koll-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 1px;
  background: var(--koll-mauve);
  opacity: 0.5;
}


/* ============================================================
   INTRO
   ============================================================ */
.koll-intro {
  background: var(--koll-white);
}

.koll-intro-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}

.koll-intro-text h2 {
  margin-bottom: 28px;
}

.koll-intro-text p {
  color: var(--koll-text-soft);
  margin-bottom: 16px;
  max-width: 560px;
}

.koll-intro-text p:last-child {
  margin-bottom: 0;
}

.koll-intro-image {
  position: relative;
  overflow: hidden;
}

.koll-intro-image::before {
  content: "";
  position: absolute;
  top: -12px;
  right: -12px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--koll-mauve-soft);
  opacity: 0.4;
  z-index: 1;
  pointer-events: none;
}

.koll-intro-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  position: relative;
  z-index: 2;
}


/* ============================================================
   PAKETE
   ============================================================ */
.koll-pakete {
  background: var(--koll-cream);
}

.koll-pakete > .koll-container > h2 {
  text-align: center;
}

.koll-pakete .koll-section-sub {
  text-align: center;
}

.koll-pakete-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 36px);
  margin-top: clamp(36px, 5vw, 64px);
}

.koll-paket {
  background: var(--koll-white);
  border: 1px solid var(--koll-border);
  transition: transform 0.5s var(--koll-ease-out), box-shadow 0.5s var(--koll-ease);
}

.koll-paket:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(42, 42, 42, 0.08), 0 4px 16px rgba(42, 42, 42, 0.04);
}

.koll-paket-img {
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.koll-paket-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--koll-ease-out);
}

.koll-paket:hover .koll-paket-img img {
  transform: scale(1.06);
}

.koll-paket h3 {
  padding: clamp(20px, 2vw, 28px) clamp(20px, 2vw, 28px) 0;
  color: var(--koll-text);
}

.koll-paket p {
  padding: 12px clamp(20px, 2vw, 28px) 0;
  color: var(--koll-text-soft);
  font-size: 0.92em;
  line-height: 1.65;
}

.koll-price {
  display: block;
  font-family: var(--koll-font-serif);
  font-style: italic;
  font-size: clamp(20px, 1.8vw, 26px) !important;
  color: var(--koll-mauve-deep) !important;
  padding: 20px clamp(20px, 2vw, 28px) clamp(24px, 2.5vw, 32px) !important;
  margin-top: auto;
}


/* ============================================================
   GALLERY
   ============================================================ */
.koll-gallery-section {
  background: var(--koll-white);
}

.koll-gallery-section > .koll-container > h2 {
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 64px);
}

.koll-gallery {
  columns: 3;
  column-gap: clamp(12px, 1.5vw, 20px);
}

.koll-gallery-item {
  break-inside: avoid;
  margin-bottom: clamp(12px, 1.5vw, 20px);
  overflow: hidden;
  position: relative;
}

.koll-gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s var(--koll-ease-out), filter 0.6s var(--koll-ease);
}

.koll-gallery-item:hover img {
  transform: scale(1.03);
  filter: brightness(1.04);
}


/* ============================================================
   LOCATIONS
   ============================================================ */
.koll-locations {
  background: var(--koll-cream);
}

.koll-locations-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}

.koll-locations-image {
  position: relative;
  overflow: hidden;
}

.koll-locations-image::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: -12px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--koll-mauve-soft);
  opacity: 0.4;
  pointer-events: none;
}

.koll-locations-image img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.koll-locations-text h2 {
  margin-bottom: 20px;
}

.koll-locations-text > p {
  color: var(--koll-text-soft);
  margin-bottom: 24px;
}

.koll-locations-text > p:last-child {
  margin-top: 24px;
  font-style: italic;
  color: var(--koll-text-muted);
  font-size: 0.92em;
}

.koll-location-list {
  list-style: none;
  padding: 0;
}

.koll-location-list li {
  padding: 10px 0 10px 24px;
  position: relative;
  border-bottom: 1px solid var(--koll-border);
  color: var(--koll-text);
  font-size: 0.95em;
  transition: padding-left 0.3s var(--koll-ease-out), color 0.3s var(--koll-ease);
}

.koll-location-list li:last-child {
  border-bottom: none;
}

.koll-location-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 1px;
  background: var(--koll-mauve);
  transition: width 0.3s var(--koll-ease-out);
}

.koll-location-list li:hover {
  padding-left: 32px;
  color: var(--koll-mauve-deep);
}

.koll-location-list li:hover::before {
  width: 16px;
}


/* ============================================================
   CTA
   ============================================================ */
.koll-cta {
  background: var(--koll-warm-light);
  text-align: center;
}

.koll-cta h2 {
  max-width: 680px;
  margin: 0 auto 20px;
}

.koll-cta p {
  max-width: 520px;
  margin: 0 auto 40px;
  color: var(--koll-text-soft);
}


/* ============================================================
   NEARBY CITIES
   ============================================================ */
.koll-nearby {
  background: var(--koll-white);
}

.koll-nearby > .koll-container > h2 {
  text-align: center;
  margin-bottom: 12px;
}

.koll-nearby > .koll-container > p {
  text-align: center;
  color: var(--koll-text-soft);
  margin-bottom: clamp(32px, 4vw, 48px);
}

.koll-nearby-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.koll-nearby-link {
  display: inline-block;
  font-family: var(--koll-font-sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.03em;
  padding: 10px 24px;
  border: 1px solid var(--koll-mauve-soft);
  color: var(--koll-text);
  border-radius: 40px;
  transition: all 0.35s var(--koll-ease);
}

.koll-nearby-link:hover {
  background: var(--koll-mauve);
  border-color: var(--koll-mauve);
  color: var(--koll-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(158, 126, 140, 0.2);
}


/* ============================================================
   FOOTER
   ============================================================ */
.koll-footer {
  background: var(--koll-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: clamp(48px, 6vw, 80px) 0 0;
  font-size: 14px;
}

.koll-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  padding-bottom: clamp(40px, 5vw, 64px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.koll-footer-logo {
  height: 64px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.koll-footer-grid > div > p {
  max-width: 320px;
  line-height: 1.7;
}

.koll-footer-grid h4 {
  font-family: var(--koll-font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
  font-style: normal;
}

.koll-footer-grid > div > a {
  display: block;
  padding: 5px 0;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s var(--koll-ease), padding-left 0.3s var(--koll-ease-out);
}

.koll-footer-grid > div > a:hover {
  color: var(--koll-mauve-soft);
  padding-left: 4px;
}

.koll-footer-bottom {
  padding: 24px 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 12px;
  letter-spacing: 0.02em;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
  .koll-pakete-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .koll-pakete-grid .koll-paket:last-child {
    grid-column: 1 / -1;
    max-width: 480px;
    justify-self: center;
    width: 100%;
  }

  .koll-gallery {
    columns: 2;
  }
}

@media (max-width: 900px) {
  .koll-nav-links {
    display: none;
  }

  .koll-nav-burger {
    display: flex;
  }

  .koll-intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .koll-intro-image {
    order: -1;
    max-width: 480px;
    margin: 0 auto;
  }

  .koll-intro-image::before {
    display: none;
  }

  .koll-intro-text {
    text-align: center;
  }

  .koll-intro-text p {
    max-width: 100%;
  }

  .koll-locations-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .koll-locations-image {
    max-width: 480px;
    margin: 0 auto;
  }

  .koll-locations-image::after {
    display: none;
  }

  .koll-locations-text {
    text-align: center;
  }

  .koll-footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .koll-footer-grid > div > p {
    max-width: 100%;
  }

  .koll-footer-logo {
    margin: 0 auto 16px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  :root {
    --koll-nav-h: 64px;
  }

  .koll-nav-logo img {
    height: 40px;
  }

  .koll-hero {
    min-height: 500px;
  }

  .koll-hero-image img {
    object-position: center 40%;
  }

  .koll-pakete-grid {
    grid-template-columns: 1fr;
  }

  .koll-pakete-grid .koll-paket:last-child {
    max-width: 100%;
  }

  .koll-gallery {
    columns: 1;
  }

  .koll-btn,
  .koll-btn-outline {
    padding: 14px 32px;
    font-size: 10px;
    width: 100%;
    text-align: center;
  }

  .koll-btn-lg {
    padding: 16px 32px;
    font-size: 11px;
  }

  .koll-nearby-link {
    font-size: 12px;
    padding: 8px 18px;
  }

  .koll-hero-overlay {
    padding-bottom: 48px;
  }
}


/* ============================================================
   SCROLL ANIMATIONS (CSS-only via @keyframes + animation-delay)
   Using scroll-driven animations where supported
   ============================================================ */
@supports (animation-timeline: view()) {
  .koll-intro-text,
  .koll-intro-image,
  .koll-paket,
  .koll-gallery-item,
  .koll-locations-image,
  .koll-locations-text,
  .koll-cta > .koll-container,
  .koll-nearby-grid {
    animation: scrollFadeUp linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 35%;
  }

  @keyframes scrollFadeUp {
    from {
      opacity: 0;
      transform: translateY(32px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* Fallback: elements are visible without scroll-driven animation support */
@supports not (animation-timeline: view()) {
  .koll-intro-text,
  .koll-intro-image,
  .koll-paket,
  .koll-gallery-item,
  .koll-locations-image,
  .koll-locations-text,
  .koll-cta > .koll-container,
  .koll-nearby-grid {
    opacity: 1;
    transform: none;
  }
}
