:root {
  --bg: #f6efe6;
  --bg-soft: #fbf7f1;
  --card: rgba(255, 255, 255, 0.88);
  --card-strong: #ffffff;
  --dark: #0f1722;
  --dark-soft: #182231;
  --accent: #c9a46b;
  --accent-strong: #a97b3f;
  --text: #223041;
  --muted: #667281;
  --border: rgba(31, 42, 56, 0.12);
  --shadow: 0 20px 60px rgba(12, 22, 35, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(201, 164, 107, 0.16), transparent 0 28%),
    linear-gradient(180deg, #fbf7f1 0%, #f5ede2 100%);
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 16, 24, 0.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201, 164, 107, 0.25);
  box-shadow: 0 10px 30px rgba(6, 12, 20, 0.18);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.logo {
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.logo span {
  color: var(--accent);
}

nav {
  display: flex;
  gap: 1.1rem;
  flex-wrap: wrap;
}

nav a {
  color: #f8f5ef;
  font-size: 0.95rem;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

nav a:hover {
  color: #fff2dd;
}

nav a:hover::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  min-height: 95vh;
  overflow: hidden;
  margin-bottom: 2rem;
}

.slides {
  position: relative;
  min-height: 95vh;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease;
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
}

.overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 12, 18, 0.84), rgba(7, 12, 18, 0.42)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.48));
}

.hero-content {
  position: relative;
  z-index: 1;
  min-height: 95vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
  max-width: 720px;
  padding: 5rem 0 8rem;
}

.hero h1,
.hero h2,
.section-heading h2,
.booking-wrap h2,
#kontakt h2 {
  font-family: 'Playfair Display', serif;
  line-height: 1.08;
  margin: 0 0 0.75rem;
}

.hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.7rem);
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.hero h2 {
  font-size: clamp(2rem, 4vw, 3.15rem);
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.28);
}

.hero p {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.92);
  max-width: 620px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.hero-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.3rem;
  border-radius: 999px;
  border: none;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 25px rgba(9, 15, 24, 0.14);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, #d3ae75, #b9874a);
  color: #fff;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ddb67c, #a9773e);
  box-shadow: 0 14px 28px rgba(169, 123, 63, 0.28);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(6px);
}

.booking-section .btn-secondary,
.contact-form .btn-secondary {
  background: var(--dark);
  color: #fff;
  border: none;
}

.slider-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8rem;
  display: flex;
  gap: 0.6rem;
  z-index: 2;
}

.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}

.dot.active {
  background: var(--accent);
}

.intro-strip {
  position: relative;
  z-index: 3;
  margin-top: -4.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.intro-card {
  background: linear-gradient(180deg, rgba(14, 21, 31, 0.92), rgba(23, 33, 46, 0.88));
  color: #f8f4ed;
  border: 1px solid rgba(201, 164, 107, 0.24);
  border-radius: 22px;
  padding: 1.2rem;
  box-shadow: 0 18px 40px rgba(11, 19, 29, 0.22);
}

.intro-card span {
  color: var(--accent);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
}

.intro-card h3 {
  margin: 0.45rem 0;
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
}

.intro-card p {
  margin: 0;
  color: rgba(248, 244, 237, 0.82);
  font-size: 0.95rem;
}

.section {
  padding: 5.5rem 0;
}

.alt-bg {
  background: linear-gradient(180deg, #f0e6d9, #f8f2ea);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.2rem;
}

.section-heading h2,
.booking-wrap h2,
#kontakt h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.section-heading p:last-child,
.booking-wrap > div > p:last-child {
  color: var(--muted);
}

.rooms-grid,
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}

.room-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 243, 235, 0.94));
  border: 1px solid rgba(201, 164, 107, 0.18);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.room-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 55px rgba(12, 22, 35, 0.18);
}

.room-card img {
  height: 235px;
  width: 100%;
  object-fit: cover;
}

.room-info {
  padding: 1.15rem;
}

.room-head,
.room-meta,
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.room-head h3 {
  margin: 0;
  font-family: 'Playfair Display', serif;
}

.room-info p {
  color: var(--muted);
}

.room-meta {
  margin-top: 1rem;
  font-size: 0.95rem;
}

.room-meta strong {
  color: var(--accent-strong);
  font-size: 1.05rem;
}

.status {
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}

.available {
  background: #e7f6ed;
  color: #198754;
}

.limited {
  background: #fff6dc;
  color: #9a6c00;
}

.unavailable {
  background: #fde7e8;
  color: #b42318;
}

.booking-section {
  background: linear-gradient(135deg, #101823, #1b2635);
  color: #f8f5ef;
}

.booking-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-items: start;
}

.booking-notes {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
  display: grid;
  gap: 0.65rem;
}

.booking-notes li {
  position: relative;
  padding-left: 1.4rem;
  color: rgba(248, 245, 239, 0.85);
}

.booking-notes li::before {
  content: '◆';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
}

.booking-form,
.contact-form {
  background: var(--card-strong);
  padding: 1.35rem;
  border-radius: 22px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.booking-form label,
.contact-form label {
  display: grid;
  gap: 0.45rem;
  font-weight: 600;
}

.booking-form input,
.booking-form select,
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 0.95rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  font: inherit;
  background: #fffefc;
}

.booking-form input:focus,
.booking-form select:focus,
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(201, 164, 107, 0.7);
  box-shadow: 0 0 0 4px rgba(201, 164, 107, 0.14);
}

.full,
.form-message,
.contact-form label:last-of-type {
  grid-column: 1 / -1;
}

.form-message {
  margin: 0;
  font-weight: 600;
  color: var(--dark);
}

.gallery-grid img {
  border-radius: 18px;
  height: 240px;
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow);
  transition: transform 0.22s ease, filter 0.22s ease;
}

.gallery-grid img:hover {
  transform: scale(1.02);
  filter: saturate(1.04);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.25rem;
  display: grid;
  gap: 0.55rem;
}

.contact-list strong {
  color: var(--accent-strong);
}

.map-wrap {
  min-height: 100%;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(201, 164, 107, 0.18);
}

.map-wrap iframe {
  width: 100%;
  min-height: 100%;
  height: 100%;
  border: 0;
}

.footer {
  background: #0d141e;
  color: rgba(255, 255, 255, 0.86);
  padding: 1.25rem 0;
  border-top: 1px solid rgba(201, 164, 107, 0.2);
}

.footer a {
  color: #fff1d5;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  width: fit-content;
  padding: 0.45rem 0.8rem;
  margin-bottom: 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(201, 164, 107, 0.45);
  background: rgba(255, 255, 255, 0.08);
  color: #f8f2e8;
  font-size: 0.82rem;
  backdrop-filter: blur(8px);
}

.hero-stats {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-stats li {
  min-width: 120px;
  padding: 0.8rem 0.9rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  color: #fff;
  font-size: 1rem;
}

.hero-stats span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.84rem;
}

.room-features,
.price-list {
  list-style: none;
  padding: 0;
  margin: 0.85rem 0 0;
  display: grid;
  gap: 0.45rem;
}

.room-features li,
.price-list li {
  position: relative;
  padding-left: 1rem;
  color: var(--text);
  font-size: 0.94rem;
}

.room-features li::before,
.price-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent-strong);
}

.pricing-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(247, 239, 229, 0.92));
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}

.price-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 244, 237, 0.95));
  border: 1px solid rgba(201, 164, 107, 0.18);
  border-radius: 22px;
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.price-card.featured {
  transform: translateY(-8px);
  border-color: rgba(201, 164, 107, 0.4);
  box-shadow: 0 26px 60px rgba(18, 27, 41, 0.18);
}

.price-badge {
  position: absolute;
  top: -0.7rem;
  right: 1rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #d3ae75, #b9874a);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 700;
}

.price-label {
  margin: 0;
  color: var(--accent-strong);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.price-card h3 {
  margin: 0.55rem 0;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
}

.price-card > p {
  color: var(--muted);
}

.full-width {
  width: 100%;
}

.price-card .btn-secondary {
  background: var(--dark);
  color: #fff;
  border: none;
}

.experience-section {
  background: linear-gradient(180deg, #fffaf4 0%, #f8f1e8 100%);
}

.experience-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1.35rem;
}

.experience-card {
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 244, 237, 0.94));
  border: 1px solid rgba(201, 164, 107, 0.18);
  box-shadow: var(--shadow);
}

.experience-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.experience-content {
  padding: 1rem 1.1rem 1.2rem;
}

.experience-content h3 {
  margin: 0 0 0.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
}

.experience-content p:last-child {
  margin: 0;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatCard {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

.intro-card {
  animation: floatCard 6s ease-in-out infinite;
}

.intro-card:nth-child(2) {
  animation-delay: 0.5s;
}

.intro-card:nth-child(3) {
  animation-delay: 1s;
}

@media (max-width: 900px) {
  .rooms-grid,
  .gallery-grid,
  .booking-wrap,
  .contact-grid,
  .booking-form,
  .contact-form,
  .intro-strip,
  .pricing-grid,
  .experience-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding: 4rem 0 8rem;
  }

  .hero-stats {
    flex-direction: column;
  }

  .slider-controls {
    bottom: 11rem;
  }

  .intro-strip {
    margin-top: -3rem;
  }

  .map-wrap iframe {
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  nav {
    gap: 0.7rem;
  }

  .section {
    padding: 4rem 0;
  }

  .room-head,
  .room-meta,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    min-height: auto;
  }

  .slides,
  .hero-content {
    min-height: 88vh;
  }
}

