/* ==========================================================================
   Hotel Esplanade Köln — Self-Hosted Fonts
   ========================================================================== */

/* Playfair Display */
@font-face {
  font-family: 'Playfair Display';
  src: url('./fonts/playfair-display-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Playfair Display';
  src: url('./fonts/playfair-display-400-italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Playfair Display';
  src: url('./fonts/playfair-display-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Playfair Display';
  src: url('./fonts/playfair-display-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Inter */
@font-face {
  font-family: 'Inter';
  src: url('./fonts/inter-300.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('./fonts/inter-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('./fonts/inter-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('./fonts/inter-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* ==========================================================================
   Hotel Esplanade Köln — Dark Elegant Design
   Schwarz · Weiß · Champagner
   ========================================================================== */

:root {
  --color-black:      #0d0d0d;
  --color-black-mid:  #161616;
  --color-black-soft: #1e1e1e;
  --color-white:      #FFFFFF;
  --color-champagne:  #D4B896;
  --color-champagne-light: #E8D4B8;
  --color-gold:       #C8A96E;
  --color-neon:       #FF7A20;
  --color-neon-soft:  rgba(255, 122, 32, 0.5);
  --color-grey:       #888880;
  --color-border:     rgba(255,255,255,0.1);

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', -apple-system, sans-serif;

  --spacing-section: clamp(5rem, 10vw, 9rem);
  --border-radius:   3px;
  --transition:      160ms ease-in-out;
  --container-max:   1180px;
  --container-pad:   clamp(1.25rem, 5vw, 3rem);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-white);
  background: var(--color-black);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }

/* TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  margin-bottom: 1.5rem;
  color: var(--color-white);
}
h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-white);
}
p { color: rgba(255,255,255,0.6); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* LAYOUT */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.section { padding: var(--spacing-section) 0; background: var(--color-black); }
.section--dark-mid { background: var(--color-black-mid); }
.section--pitch    { background: var(--color-black-soft); }

/* SECTION LABELS */
.section-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
}
.section-label--champ { color: var(--color-champagne); }

.section-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto clamp(3rem, 6vw, 5rem);
}
.section-intro { color: rgba(255,255,255,0.5); font-size: 1.02rem; }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: var(--border-radius);
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
  border: none;
}
.btn-primary {
  background: linear-gradient(135deg, #D4B98A 0%, #C8A96E 50%, #B8945A 100%);
  color: #1a1208;
  box-shadow: 0 2px 8px rgba(180, 145, 80, 0.32), inset 0 1px 0 rgba(255,255,255,0.20);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #DEC898 0%, #D4B98A 50%, #C8A96E 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(180, 145, 80, 0.42), inset 0 1px 0 rgba(255,255,255,0.24);
}

.btn-champ {
  background: linear-gradient(135deg, #D4B98A 0%, #C8A96E 50%, #B8945A 100%);
  color: #1a1208;
  box-shadow: 0 2px 8px rgba(180, 145, 80, 0.32), inset 0 1px 0 rgba(255,255,255,0.20);
}
.btn-champ:hover {
  background: linear-gradient(135deg, #DEC898 0%, #D4B98A 50%, #C8A96E 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(180, 145, 80, 0.42), inset 0 1px 0 rgba(255,255,255,0.24);
}

.btn-neutral {
  background: linear-gradient(135deg, #8a8a8a 0%, #6e6e6e 50%, #5a5a5a 100%);
  color: var(--color-white);
  box-shadow: 0 2px 8px rgba(90, 90, 90, 0.32), inset 0 1px 0 rgba(255,255,255,0.20);
}
.btn-neutral:hover {
  background: linear-gradient(135deg, #989898 0%, #8a8a8a 50%, #6e6e6e 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(90, 90, 90, 0.42), inset 0 1px 0 rgba(255,255,255,0.24);
}

.btn-ghost {
  background: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255,255,255,0.4);
}
.btn-ghost:hover { border-color: var(--color-white); background: rgba(255,255,255,0.06); }

.btn-ghost-light {
  background: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255,255,255,0.35);
}
.btn-ghost-light:hover { border-color: var(--color-white); }

.btn-outline {
  background: transparent;
  color: var(--color-champagne);
  border: 1px solid rgba(232,213,163,0.35);
  padding: 0.6rem 1.3rem;
  font-size: 0.8rem;
}
.btn-outline:hover {
  background: var(--color-champagne);
  color: var(--color-black);
  border-color: var(--color-champagne);
}

.btn-nav {
  background: var(--color-champagne);
  color: var(--color-black);
  padding: 0.55rem 1.2rem;
  font-size: 0.8rem;
}
.btn-nav:hover { background: var(--color-champagne-light); }

/* NAVIGATION */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  /* Subtle top fade — ensures logo is always readable over any hero image */
  background: linear-gradient(to bottom, rgba(0,0,0,0.38) 0%, rgba(0,0,0,0.0) 100%);
  transition:
    background 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.5s ease;
}
#header.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 1px 24px rgba(0,0,0,0.10);
}
#header.scrolled .nav-links a {
  color: rgba(0,0,0,0.65);
}
#header.scrolled .nav-links a:hover {
  color: var(--color-black);
}
#header.scrolled .btn-nav {
  background: var(--color-champagne);
  color: var(--color-black);
  border-color: var(--color-champagne);
}
#header.scrolled .btn-nav:hover {
  background: var(--color-champagne-light);
  border-color: var(--color-champagne-light);
}
#header.scrolled .logo-light { display: none; }
#header.scrolled .logo-dark  { display: block; }
#header.scrolled .logo-sub   { color: rgba(0,0,0,0.45); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo:hover { opacity: 0.82; }

/* Logo morph wrap */
.logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

/* Logo image: shrinks and fades slightly on scroll */
.logo-img {
  height: 34px;
  width: auto;
  transition: height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.35s ease;
  display: block;
}
.logo-dark { display: none; }

/* Subtitle: "Köln" — slides in from top when scrolled */
.logo-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transform: translateY(-5px);
  transition:
    opacity 0.4s ease 0.05s,
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.05s,
    max-height 0.4s ease 0.05s,
    color 0.5s ease;
  line-height: 1;
  margin-top: 0;
}

/* Scrolled state: full logo morph */
#header.scrolled .logo-img { height: 24px; }
#header.scrolled .logo-sub {
  opacity: 0.5;
  max-height: 20px;
  transform: translateY(0);
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--color-white); }

/* Language Switch */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.lang-link {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
  letter-spacing: 0.02em;
  text-decoration: none;
}
.lang-link.active {
  color: var(--color-champagne) !important;
  font-weight: 600;
}
.lang-link:hover {
  color: var(--color-white);
}
.lang-separator {
  color: rgba(255,255,255,0.3);
  font-size: 0.78rem;
  user-select: none;
}
#header.scrolled .lang-link {
  color: rgba(17,17,17,0.75);
}
#header.scrolled .lang-link.active {
  color: var(--color-champagne) !important;
}
#header.scrolled .lang-link:hover {
  color: var(--color-black);
}
#header.scrolled .lang-separator {
  color: rgba(17,17,17,0.3);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 101;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--color-white);
  transition: background 0.5s ease, all var(--transition);
}
#header.scrolled .nav-toggle span {
  background: var(--color-black);
}

/* HERO */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 8rem;
  overflow: hidden;
  background: var(--color-black);
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.20) 35%,
    rgba(0,0,0,0.50) 65%,
    rgba(0,0,0,0.90) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--color-white);
  max-width: 700px;
  text-align: center;
  margin: 0 auto;
}
.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-champagne);
  margin-bottom: 1.25rem;
}
.hero-title {
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  color: var(--color-white);
  text-shadow:
    0 2px 6px  rgba(0, 0, 0, 0.55),
    0 4px 24px rgba(0, 0, 0, 0.30);
}
.hero-sub {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  margin-bottom: 2.5rem;
  letter-spacing: 0.03em;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.4);
  animation: bounce 2s infinite;
  transition: color var(--transition);
}
.hero-scroll:hover { color: var(--color-white); }
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(7px); }
}

/* FEATURES STRIP */
.features {
  background: var(--color-black-soft);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 2.25rem 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.feature-icon { color: var(--color-gold); }

/* SECTION SPLIT */
.section-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.section-split--reverse .section-text  { order: 2; }
.section-split--reverse .section-image { order: 1; }
.section-text h2  { margin-bottom: 1.25rem; }
.section-text p   { max-width: 480px; }

/* PHOTOS */
.section-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--border-radius);
  display: block;
  filter: brightness(0.92);
}
.room-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

/* ATMOSPHERE SECTIONS — Bar, Frühstück, Zimmerdetail, Lobby */
.atmo-section {
  padding: var(--spacing-section) 0;
}
.atmo-section.section--dark-mid { background: var(--color-black-mid); }
.atmo-section.section--pitch    { background: var(--color-black-soft); }

.atmo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
.atmo-grid--reverse .atmo-text  { order: 2; }
.atmo-grid--reverse .atmo-image { order: 1; }

/* Image wrapper: grayscale + neon orange overlay via mix-blend */
.atmo-img-wrap {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
}
.atmo-img-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  filter: brightness(0.9);
  transition: filter 0.5s ease, transform 0.5s ease;
}
.atmo-img-wrap:hover img {
  filter: brightness(1);
  transform: scale(1.03);
}

.atmo-text .section-label { margin-bottom: 0.75rem; }
.atmo-text h2 { margin-bottom: 1.25rem; }
.atmo-text p  { max-width: 460px; }

/* BADGE */
.badge-row { margin-top: 2rem; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--color-border);
  color: var(--color-champagne);
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  font-size: 0.8rem;
  font-weight: 500;
}
.badge svg { color: var(--color-gold); }

/* ROOMS GRID */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (min-width: 1100px) {
  .rooms-grid { grid-template-columns: repeat(4, 1fr); }
}
.room-card {
  background: var(--color-black-soft);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  overflow: hidden;
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.room-card:hover {
  border-color: rgba(232,213,163,0.3);
  box-shadow: 0 0 30px rgba(196,168,112,0.1);
}
.room-card:hover .room-img { transform: scale(1.04); }
.room-card:hover .room-img-overlay { opacity: 1; }

.room-img-wrap {
  position: relative;
  overflow: hidden;
}
.room-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--color-white);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.room-card-body { padding: 1.5rem; }
.room-card-body p { font-size: 0.875rem; margin-bottom: 1rem; }

.room-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: 2rem;
  margin-bottom: 0.6rem;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.12);
}
.room-badge--superior {
  background: rgba(200,168,126,0.15);
  color: var(--color-champagne);
  border-color: rgba(200,168,126,0.3);
}
.room-badge--deluxe {
  background: rgba(200,168,126,0.25);
  color: var(--color-champagne);
  border-color: rgba(200,168,126,0.5);
}
.room-badge--family {
  background: rgba(100,180,160,0.12);
  color: #7ecfc0;
  border-color: rgba(100,180,160,0.25);
}

.room-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}
.room-features li {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.25rem 0.6rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--color-border);
  border-radius: 2px;
  color: rgba(255,255,255,0.55);
}

/* LAGE DISTANCES */
.address {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  margin: 1.5rem 0;
  line-height: 1.7;
}
.distances { margin-bottom: 1.5rem; }

/* Google Maps Embed */
.maps-wrap { margin-bottom: 1.5rem; }
.maps-placeholder {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 2rem 1.5rem;
  text-align: center;
}
.maps-placeholder p {
  font-size: 0.85rem;
  color: var(--color-grey);
  margin-bottom: 1rem;
}
.maps-iframe {
  border-radius: 8px;
  width: 100%;
}
.distances li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.875rem;
}
.dist-label { font-weight: 500; color: var(--color-white); }
.dist-value { color: var(--color-grey); }

/* FAQ */
.faq-grid {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--color-border);
  max-width: 780px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: 1.25rem 0;
}
.faq-item--left, .faq-item--right, .faq-item--full {
  grid-column: unset;
  padding-left: 0;
  padding-right: 0;
  border-left: none;
}

.faq-item summary {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-white);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.3rem;
  color: var(--color-gold);
  flex-shrink: 0;
  margin-left: 1rem;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p { margin-top: 0.75rem; font-size: 0.9rem; line-height: 1.7; }
.faq-item--full {
  grid-column: 1 / -1;
  padding-right: 0 !important;
  padding-left: 0 !important;
  border-left: none !important;
}
.faq-item--full .faq-item p { max-width: 100%; }
.faq-item--full p { max-width: 100%; }

/* FAQ collapse / mehr-button */
.faq-grid { position: relative; }
.faq-item.faq-hidden { display: none; }
.faq-expand {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.faq-fade {
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--color-dark-mid, #181818));
  margin-top: -80px;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.faq-expand.is-open .faq-fade { opacity: 0; height: 0; margin-top: 0; }
.faq-mehr-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  background: transparent;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.75rem 2rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  border-radius: 2px;
}
.faq-mehr-btn:hover { background: var(--color-gold); color: #111; }
.faq-mehr-icon {
  display: inline-block;
  font-size: 1.2rem;
  line-height: 1;
  transition: transform 0.35s ease;
}
.faq-expand.is-open .faq-mehr-icon { transform: rotate(180deg); }

/* CTA */
.cta-block { max-width: 640px; margin: 0 auto; text-align: center; }
.cta-block h2 { font-size: clamp(2rem, 4vw, 3rem); }
.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 2.5rem 0;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
}
.contact-details a { color: rgba(255,255,255,0.35); transition: color var(--transition); }
.contact-details a:hover { color: var(--color-white); }

/* TRIPADVISOR BADGE */
.footer-badges {
  display: flex;
  align-items: center;
}
.ta-badge-link {
  display: block;
  opacity: 0.85;
  transition: opacity var(--transition);
}
.ta-badge-link:hover { opacity: 1; }
.ta-badge-img {
  height: 52px;
  width: auto;
  display: block;
  border-radius: 4px;
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(13,13,13,0.97);
  border-top: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  padding: 1rem 0;
  padding-bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.cookie-banner.visible {
  transform: translateY(0);
}
.cookie-banner-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.cookie-banner-text p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin: 0;
}
.cookie-banner-text a {
  color: var(--color-champagne);
  text-decoration: underline;
}
.cookie-banner-actions {
  flex-shrink: 0;
}
.btn-cookie-accept {
  padding: 0.55rem 1.4rem;
  font-size: 0.82rem;
}
@media (max-width: 560px) {
  .cookie-banner-inner { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .footer-badges { margin-top: 0.5rem; }
}

/* FOOTER */
.footer {
  background: #080808;
  padding: 2.5rem 0;
  border-top: 1px solid var(--color-border);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-logo {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  margin: 0;
}
.footer-nav { display: flex; gap: 2rem; }
.footer-nav a { font-size: 0.8rem; color: rgba(255,255,255,0.3); transition: color var(--transition); }
.footer-nav a:hover { color: var(--color-white); }
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.2); margin: 0; }

/* MODAL LIGHTBOX */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal.open {
  opacity: 1;
  pointer-events: all;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(6px);
}
.modal-box {
  position: relative;
  z-index: 1;
  background: var(--color-black-soft);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  max-width: 820px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  transform: scale(0.95) translateY(10px);
  transition: transform 0.3s ease;
}
.modal.open .modal-box { transform: scale(1) translateY(0); }

.modal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 340px;
}
.modal-content {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}
.modal-content h3 {
  font-size: 1.6rem;
  font-weight: 400;
}
.modal-content p { font-size: 0.9rem; }

.modal-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.25rem 0;
}
.modal-features li {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.25rem 0.6rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--color-border);
  border-radius: 2px;
  color: rgba(255,255,255,0.55);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  background: rgba(0,0,0,0.5);
  border: 1px solid var(--color-border);
  color: var(--color-white);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
}
.modal-close:hover { background: rgba(255,255,255,0.15); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-black);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    z-index: 101;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.25rem; color: rgba(255,255,255,0.85) !important; }
  
  /* Language switch in mobile menu */
  .lang-switch { 
    flex-direction: row; 
    gap: 1rem;
    order: -1; /* Show language switch first in mobile menu */
  }
  .lang-link { 
    font-size: 1rem !important; 
    color: rgba(255,255,255,0.75) !important; 
  }
  .lang-link.active { 
    color: var(--color-champagne) !important;
    font-weight: 600;
  }
  .lang-separator { 
    color: rgba(255,255,255,0.3); 
  }
  /* Hamburger touch target: min 44×44px */
  .nav-toggle {
    display: flex;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
  }

  .features-grid  { grid-template-columns: repeat(2, 1fr); }
  .section-split  { grid-template-columns: 1fr; }
  .section-split--reverse .section-text  { order: 1; }
  .section-split--reverse .section-image { order: 2; }
  .section-photo  { aspect-ratio: 16/9; }
  .rooms-grid     { grid-template-columns: repeat(2, 1fr); }
  .faq-grid       { grid-template-columns: 1fr; }
  .faq-item--left, .faq-item--right { padding-left: 0; padding-right: 0; border-left: none; }
  .modal-box      { grid-template-columns: 1fr; max-height: 95vh; overflow-y: auto; }
  .modal-img      { min-height: 220px; max-height: 260px; }

  /* Atmosphere sections: stack on mobile */
  .atmo-grid              { grid-template-columns: 1fr; }
  .atmo-grid--reverse .atmo-text  { order: 1; }
  .atmo-grid--reverse .atmo-image { order: 2; }
  .atmo-img-wrap img      { aspect-ratio: 16/9; }
}

@media (orientation: portrait) and (max-width: 560px) {
  .hero {
    align-items: center;
    padding-bottom: 0;
    padding-top: 0;
  }
  .hero-content {
    padding: 7rem 0 6rem;
  }
  .hero-bg {
    object-position: center center;
  }
  .hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,0.65) 0%,
      rgba(0,0,0,0.35) 30%,
      rgba(0,0,0,0.50) 70%,
      rgba(0,0,0,0.92) 100%
    );
  }
}

@media (max-width: 560px) {
  .rooms-grid   { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .cta-actions  { flex-direction: column; align-items: center; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-nav   { gap: 1.25rem; }

  /* Hero text: tighter on small portrait screens */
  .hero-title {
    font-size: clamp(1.7rem, 7vw, 2.3rem);
    letter-spacing: -0.015em;
    line-height: 1.1;
    text-shadow:
      0 2px 6px rgba(0, 0, 0, 0.55),
      0 4px 24px rgba(0, 0, 0, 0.30);
  }
  .hero-eyebrow { font-size: 0.65rem; letter-spacing: 0.18em; }
  .hero-sub { font-size: 0.85rem; letter-spacing: 0.02em; }

  /* Modal: full screen on mobile */
  .modal { padding: 0; align-items: flex-end; }
  .modal-box {
    border-radius: 12px 12px 0 0;
    max-height: 90vh;
    overflow-y: auto;
  }
}

/* ---- Logo text morph (logo-name + logo-city) ---- */
.logo-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-white);
  transition: color 0.45s ease, font-size 0.45s ease;
  white-space: nowrap;
  line-height: 1.2;
}
.logo-city {
  font-family: var(--font-body);
  font-size: 0;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: font-size 0.4s ease, opacity 0.4s ease 0.05s, max-height 0.4s ease, color 0.45s ease;
}
#header.scrolled .logo-name {
  font-size: 1rem;
  color: var(--color-black);
}
#header.scrolled .logo-city {
  font-size: 0.6rem;
  opacity: 0.5;
  max-height: 20px;
  color: rgba(0,0,0,0.45);
}

/* ===== NEWSLETTER ===== */
.newsletter-block {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.newsletter-form {
  margin-top: 2rem;
  text-align: left;
}
.newsletter-input-row {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.newsletter-input-row input[type="email"] {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.08);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-input-row input[type="email"]::placeholder {
  color: rgba(255,255,255,0.45);
}
.newsletter-input-row input[type="email"]:focus {
  border-color: var(--color-champ);
}
.newsletter-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}
.checkbox-label input[type="checkbox"] {
  margin-top: 0.2rem;
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  accent-color: var(--color-champ);
  cursor: pointer;
}
.checkbox-label a {
  color: var(--color-champ);
  text-decoration: underline;
}
.required-mark {
  color: var(--color-champ);
}
/* Newsletter Consent Checkbox */
.newsletter-consent {
  margin: 1rem 0 0.75rem;
}
.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  cursor: pointer;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}
.consent-label input[type="checkbox"] {
  margin-top: 0.25rem;
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  accent-color: var(--color-champagne);
  cursor: pointer;
}
.consent-label a {
  color: var(--color-champagne);
  text-decoration: underline;
}
.consent-label a:hover {
  color: var(--color-champagne-light);
}

.newsletter-hint {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.5rem;
}
.newsletter-msg {
  font-size: 0.9rem;
  margin-top: 0.75rem;
  min-height: 1.2em;
}
.newsletter-msg.success { color: #6ecf8e; }
.newsletter-msg.error   { color: #f08080; }
@media (max-width: 480px) {
  .newsletter-input-row {
    flex-direction: column;
  }
}
