/* ---------- Fonts ---------- */
@font-face {
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/noto-sans-v30-latin/noto-sans-v30-latin-regular.woff2") format("woff2"),
       url("../fonts/noto-sans-v30-latin/noto-sans-v30-latin-regular.woff") format("woff");
}

@font-face {
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/noto-sans-v30-latin/noto-sans-v30-latin-700.woff2") format("woff2"),
       url("../fonts/noto-sans-v30-latin/noto-sans-v30-latin-700.woff") format("woff");
}

@font-face {
  font-family: "Noto Serif";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/noto-serif-v22-latin/noto-serif-v22-latin-600.woff2") format("woff2"),
       url("../fonts/noto-serif-v22-latin/noto-serif-v22-latin-600.woff") format("woff");
}

/* ---------- Reset & Grundlagen ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-height: 100vh;
  background-color: #0a0908;
  color: #e9e5dc;
  font-family: "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, p, address {
  margin: 0;
}

/* ---------- Layout ---------- */
.page {
  max-width: 1728px;
  margin: 0 auto;
  padding: 0 5vw;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ---------- Header ---------- */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.5rem 0;
}

.logo {
  display: inline-flex;
  color: #f5f0e6;
  transition: opacity 0.2s ease;
}

.logo:hover,
.logo:focus-visible {
  opacity: 0.8;
}

.btn-reservation {
  display: inline-block;
  background: #cda86b;
  color: #201a10;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.85rem 1.75rem;
  border-radius: 6px;
  white-space: nowrap;
  transition: background-color 0.2s ease;
}

.btn-reservation:hover,
.btn-reservation:focus-visible {
  background-color: #d9b87d;
}

/* ---------- Hero ---------- */
.hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4vw;
  padding: 2rem 0 5rem;
}

.hero-text {
  max-width: 30rem;
  flex-shrink: 0;
}

.eyebrow {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #cda86b;
  margin-bottom: 0.75rem;
}

.brand-display {
  font-family: "Noto Serif", Georgia, "Iowan Old Style", "Palatino Linotype", "Times New Roman", serif;
  font-weight: 600;
  font-size: clamp(2.75rem, 7.5vw, 8.125rem); /* 8.125rem = 130px auf Desktop */
  line-height: 0.98;
  color: #f5f0e6;
  letter-spacing: -0.01em;
}

.hero-text p:not(.brand-display) {
  margin-top: 2rem;
  max-width: 24rem;
  color: #b3aea3;
  font-size: 1.125rem; /* 18px */
  line-height: 1.6;
}

.hero-text p:not(.brand-display) a {
  color: #cda86b;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero-text p:not(.brand-display) a:hover,
.hero-text p:not(.brand-display) a:focus-visible {
  color: #e9c68e;
}

.hero-image {
  flex: 1 1 44%;
  max-width: 46rem;
  aspect-ratio: 755 / 748;
  border-radius: 2px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Footer ---------- */
.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem 2rem;
  padding: 2rem 0 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer address,
.site-footer p {
  font-style: normal;
  color: #b3aea3;
  font-size: 1rem;
  line-height: 1.6;
}

.site-footer a {
  color: #b3aea3;
  transition: color 0.2s ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #f5f0e6;
}

/* ---------- Fokus-Zustand (Barrierefreiheit) ---------- */
a:focus-visible {
  outline: 2px solid #dcb97a;
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    align-items: stretch;
    gap: 2.5rem;
    padding: 1rem 0 4rem;
    text-align: left;
  }

  .hero-text,
  .hero-image {
    max-width: none;
  }

  .hero-image {
    aspect-ratio: 755 / 620;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 0.85rem;
  }
}

@media (max-width: 560px) {
  .page {
    padding: 0 6vw;
  }

  .site-header {
    padding: 1.75rem 0;
  }

  .btn-reservation {
    padding: 0.7rem 1.25rem;
    font-size: 0.85rem;
  }

  .hero-text p {
    margin-top: 1.5rem;
  }
}

/* ---------- Reduzierte Bewegung ---------- */
@media (prefers-reduced-motion: reduce) {
  .logo,
  .btn-reservation,
  .site-footer a {
    transition: none;
  }
}
