@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Montserrat:wght@300;400;500;600&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --gold: #C9A84C;
  --gold-light: #E2C97E;
  --dark: #111111;
  --dark2: #0e0e0e;
  --white: #f5f2ec;
}

html { scroll-behavior: smooth; }
body { font-family: 'Montserrat', sans-serif; background: var(--dark2); color: var(--white); overflow-x: hidden; }

/* NAVBAR */
.navbar {
  background: #C9A84C;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky; top: 0; z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
  min-height: 58px;
}
.navbar-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 600;
  letter-spacing: 0.2em; color: #111;
  text-decoration: none; text-transform: uppercase;
  white-space: nowrap;
}
.navbar-links {
  display: flex; gap: 28px; list-style: none;
}
.navbar-links a {
  font-size: 0.7rem; letter-spacing: 0.15em;
  text-transform: uppercase; font-weight: 500;
  color: rgba(17,17,17,0.75); text-decoration: none;
  transition: color 0.2s; padding: 4px 0;
  border-bottom: 1px solid transparent;
}
.navbar-links a:hover,
.navbar-links a.active {
  color: #111;
  border-bottom-color: #111;
}
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 2px; background: #111;
}
.mobile-menu {
  display: none;
  position: fixed; inset: 0; top: 58px;
  background: #C9A84C; z-index: 999;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1.1rem; letter-spacing: 0.2em;
  text-transform: uppercase; font-weight: 500;
  color: #111; text-decoration: none;
}

/* HERO */
.hero {
  position: relative;
  height: 92vh; min-height: 540px; overflow: hidden;
}
.hero img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center; display: block;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.6) 100%);
}
.hero-content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 20px;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 300; color: var(--white);
  letter-spacing: 0.05em; line-height: 1;
  margin-bottom: 16px;
}
.hero-sub {
  font-size: 0.8rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: rgba(245,242,236,0.7);
  margin-bottom: 36px;
}
.btn-gold {
  display: inline-block;
  background: var(--gold); color: #111;
  padding: 14px 36px; font-size: 0.72rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 600; text-decoration: none;
  transition: background 0.2s;
}
.btn-gold:hover { background: var(--gold-light); }

/* SECTIONS */
.section { padding: 90px 60px; }
.section-dark { background: var(--dark2); }
.section-darker { background: #0a0a0a; }
.section-center { text-align: center; }

.divider { width: 80px; height: 1px; background: var(--gold); margin: 0 auto 28px; display: block; }
.divider-left { margin: 0 0 28px; }

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 600; letter-spacing: 0.3em;
  color: var(--gold); text-transform: uppercase; line-height: 1.1;
}
.section-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 300;
  letter-spacing: 0.15em; color: rgba(245,242,236,0.5);
  margin-top: 8px; text-transform: uppercase;
}
.section-body {
  font-size: 0.88rem; line-height: 2;
  color: rgba(245,242,236,0.7); font-weight: 300;
  max-width: 680px; margin: 28px auto 0;
}
.section-body strong { color: var(--gold-light); font-weight: 500; }

/* ABOUT SECTION (home) */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; max-width: 1200px; margin: 0 auto;
  min-height: 600px;
}
.about-text {
  padding: 80px 70px;
  display: flex; flex-direction: column; justify-content: center;
  background: #0e0e0e;
  position: relative;
}
.about-text::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(201,168,76,0.06) 0%, transparent 65%);
}
.about-text > * { position: relative; z-index: 1; }
.about-text h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 600; letter-spacing: 0.25em;
  color: var(--gold); text-transform: uppercase;
  line-height: 1.1; margin-bottom: 28px;
}
.about-text p {
  font-size: 0.87rem; line-height: 2;
  color: rgba(245,242,236,0.7); font-weight: 300;
  margin-bottom: 16px;
}
.about-text p:last-child { color: var(--gold); font-style: italic; }
.about-img {
  position: relative; overflow: hidden;
}
.about-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

/* GALLERY GRID */
.gallery-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; max-width: 1200px; margin: 0 auto;
}
.gallery-grid img {
  width: 100%; height: 380px;
  object-fit: cover; display: block;
  transition: transform 0.5s;
}
.gallery-grid img:hover { transform: scale(1.03); }
.gallery-text {
  padding: 60px 70px;
  display: flex; flex-direction: column; justify-content: center;
  background: #111;
}
.gallery-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 300;
  color: var(--gold); margin-bottom: 16px;
}
.gallery-text p {
  font-size: 0.85rem; line-height: 2;
  color: rgba(245,242,236,0.65); font-weight: 300;
}

/* FRÜHSTÜCK SECTION */
.fruhstuck-highlight {
  background: #0a0a0a;
  padding: 110px 60px;
  text-align: center;
  position: relative;
}
.fruhstuck-highlight::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.07) 0%, transparent 65%);
}
.fruhstuck-highlight > * { position: relative; z-index: 1; }

/* EVENTS SECTION */
.events-section {
  background: #0e0e0e; padding: 110px 60px;
  text-align: center; position: relative;
}
.events-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.07) 0%, transparent 65%);
}
.events-content { position: relative; z-index: 1; max-width: 780px; margin: 0 auto; }
.events-tags {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 12px; margin: 36px 0;
}
.tag {
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold-light);
  padding: 7px 20px; font-size: 0.72rem;
  letter-spacing: 0.15em; text-transform: uppercase; font-weight: 500;
}

/* BOOK SECTION */
.book-section {
  background: #f0ece6; min-height: 680px;
  display: flex; align-items: stretch;
}
.book-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  max-width: 1200px; width: 100%; margin: 0 auto;
}
.book-card {
  padding: 70px 60px; color: #111;
  display: flex; flex-direction: column; justify-content: center;
}
.book-script {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem; font-weight: 300; font-style: italic;
  color: #555; line-height: 1; margin-bottom: 4px;
}
.book-event {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: #111; border-bottom: 1px solid #ccc;
  padding-bottom: 18px; margin-bottom: 20px;
}
.book-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; font-style: italic;
  color: #555; margin-bottom: 24px; line-height: 1.7;
}
.book-list { list-style: none; margin-bottom: 24px; }
.book-list li {
  font-size: 0.78rem; letter-spacing: 0.1em;
  text-transform: uppercase; font-weight: 500; color: #333;
  padding: 5px 0; border-bottom: 1px solid rgba(0,0,0,0.06);
  display: flex; align-items: center; gap: 10px;
}
.book-list li::before { content: '—'; color: var(--gold); }
.book-note {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 0.88rem; color: #777; line-height: 1.6;
}
.book-images { display: flex; flex-direction: column; overflow: hidden; }
.book-images img { width: 100%; height: 50%; object-fit: cover; display: block; }

/* MENU GRID */
.menu-section { background: #0e0e0e; padding: 80px 60px; }
.menu-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 20px; max-width: 1200px; margin: 0 auto;
}
.menu-card { position: relative; overflow: hidden; cursor: pointer; }
.menu-card img {
  width: 100%; height: 400px;
  object-fit: cover; object-position: top; display: block;
  transition: transform 0.5s;
}
.menu-card:hover img { transform: scale(1.04); }

/* LIGHTBOX */
.lightbox {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.92); z-index: 9999;
  align-items: center; justify-content: center; padding: 20px;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; }
.lightbox-close {
  position: absolute; top: 20px; right: 28px;
  font-size: 2.5rem; color: var(--gold); cursor: pointer;
  font-family: 'Cormorant Garamond', serif; font-weight: 300; line-height: 1;
}
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  font-size: 3rem; color: var(--gold); cursor: pointer;
  font-family: 'Cormorant Garamond', serif; user-select: none;
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* KONTAKT */
.kontakt-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 680px;
}
.kontakt-info {
  padding: 90px 80px;
  display: flex; flex-direction: column; justify-content: center;
  background: #0e0e0e; position: relative;
}
.kontakt-info::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(201,168,76,0.06) 0%, transparent 65%);
}
.kontakt-info > * { position: relative; z-index: 1; }
.info-block { margin-bottom: 36px; }
.info-block h3 {
  font-size: 0.68rem; letter-spacing: 0.3em;
  text-transform: uppercase; font-weight: 600;
  color: var(--gold); margin-bottom: 12px;
  padding-bottom: 10px; border-bottom: 1px solid rgba(201,168,76,0.25);
}
.info-block p, .info-block a {
  font-size: 0.87rem; color: rgba(245,242,236,0.7);
  line-height: 2.2; text-decoration: none; display: block; font-weight: 300;
}
.info-block a:hover { color: var(--gold); }
.ruhetag { color: rgba(201,168,76,0.45) !important; font-style: italic; }
.hours-grid { display: grid; grid-template-columns: auto 1fr; gap: 0 24px; }
.hours-grid span { font-size: 0.85rem; color: rgba(245,242,236,0.65); line-height: 2.2; font-weight: 300; }
.kontakt-map iframe { width: 100%; height: 100%; border: none; display: block; filter: grayscale(40%); }

/* CONTACT FORM */
.form-section { background: #111; padding: 80px 60px; }
.form-wrap { max-width: 680px; margin: 0 auto; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { margin-bottom: 20px; }
.form-group input, .form-group textarea {
  width: 100%; background: transparent;
  border: none; border-bottom: 1px solid rgba(201,168,76,0.3);
  padding: 12px 0; color: var(--white); font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem; font-weight: 300; outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus { border-bottom-color: var(--gold); }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(245,242,236,0.35); }
.form-group textarea { height: 120px; resize: none; }
.btn-submit {
  background: var(--gold); color: #111; border: none;
  padding: 14px 48px; font-size: 0.72rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 600; cursor: pointer; font-family: 'Montserrat', sans-serif;
  transition: background 0.2s;
}
.btn-submit:hover { background: var(--gold-light); }
.alert {
  padding: 14px 20px; margin-bottom: 24px;
  font-size: 0.82rem; letter-spacing: 0.05em;
}
.alert-success { background: rgba(201,168,76,0.15); border-left: 3px solid var(--gold); color: var(--gold-light); }
.alert-error { background: rgba(255,80,80,0.1); border-left: 3px solid #ff5050; color: #ff8080; }

/* LEGAL */
.legal-section { max-width: 860px; margin: 0 auto; padding: 90px 60px 110px; }
.legal-badge {
  display: inline-block; font-size: 0.65rem; letter-spacing: 0.3em;
  text-transform: uppercase; font-weight: 600; color: var(--gold);
  border: 1px solid rgba(201,168,76,0.35); padding: 6px 16px; margin-bottom: 28px;
}
.legal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 300;
  color: var(--white); letter-spacing: 0.05em; line-height: 1.1;
}
.legal-title span { color: var(--gold); }
.legal-divider { width: 80px; height: 1px; background: var(--gold); margin: 32px 0; }
.legal-block { margin-bottom: 44px; }
.legal-block h2 {
  font-size: 0.72rem; letter-spacing: 0.25em;
  text-transform: uppercase; font-weight: 600;
  color: var(--gold-light); margin-bottom: 16px;
  padding-bottom: 10px; border-bottom: 1px solid rgba(201,168,76,0.2);
}
.legal-block p {
  font-size: 0.88rem; line-height: 1.9;
  color: rgba(245,242,236,0.6); font-weight: 300; margin-bottom: 10px;
}
.legal-block a { color: var(--gold); text-decoration: none; }
.legal-block ul { list-style: none; margin: 10px 0; }
.legal-block ul li {
  font-size: 0.86rem; line-height: 2;
  color: rgba(245,242,236,0.6); font-weight: 300;
  padding-left: 20px; position: relative;
}
.legal-block ul li::before { content: '—'; position: absolute; left: 0; color: var(--gold); }

/* FOOTER */
footer { background: #0a0a0a; padding: 70px 60px 0; }
.footer-top {
  display: grid; grid-template-columns: 160px 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo-wrap { display: flex; align-items: flex-start; justify-content: center; }
.footer-logo-img { width: 110px; border-radius: 50%; }
.footer-col h4 {
  font-size: 0.68rem; letter-spacing: 0.25em;
  text-transform: uppercase; font-weight: 600;
  color: var(--white); margin-bottom: 16px;
  padding-bottom: 12px; border-bottom: 1px solid rgba(201,168,76,0.4);
}
.footer-col p, .footer-col a {
  display: block; font-size: 0.82rem;
  color: rgba(245,242,236,0.5); text-decoration: none; line-height: 2;
}
.footer-col a:hover { color: var(--gold); }
.footer-map { width: 100%; height: 260px; border: none; display: block; filter: grayscale(40%); }
.footer-bottom {
  text-align: center; padding: 20px;
  font-size: 0.68rem; color: rgba(245,242,236,0.2); letter-spacing: 0.1em;
}
.social-icons { display: flex; gap: 10px; margin-top: 14px; }
.social-icon {
  width: 34px; height: 34px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; text-decoration: none;
}
.social-ig { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.social-tk { background: #010101; border: 1px solid #333; color: white; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .navbar-links { display: none; }
  .hamburger { display: flex; }
  .about-grid, .gallery-grid, .book-grid, .kontakt-grid { grid-template-columns: 1fr; }
  .about-img, .kontakt-map { height: 350px; }
  .book-images { flex-direction: row; height: 300px; }
  .book-images img { width: 50%; height: 100%; }
  .menu-grid { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .section { padding: 60px 24px; }
  .fruhstuck-highlight, .events-section, .menu-section, .form-section { padding: 60px 24px; }
  .kontakt-info { padding: 60px 32px; }
  .legal-section { padding: 60px 24px 80px; }
  footer { padding: 50px 24px 0; }
  .form-row { grid-template-columns: 1fr; }
  .navbar { padding: 0 20px; }
}
@media (max-width: 580px) {
  .footer-top { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.8rem; }
}
