/* 05.09.2026 | hellid | Schlichte Übergangswebsite Hotel Walkner */
:root {
  --blue: #922340;
  --blue2: #922340;
  --gold: #922340;
  --cream: #f7f3ea;
  --ink: #2e2528;
  --white: #fff;
  --line: #ded5d8;
  --shadow: 0 12px 34px rgba(146, 35, 64, 0.14);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}
body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  background: #fff;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
}
.wrap {
  width: min(1120px, calc(100% - 40px));
  margin: auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 30px;
}
.brand {
  text-decoration: none;
  color: var(--blue);
  font-weight: 800;
  font-size: 1.32rem;
  letter-spacing: 0.03em;
}
.brand small {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: #6b7479;
}
.nav {
  margin-left: auto;
  display: flex;
  gap: 20px;
  align-items: center;
}
.nav a {
  text-decoration: none;
  font-size: 0.93rem;
  font-weight: 700;
}
.nav .nav-cta {
  background: var(--gold);
  color: #fff;
  padding: 10px 15px;
  border-radius: 4px;
}
.menu-button {
  display: none;
  margin-left: auto;
  background: none;
  border: 1px solid var(--line);
  padding: 9px 12px;
  font: inherit;
}
.hero {
  min-height: 72vh;
  display: grid;
  align-items: end;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.2)),
    url("assets/hotel-aussenansicht.jpg") center/cover no-repeat;
}
.hero-content {
  max-width: 760px;
  padding: 100px 0 84px;
}
.eyebrow {
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--gold);
}
h1,
h2,
h3 {
  line-height: 1.15;
  color: var(--blue);
  margin-top: 0;
}
h1 {
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  color: #fff;
  margin: 0.15em 0;
}
.hero p {
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  max-width: 680px;
}
.hero .eyebrow {
  color: #fff;
}
.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.button {
  display: inline-block;
  border: 2px solid var(--blue);
  background: var(--blue);
  color: #fff;
  padding: 12px 19px;
  text-decoration: none;
  font-weight: 700;
  border-radius: 4px;
}
.button.secondary {
  background: transparent;
  color: var(--blue);
}
.hero .button {
  border-color: #fff;
  background: #fff;
  color: var(--blue);
}
.hero .button.secondary {
  background: transparent;
  color: #fff;
}
.section {
  padding: 78px 0;
}
.section.alt {
  background: var(--cream);
}
.section-title {
  max-width: 720px;
  margin-bottom: 36px;
}
.section-title h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
}
.lead {
  font-size: 1.2rem;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  align-items: start;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  padding: 25px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 7px;
  box-shadow: var(--shadow);
}
.card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.checks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px 20px;
}
.checks li:before {
  content: "✓";
  color: var(--gold);
  font-weight: 900;
  margin-right: 9px;
}
.photo {
  border-radius: 8px;
  box-shadow: var(--shadow);
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}
.history {
  border-left: 4px solid var(--gold);
  padding-left: 25px;
}
.form-wrap {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 50px;
}
.form {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field.full {
  grid-column: 1/-1;
}
label {
  display: block;
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 5px;
}
input,
select,
textarea {
  width: 100%;
  border: 1px solid #aeb9bf;
  border-radius: 4px;
  padding: 11px 12px;
  font: inherit;
  background: #fff;
}
textarea {
  min-height: 125px;
  resize: vertical;
}
.privacy-check {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 9px;
  align-items: start;
  font-size: 0.88rem;
}
.privacy-check input {
  margin-top: 5px;
}
.hidden-field {
  position: absolute !important;
  left: -10000px !important;
}
.notice {
  font-size: 0.9rem;
  color: #5f696f;
}
.contact-box {
  background: var(--blue);
  color: #fff;
  padding: 30px;
  border-radius: 8px;
}
.contact-box h2,
.contact-box h3 {
  color: #fff;
}
.contact-box a {
  color: #fff;
}
.site-footer {
  background: var(--blue2);
  color: #fff;
  padding: 30px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  align-items: center;
}
.footer-links {
  display: flex;
  gap: 18px;
}
.legal {
  padding: 65px 0;
}
.legal h1 {
  color: var(--blue);
  font-size: 2.6rem;
}
.legal h2 {
  margin-top: 38px;
}
.legal .wrap {
  max-width: 850px;
}
.status {
  padding: 12px 15px;
  border-radius: 4px;
  margin-bottom: 22px;
  background: #fbf1f4;
  border: 1px solid #c9899a;
}
.status.error {
  background: #fff0f0;
  border-color: #dfadad;
}
.small {
  font-size: 0.86rem;
}
@media (max-width: 850px) {
  .menu-button {
    display: block;
  }
  .nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 78px;
    background: #fff;
    padding: 18px 20px;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
  }
  .nav.open {
    display: flex;
  }
  .nav a {
    padding: 6px 0;
  }
  .grid-2,
  .form-wrap {
    grid-template-columns: 1fr;
  }
  .cards {
    grid-template-columns: 1fr 1fr;
  }
  .photo {
    min-height: 280px;
  }
  .hero {
    min-height: 620px;
  }
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 560px) {
  body {
    font-size: 16px;
  }
  .wrap {
    width: min(100% - 28px, 1120px);
  }
  .section {
    padding: 58px 0;
  }
  .cards,
  .form-grid,
  .checks {
    grid-template-columns: 1fr;
  }
  .field.full {
    grid-column: auto;
  }
  .form {
    padding: 20px;
  }
  .buttons {
    flex-direction: column;
  }
  .button {
    text-align: center;
  }
  .header-inner {
    min-height: 70px;
  }
  .nav {
    top: 70px;
  }
  .brand small {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
.brand img {
  display: block;
  width: 225px;
  height: auto;
  max-height: 64px;
  object-fit: contain;
}
.pool-photo {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 7px;
  margin-bottom: 22px;
  box-shadow: var(--shadow);
}
@media (max-width: 560px) {
  .brand img {
    width: 190px;
  }
}
.contact-box .eyebrow {
  color: #fff;
}
.nav .nav-cta {
  color: #fff;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gallery-item {
  appearance: none;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  overflow: hidden;
  border-radius: 6px;
}
.gallery-item img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  transition: transform 0.2s ease;
}
.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.04);
}
.gallery-item:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 64px 25px 48px;
  background: rgba(30, 5, 13, 0.94);
}
.lightbox.open {
  display: flex;
}
.lightbox img {
  max-width: min(1200px, 92vw);
  max-height: 82vh;
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  right: 20px;
  top: 16px;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}
.lightbox-caption {
  position: absolute;
  left: 60px;
  right: 60px;
  bottom: 16px;
  text-align: center;
  color: #fff;
  font-size: 0.9rem;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: rgba(255, 255, 255, 0.92);
  color: var(--blue);
  width: 46px;
  height: 56px;
  font-size: 2rem;
  cursor: pointer;
}
.lightbox-prev {
  left: 15px;
}
.lightbox-next {
  right: 15px;
}
@media (max-width: 850px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 560px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .gallery-item img {
    height: 130px;
  }
  .lightbox-nav {
    width: 40px;
    height: 48px;
  }
  .lightbox-prev {
    left: 5px;
  }
  .lightbox-next {
    right: 5px;
  }
}
