@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Nunito:wght@300;400;500;600&display=swap');

/* =========================================================
   RESET & BASE
   ========================================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

hr {
  border: none;
  clear: both;
}

:root {
  /* Deep Mediterranean sea blues */
  --navy:        #052136;      /* Tiefes Meeresblau */
  --navy-mid:    #0a3a5c;      /* Mittleres Meeresblau */
  --blue:        #0e5f8a;      /* Klares Mittelmeer */
  --blue-light:  #1a8abf;      /* Helles Azurblau */
  --azure:       #29b6e8;      /* Azurblau — "Mavi" */
  --azure-light: #5cd0f5;      /* Helles Azure für Akzente */
  --azure-faint: rgba(41, 182, 232, 0.12);
  --teal:        #0d9d8f;      /* Türkis-Akzent */
  --teal-light:  #18c4b3;
  --teal-faint:  rgba(13, 157, 143, 0.12);
  /* Warm gold accents (Sonne / Strand) */
  --amber:       #e8934a;
  --amber-light: #f0aa6a;
  --sand:        #f0e6cc;
  /* Page backgrounds — leichter Blauschimmer statt warm cream */
  --cream:       #f2f8fc;
  --white:       #ffffff;
  /* Text */
  --text-dark:   #0a1e2e;
  --text-mid:    #1e4060;
  --text-muted:  #4a6880;
  /* Borders */
  --border:      rgba(14, 95, 138, 0.15);
  /* Radii & Shadows */
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   20px;
  --shadow-sm:   0 2px 14px rgba(5, 33, 54, 0.10);
  --shadow-md:   0 6px 28px rgba(5, 33, 54, 0.16);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', Arial, sans-serif;
  font-size: 15px;
  color: var(--text-dark);
  background-color: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--teal);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: var(--teal-light);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

/* =========================================================
   NAVIGATION
   ========================================================= */
#nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(13, 43, 62, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.25);
}

/* Logo */
#nav .nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
#nav .nav-logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--teal-light), var(--teal));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  flex-shrink: 0;
}
#nav .nav-logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  color: var(--white);
  line-height: 1.2;
}
#nav .nav-logo-name span {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-size: 10px;
  font-weight: 300;
  color: var(--sand);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Links */
#nav .nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
#nav .nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 13px;
  border-radius: 20px;
  letter-spacing: 0.4px;
  transition: all 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
#nav .nav-links a:hover,
#nav .nav-links a.active {
  color: var(--white);
  background: rgba(26,138,126,0.35);
}
#nav .nav-links a.nav-cta {
  background: var(--amber);
  color: var(--white);
  font-weight: 600;
  margin-left: 6px;
}
#nav .nav-links a.nav-cta:hover {
  background: var(--amber-light);
}

/* Language switcher */
#nav .nav-lang {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 14px;
  padding-left: 14px;
  border-left: 1px solid rgba(255,255,255,0.18);
}
#nav .nav-lang a {
  color: rgba(255,255,255,0.45);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 7px;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.2s;
}
#nav .nav-lang a:hover,
#nav .nav-lang a.active {
  color: var(--sand);
  background: rgba(255,255,255,0.1);
}

/* Hamburger */
#nav .hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
}
#nav .hamburger span {
  width: 23px;
  height: 2px;
  background: rgba(255,255,255,0.85);
  border-radius: 2px;
  display: block;
  transition: all 0.3s;
}

/* Mobile nav drawer */
#nav-drawer {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--navy);
  z-index: 999;
  padding: 16px 20px 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
#nav-drawer.open {
  display: block;
}
#nav-drawer a {
  display: block;
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  font-weight: 500;
  padding: 11px 14px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s;
}
#nav-drawer a:hover,
#nav-drawer a.active {
  background: rgba(26,138,126,0.3);
  color: var(--white);
}
#nav-drawer a.nav-cta {
  background: var(--amber);
  color: var(--white);
  font-weight: 600;
  margin-top: 8px;
  text-align: center;
}
#nav-drawer .drawer-lang {
  display: flex;
  gap: 8px;
  padding: 12px 14px 0;
  margin-top: 4px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
#nav-drawer .drawer-lang a {
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}

/* =========================================================
   HERO (Homepage) — Foto-Hintergrund + "Blaues Paradies"
   ========================================================= */
#hero {
  position: relative;
  min-height: 560px;
  /* Echtes Strandfoto als Hintergrund */
  background-image: url('../images/body/body-bg.jpg');
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Dunkler Blau-Gradient über dem Foto für Lesbarkeit */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(5, 33, 54, 0.82) 0%,
    rgba(10, 58, 92, 0.68) 45%,
    rgba(14, 95, 138, 0.0) 100%
  );
  z-index: 1;
}

/* Schimmer-Lichteffekt oben rechts (Sonnenlicht auf Wasser) */
#hero::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(41,182,232,0.18) 0%, transparent 65%);
  z-index: 1;
  pointer-events: none;
}

/* Blaue Wasser-Wellen-Animation am unteren Rand */
@keyframes wave-drift {
  0%   { transform: translateX(0); }
  50%  { transform: translateX(-3%); }
  100% { transform: translateX(0); }
}

#hero .hero-bg-circles {
  display: none; /* ersetzt durch echtes Foto */
}

#hero .hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 3rem 110px;
  max-width: 580px;
}

#hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(41, 182, 232, 0.22);
  border: 1px solid rgba(92, 208, 245, 0.45);
  color: #d0f0ff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 20px;
  margin-bottom: 22px;
}
#hero .hero-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--azure-light);
  border-radius: 50%;
  flex-shrink: 0;
}

#hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 46px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(5,33,54,0.5);
}
/* "Mavi Cennet" leuchtet in hellem Azurblau */
#hero h1 em {
  color: var(--azure-light);
  font-style: normal;
}

#hero .hero-desc {
  color: rgba(220, 240, 255, 0.88);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 30px;
  max-width: 460px;
  text-shadow: 0 1px 8px rgba(5,33,54,0.4);
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Rechte Spalte im Hero: Logo oben + Info-Cards darunter */
#hero .hero-right {
  position: absolute;
  right: 3rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* Original-Logo weiß ausgeleuchtet mit Azur-Schimmer */
#hero .hero-logo-img {
  width: 150px;
  height: auto;
  display: block;
  /*filter: brightness(0) invert(1)*/
  /*        drop-shadow(0 0 18px rgba(92, 208, 245, 0.55))*/
  /*        drop-shadow(0 2px 8px rgba(5, 33, 54, 0.6));*/
  /*opacity: 0.92;*/
}

/* Info-Cards unterhalb des Logos */
#hero .hero-cards {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.hero-card {
  background: rgba(14, 95, 138, 0.35);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(92, 208, 245, 0.3);
  border-radius: 14px;
  padding: 13px 17px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 215px;
}
.hero-card-icon {
  width: 38px;
  height: 38px;
  background: rgba(41, 182, 232, 0.4);
  border: 1px solid rgba(92, 208, 245, 0.4);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.hero-card-text strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #e0f4ff;
}
.hero-card-text span {
  font-size: 11px;
  color: rgba(200, 235, 255, 0.65);
  font-weight: 300;
}

/* Wave divider at bottom of hero */
#hero .hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  line-height: 0;
}
#hero .hero-wave svg {
  display: block;
  width: 100%;
  height: 56px;
}

/* =========================================================
   PAGE BANNER (sub-pages)
   ========================================================= */
.page-banner {
  background-image: url('../images/body/body-bg.jpg');
  background-size: cover;
  background-position: center 55%;
  padding: 52px 3rem 40px;
  position: relative;
  overflow: hidden;
}
/* Blauer Overlay-Gradient */
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(5,33,54,0.88) 0%, rgba(10,58,92,0.78) 60%, rgba(14,95,138,0.0) 100%);
  z-index: 0;
}
.page-banner::after {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 280px;
  height: 280px;
  background: rgba(41,182,232,0.12);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.page-banner .section-label,
.page-banner .section-title,
.page-banner p {
  position: relative;
  z-index: 1;
}
.page-banner .section-label {
  color: var(--azure-light);
  opacity: 1;
}
.page-banner .section-title {
  color: var(--white);
}
.page-banner p {
  color: rgba(200, 235, 255, 0.8);
  font-size: 14px;
  margin-top: 6px;
  max-width: 520px;
  font-weight: 300;
}

/* Logo im page-banner — rechts positioniert, weiß mit Azur-Glühen */
.page-banner-logo {
  position: absolute;
  right: 3rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  width: 140px;
  height: auto;
  display: block;
  pointer-events: none;
  /*filter: brightness(0) invert(1)*/
  /*        drop-shadow(0 0 22px rgba(92, 208, 245, 0.6))*/
  /*        drop-shadow(0 2px 10px rgba(5, 33, 54, 0.7));*/
  /*opacity: 0.82;*/
}
@media (max-width: 900px) {
  .page-banner-logo { width: 100px; right: 2rem; opacity: 0.65; }
}
@media (max-width: 640px) {
  .page-banner-logo { display: none; }
}
.btn-primary {
  display: inline-block;
  background: var(--amber);
  color: var(--white);
  padding: 12px 26px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-decoration: none;
  transition: all 0.22s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--amber-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,147,74,0.35);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 11px 26px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  border: 1.5px solid rgba(255,255,255,0.4);
  text-decoration: none;
  transition: all 0.22s;
  cursor: pointer;
}
.btn-secondary:hover {
  border-color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.08);
  color: var(--white);
}

.btn-teal {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  padding: 11px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.22s;
}
.btn-teal:hover {
  background: var(--blue-light);
  color: var(--white);
  transform: translateY(-1px);
}

/* =========================================================
   SECTIONS
   ========================================================= */
.section {
  padding: 60px 3rem;
}
.section-white {
  background: var(--white);
}
.section-cream {
  background: var(--cream);
}

.section-label {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
  font-weight: 700;
  color: var(--blue-light);
  margin-bottom: 8px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.3;
  font-weight: 700;
}
.section-sub {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.75;
  max-width: 500px;
  font-weight: 400;
}
.section-header {
  margin-bottom: 40px;
}
.section-header.centered {
  text-align: center;
}
.section-header.centered .section-sub {
  margin: 0 auto;
}

/* =========================================================
   FEATURE CARDS
   ========================================================= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  transition: all 0.25s;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--blue), var(--azure));
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  color: var(--text-dark);
  margin-bottom: 8px;
  font-weight: 600;
}
.feature-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* =========================================================
   ACCOMMODATION / ROOM CARDS
   ========================================================= */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.room-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.25s;
  box-shadow: var(--shadow-sm);
}
.room-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal);
}

.room-card-image {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  position: relative;
}
.room-card-image.bg-1 {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
}
.room-card-image.bg-2 {
  background: linear-gradient(135deg, #0f6b5e, var(--navy-mid));
}
.room-card-image.bg-3 {
  background: linear-gradient(135deg, #3a5a2e, #0f6b5e);
}

.room-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--amber);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

.room-card-body {
  padding: 22px;
}
.room-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 8px;
  font-weight: 600;
}
.room-card-body p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}
.amenity-tag {
  background: var(--azure-faint);
  color: var(--blue);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(14,95,138,0.2);
}

/* =========================================================
   GALLERY
   ========================================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery-grid .gal-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  background: var(--navy);
}
.gallery-grid .gal-item.tall {
  grid-row: span 2;
  aspect-ratio: auto;
}
.gallery-grid .gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s;
  display: block;
}
.gallery-grid .gal-item:hover img {
  transform: scale(1.05);
}
.gallery-grid .gal-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13,43,62,0);
  transition: background 0.3s;
  pointer-events: none;
}
.gallery-grid .gal-item:hover::after {
  background: rgba(13,43,62,0.2);
}

/* Compact gallery (5 per row, sub-pages) */
.gallery-grid-full {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.gallery-grid-full .gal-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--navy);
}
.gallery-grid-full .gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
  display: block;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(232,147,74,0.3);
}
.gallery-grid-full .gal-item:hover img {
  transform: scale(1.06);
  border-color: var(--amber);
}

/* =========================================================
   PRICING BANNER
   ========================================================= */
.pricing-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 60%, var(--navy-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 36px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  border: 1px solid rgba(41,182,232,0.2);
}
.pricing-banner h3 {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 24px;
  margin-bottom: 8px;
}
.pricing-banner p {
  color: rgba(245,230,200,0.75);
  font-size: 13px;
  line-height: 1.7;
  max-width: 400px;
}
.pricing-tags {
  display: flex;
  gap: 8px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.price-tag {
  background: rgba(41,182,232,0.2);
  border: 1px solid rgba(92,208,245,0.35);
  color: #c0eaff;
  font-size: 11px;
  padding: 4px 11px;
  border-radius: 20px;
  font-weight: 600;
}

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  transition: box-shadow 0.2s;
}
.contact-card:hover {
  box-shadow: var(--shadow-sm);
}
.contact-card-icon {
  width: 42px;
  height: 42px;
  background: var(--teal-faint);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  flex-shrink: 0;
}
.contact-card-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 4px;
}
.contact-card-value {
  font-size: 13px;
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.55;
}
.contact-card-value a {
  color: var(--teal);
  text-decoration: none;
}
.contact-card-value a:hover {
  color: var(--teal-light);
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.map-container iframe {
  display: block;
  width: 100%;
  height: 340px;
  border: none;
}

/* =========================================================
   ABOUT PAGE
   ========================================================= */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
}
.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
}
.about-text p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 16px;
}

/* Facilities list */
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 20px;
}
.facility-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 13px;
  color: var(--text-mid);
  font-weight: 500;
}
.facility-item::before {
  content: '✓';
  color: var(--azure);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

/* =========================================================
   STATS BAR
   ========================================================= */
.stats-bar {
  background: linear-gradient(90deg, var(--navy) 0%, var(--blue) 50%, var(--navy-mid) 100%);
  padding: 30px 3rem;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  border-top: 1px solid rgba(41,182,232,0.2);
  border-bottom: 1px solid rgba(41,182,232,0.2);
}
.stat-item {
  text-align: center;
  color: var(--white);
}
.stat-item .stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-item .stat-label {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.85;
  font-weight: 300;
}

/* =========================================================
   RESERVATION PAGE
   ========================================================= */
.reservation-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.reservation-box .res-icon {
  font-size: 52px;
  margin-bottom: 16px;
}
.reservation-box h2 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.reservation-box p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 10px;
}
.reservation-channels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 28px;
}
.res-channel {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
}
.res-channel .ch-icon {
  font-size: 28px;
  margin-bottom: 8px;
}
.res-channel h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.res-channel p {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

/* =========================================================
   FOOTER
   ========================================================= */
#footer {
  background: var(--navy);
  color: rgba(255,255,255,0.55);
  padding: 44px 3rem 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--sand);
  margin-bottom: 10px;
}
.footer-brand p {
  font-size: 13px;
  line-height: 1.75;
  max-width: 260px;
}
.footer-col h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.4);
  font-weight: 600;
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--sand);
}
.footer-col p {
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 6px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  font-size: 11px;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom a:hover {
  color: var(--sand);
}

/* =========================================================
   WHATSAPP FLOATING BUTTON
   ========================================================= */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  width: 54px;
  height: 54px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 18px rgba(37,211,102,0.5);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,0.6);
  color: white;
}

/* =========================================================
   LIGHTBOX COMPATIBILITY
   ========================================================= */
a[rel="lightbox"] {
  cursor: zoom-in;
}

/* =========================================================
   UTILITIES
   ========================================================= */
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-32 { margin-bottom: 32px; }

/* =========================================================
   RESPONSIVE — TABLET (max 900px)
   ========================================================= */
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery-grid .gal-item.tall {
    grid-row: auto;
  }
  .gallery-grid-full {
    grid-template-columns: repeat(3, 1fr);
  }
  .about-layout {
    grid-template-columns: 1fr;
  }
  .about-image {
    aspect-ratio: 2/1;
    font-size: 48px;
    max-height: 240px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  #hero .hero-right {
    display: none;
  }
}

/* =========================================================
   RESPONSIVE — MOBILE (max 640px)
   ========================================================= */
@media (max-width: 640px) {
  /* Nav */
  #nav {
    padding: 0 1.25rem;
  }
  #nav .nav-links,
  #nav .nav-lang {
    display: none;
  }
  #nav .hamburger {
    display: flex;
  }

  /* Hero */
  #hero {
    min-height: auto;
  }
  #hero .hero-right {
    display: none;
  }
  #hero .hero-content {
    padding: 56px 1.5rem 80px;
    max-width: 100%;
  }
  #hero h1 {
    font-size: 30px;
  }
  #hero .hero-desc {
    font-size: 14px;
  }
  .hero-btns {
    flex-direction: column;
    align-items: flex-start;
  }
  #hero .hero-wave svg {
    height: 36px;
  }

  /* Page banner */
  .page-banner {
    padding: 40px 1.5rem 30px;
  }

  /* Sections */
  .section {
    padding: 44px 1.5rem;
  }

  /* Section title */
  .section-title {
    font-size: 24px;
  }

  /* Grids */
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
  .rooms-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid,
  .gallery-grid-full {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .gallery-grid .gal-item.tall {
    grid-row: auto;
  }
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .map-container iframe {
    height: 260px;
  }

  /* Pricing banner */
  .pricing-banner {
    flex-direction: column;
    text-align: center;
    padding: 28px 20px;
  }
  .pricing-tags {
    justify-content: center;
  }

  /* Stats */
  .stats-bar {
    padding: 24px 1.5rem;
    gap: 16px;
  }
  .stat-item .stat-num {
    font-size: 28px;
  }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  #footer {
    padding: 36px 1.5rem 0;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Reservation */
  .reservation-channels {
    grid-template-columns: 1fr;
  }
  .reservation-box {
    padding: 24px 18px;
  }

  /* WA button */
  .wa-float {
    bottom: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
    font-size: 24px;
  }
}
/* =========================================================
   GUESTBOOK
   ========================================================= */

/* Layout: 2-column on desktop, 1 on mobile */
.guestbook-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
}

/* ── Form ── */
.guest-form-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 26px;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 80px;   /* bleibt beim Scrollen sichtbar */
}

.guest-form-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 6px;
}
.guest-form-sub {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 22px;
    line-height: 1.5;
}

.form-group {
    margin-bottom: 14px;
}
.form-group label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.guest-form input,
.guest-form textarea,
.guest-form select {
    width: 100%;
    padding: 11px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    font-size: 14px;
    font-family: 'Nunito', sans-serif;
    color: var(--text-dark);
    background: var(--cream);
    transition: all 0.2s;
    line-height: 1.5;
}
.guest-form textarea {
    resize: vertical;
    min-height: 110px;
}
.guest-form input:focus,
.guest-form textarea:focus {
    outline: none;
    border-color: var(--azure);
    background: var(--white);
    box-shadow: 0 0 0 3px var(--azure-faint);
}
.guest-form .btn-primary {
    width: 100%;
    margin-top: 6px;
    font-size: 14px;
    padding: 13px;
    justify-content: center;
}

/* Captcha hint */
.captcha-hint {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 4px;
    font-style: italic;
}

/* ── Comment list ── */
.guest-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.guest-item {
    display: flex;
    gap: 16px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(14, 95, 138, 0.08);
}
.guest-item:first-child {
    padding-top: 0;
}
.guest-item:last-child {
    border-bottom: none;
}

/* Avatar */
.guest-avatar {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--blue), var(--azure));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    color: var(--white);
}

.guest-body {
    flex: 1;
    min-width: 0;
}

.guest-meta {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.guest-name {
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

.guest-rating {
    color: var(--amber);
    font-size: 13px;
    letter-spacing: 1px;
}

.guest-text {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.75;
}

/* Rating badge on positive reviews */
.guest-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(41,182,232,0.1);
    border: 1px solid rgba(14,95,138,0.15);
    color: var(--blue);
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Count chip above list */
.guest-count {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--teal-faint);
    border: 1px solid rgba(13,157,143,0.2);
    color: var(--teal);
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 20px;
}

/* ── Success / Error flash message ── */
.guest-flash {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}
.guest-flash.success {
    background: rgba(13,157,143,0.12);
    border: 1px solid rgba(13,157,143,0.3);
    color: var(--teal);
}
.guest-flash.error {
    background: rgba(232,147,74,0.12);
    border: 1px solid rgba(232,147,74,0.35);
    color: var(--amber);
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .guestbook-layout {
        grid-template-columns: 1fr;
    }
    .guest-form-card {
        position: static;
    }
}
@media (max-width: 640px) {
    .guest-item {
        gap: 12px;
        padding: 18px 0;
    }
    .guest-avatar {
        width: 36px;
        height: 36px;
        font-size: 15px;
    }
    .guest-name {
        font-size: 14px;
    }
    .guest-text {
        font-size: 13px;
    }
}

/* =========================================================
   PAGINATION (Guestbook + wiederverwendbar)
   ========================================================= */
.pager {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(14, 95, 138, 0.1);
}

.pager-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.18s;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--text-mid);
    cursor: pointer;
}
.pager-btn:hover {
    background: var(--azure-faint);
    border-color: var(--azure);
    color: var(--blue);
}
.pager-btn.pager-active {
    background: var(--blue);
    border-color: var(--blue);
    color: var(--white);
    pointer-events: none;
}
.pager-btn.pager-disabled {
    color: rgba(14, 95, 138, 0.25);
    border-color: rgba(14, 95, 138, 0.1);
    background: transparent;
    pointer-events: none;
    cursor: default;
}
.pager-ellipsis {
    font-size: 13px;
    color: var(--text-muted);
    padding: 0 4px;
    line-height: 36px;
}
.pager-info {
    margin-left: auto;
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
    white-space: nowrap;
}

@media (max-width: 640px) {
    .pager {
        gap: 4px;
        margin-top: 20px;
    }
    .pager-btn {
        min-width: 32px;
        height: 32px;
        font-size: 12px;
        padding: 0 8px;
    }
    .pager-info {
        width: 100%;
        text-align: center;
        margin-left: 0;
        margin-top: 4px;
    }
}

/* Gästebuch-Link in der Nav — leicht hervorgehoben aber nicht so dominant wie CTA */
#nav .nav-links a.nav-guest {
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  padding: 5px 12px;
}
#nav .nav-links a.nav-guest:hover,
#nav .nav-links a.nav-guest.active {
  color: var(--white);
  background: rgba(41,182,232,0.25);
  border-color: rgba(92,208,245,0.45);
}

/* =========================================================
   ABOUT PHOTO COLUMN (company.php)
   ========================================================= */

/* Überschreibt den alten Emoji-Placeholder */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 44px;
  align-items: start;
}

.about-photo-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: sticky;
  top: 80px;
}

/* Hauptbild — nimmt die volle Breite ein */
.about-photo-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-md);
}
.about-photo-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.about-photo-main:hover img {
  transform: scale(1.03);
}

/* Thumbnail-Reihe darunter */
.about-photo-thumb {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16/7;
  box-shadow: var(--shadow-sm);
}
.about-photo-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.about-photo-thumb:hover img {
  transform: scale(1.04);
}

/* Fallback wenn keine Galerie-Fotos vorhanden */
.about-photo-fallback {
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, var(--navy) 0%, var(--blue) 60%, #0f6b5e 100%);
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  box-shadow: var(--shadow-md);
}
.about-photo-fallback img {
  width: 70%;
  height: auto;
  filter: brightness(0) invert(1)
          drop-shadow(0 0 20px rgba(92,208,245,0.5));
  opacity: 0.9;
}

/* Text-Spalte */
.about-text p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 14px;
}
.about-description {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 20px;
}
.about-description p { margin-bottom: 12px; }

/* Info-Chips */
.about-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}
.about-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--azure-faint);
  border: 1px solid rgba(14,95,138,0.18);
  color: var(--blue);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
}

/* Responsive */
@media (max-width: 900px) {
  .about-photo-col {
    position: static;
    flex-direction: row;
  }
  .about-photo-main {
    flex: 2;
    aspect-ratio: 4/3;
  }
  .about-photo-thumb {
    flex: 1;
    aspect-ratio: auto;
  }
  .about-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
@media (max-width: 640px) {
  .about-photo-col {
    flex-direction: column;
  }
  .about-photo-thumb {
    display: none;  /* Auf Mobile nur das Hauptbild */
  }
  .about-photo-main {
    aspect-ratio: 16/9;
  }
}

/* =========================================================
   ROOM CARD — PREISANZEIGE
   ========================================================= */
.room-price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 0 14px;
  padding: 10px 14px;
  background: var(--azure-faint);
  border: 1px solid rgba(14,95,138,0.18);
  border-radius: var(--radius-sm);
}

.price-daily {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--blue);
  white-space: nowrap;
}

.price-weekly {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  white-space: nowrap;
}

/* Trennstrich zwischen täglich und wöchentlich */
.room-price .price-daily + .price-weekly::before {
  content: '·';
  margin-right: 10px;
  color: var(--border);
}

/* Mehrere Preiszeilen (Pansiyon) */
.room-price-col {
  flex-direction: column;
  gap: 6px;
  align-items: stretch;
}
.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.price-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  white-space: nowrap;
}
.room-price-col .price-daily {
  font-size: 15px;
}
/* Hero-Cards als klickbare Links */
a.hero-card-link {
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
}
a.hero-card-link:hover {
    background: rgba(14, 95, 138, 0.5);
    border-color: rgba(92, 208, 245, 0.55);
    transform: translateX(-2px);
}
a.hero-card-link:hover .hero-card-text strong {
    color: var(--azure-light);
}
