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

:root {
  --cream:        #F5EFE0;
  --cream-light:  #FBF7EE;
  --cream-dark:   #EAE0CB;
  --bordeaux:     #7B1E35;
  --bordeaux-d:   #571529;
  --bordeaux-l:   #9C2545;
  --gold:         #B8945A;
  --black:        #1B1916;
  --font-d: 'Cinzel', serif;
  --font-b: 'Cormorant Garamond', serif;
  --font-u: 'Josefin Sans', sans-serif;
}

html, body {
  width: 100%; height: 100%;
  overflow: hidden;
  background: var(--cream);
  color: var(--black);
}

@media (max-width: 768px) {
  html, body { overflow: auto; height: auto; }
}

/* ========== ANIMATED BACKGROUND ========== */
.bg {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
}

.bg-orb {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(184,148,90,.1) 0%, transparent 65%);
  animation: orbDrift ease-in-out infinite;
}
.bg-orb:nth-child(1){width:700px;height:700px;top:-180px;left:-150px;animation-duration:28s;}
.bg-orb:nth-child(2){width:500px;height:500px;top:50%;right:-120px;animation-duration:22s;animation-direction:reverse;}
.bg-orb:nth-child(3){width:350px;height:350px;bottom:-80px;left:35%;animation-duration:34s;animation-delay:-8s;}
.bg-orb:nth-child(4){width:250px;height:250px;top:20%;left:10%;animation-duration:18s;animation-delay:-5s;}

@keyframes orbDrift {
  0%,100%{transform:translate(0,0) scale(1);}
  33%{transform:translate(25px,-18px) scale(1.06);}
  66%{transform:translate(-12px,22px) scale(.95);}
}

/* Thin decorative lines */
.bg-line {
  position: absolute;
  background: linear-gradient(to right, transparent, rgba(123,30,53,.08), transparent);
  height: 1px; width: 80%;
  left: 10%; pointer-events: none;
}
.bg-line:nth-child(5){top:28%;}
.bg-line:nth-child(6){top:72%; background: linear-gradient(to right, transparent, rgba(184,148,90,.1), transparent);}

/* ========== STAGE ========== */
.stage {
  position: relative; z-index: 2;
  width: 100vw; height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0;
}

@media (max-width: 768px) {
  .stage { height: auto; min-height: 100vh; padding: 60px 20px 130px; justify-content: center; }
}

/* ========== LOGO ========== */
.logo-wrap {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  animation: logoAppear 1.6s cubic-bezier(.22,1,.36,1) both;
}

@keyframes logoAppear {
  from { opacity:0; transform: translateY(36px) scale(.94); }
  to   { opacity:1; transform: translateY(0) scale(1); }
}

.hare-wrap {
  width: clamp(110px, 16vw, 160px);
  animation: hareFloat 7s ease-in-out infinite;
  filter: drop-shadow(0 12px 30px rgba(123,30,53,.18));
}

@keyframes hareFloat {
  0%,100%{ transform: translateY(0) rotate(-.8deg); }
  50%    { transform: translateY(-14px) rotate(.8deg); }
}

.logo-name {
  font-family: var(--font-d);
  font-size: clamp(2rem, 4.8vw, 3.8rem);
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--black);
  text-align: center;
  line-height: 1;
}

.logo-name em {
  color: var(--bordeaux);
  font-style: normal;
}

.logo-rule {
  width: clamp(60px, 10vw, 100px);
  height: 1px;
  background: linear-gradient(to right, transparent, var(--bordeaux), transparent);
  margin: 4px auto;
}

.logo-sub {
  font-family: var(--font-b);
  font-size: clamp(.78rem, 1.4vw, 1rem);
  font-weight: 300;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: rgba(27,25,22,.55);
  text-align: center;
}

.logo-loc {
  font-family: var(--font-b);
  font-size: clamp(.7rem, 1.1vw, .88rem);
  font-style: italic;
  letter-spacing: .2em;
  color: var(--gold);
}

/* ========== TOP BAR ========== */
.top-deco {
  position: fixed; top: 22px; left: 28px; z-index: 10;
  font-family: var(--font-u); font-size: .58rem;
  letter-spacing: .28em; text-transform: uppercase;
  color: rgba(27,25,22,.35);
  animation: fadeSlideDown .8s ease both 1.2s;
}

.social-bar {
  position: fixed; top: 18px; right: 28px; z-index: 10;
  display: flex; gap: 10px; align-items: center;
  animation: fadeSlideDown .8s ease both 1.4s;
}

@keyframes fadeSlideDown {
  from { opacity:0; transform: translateY(-10px); }
  to   { opacity:1; transform: translateY(0); }
}

.soc-btn {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(123,30,53,.25);
  background: rgba(251,247,238,.8);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; text-decoration: none;
  color: var(--bordeaux);
  transition: all .3s cubic-bezier(.22,1,.36,1);
}

.soc-btn:hover {
  background: var(--bordeaux); color: var(--cream);
  border-color: var(--bordeaux);
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 8px 22px rgba(123,30,53,.3);
}

.soc-btn svg { width: 16px; height: 16px; fill: currentColor; }

/* ========== NAV BAR ========== */
.nav-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 10;
  padding: 14px 20px 22px;
  display: flex; gap: 8px; justify-content: center; flex-wrap: wrap;
  background: linear-gradient(to top, rgba(245,239,224,.98) 55%, transparent);
  backdrop-filter: blur(4px);
  animation: navUp 1.2s cubic-bezier(.22,1,.36,1) both .4s;
}

@keyframes navUp {
  from { opacity:0; transform: translateY(45px); }
  to   { opacity:1; transform: translateY(0); }
}

.nav-btn {
  font-family: var(--font-u); font-size: .68rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--black);
  background: transparent;
  border: 1px solid rgba(27,25,22,.22);
  border-radius: 30px;
  padding: 10px 22px;
  cursor: pointer;
  position: relative; overflow: hidden;
  transition: color .35s, border-color .35s, transform .3s, box-shadow .3s;
}

.nav-btn::after {
  content: '';
  position: absolute; inset: 0;
  background: var(--bordeaux);
  border-radius: 30px;
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s cubic-bezier(.22,1,.36,1);
  z-index: -1;
}

.nav-btn:hover {
  color: var(--cream);
  border-color: var(--bordeaux);
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(123,30,53,.22);
}

.nav-btn:hover::after { transform: scaleX(1); }
.nav-btn:active { transform: translateY(0); }

/* ========== MODAL SYSTEM ========== */
.overlay {
  position: fixed; inset: 0; z-index: 100;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; pointer-events: none;
  transition: opacity .4s ease;
}

.overlay.open { opacity:1; pointer-events: all; }

.overlay-bg {
  position: absolute; inset: 0;
  background: rgba(27,25,22,.88);
  backdrop-filter: blur(10px);
}

.modal {
  position: relative; z-index: 1;
  background: var(--cream-light);
  border-radius: 2px;
  width: 100%; max-width: 800px;
  max-height: 82vh;
  overflow-y: auto;
  border-top: 3px solid var(--bordeaux);
  box-shadow: 0 30px 80px rgba(27,25,22,.4);
  transform: translateY(45px) scale(.97);
  transition: transform .48s cubic-bezier(.22,1,.36,1);
  scrollbar-width: thin;
  scrollbar-color: var(--bordeaux) var(--cream-dark);
}

.overlay.open .modal { transform: translateY(0) scale(1); }

.modal::-webkit-scrollbar { width: 4px; }
.modal::-webkit-scrollbar-track { background: var(--cream-dark); }
.modal::-webkit-scrollbar-thumb { background: var(--bordeaux); border-radius: 2px; }

.m-head {
  position: sticky; top: 0; z-index: 5;
  background: var(--cream-light);
  padding: 24px 30px 18px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid rgba(27,25,22,.1);
}

.m-title {
  font-family: var(--font-d); font-size: 1.15rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--bordeaux);
}

.m-close {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(27,25,22,.2);
  background: transparent; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--black);
  transition: all .3s; line-height: 1;
}

.m-close:hover {
  background: var(--bordeaux); color: var(--cream);
  border-color: var(--bordeaux);
  transform: rotate(90deg);
}

.m-body { padding: 26px 30px 36px; }

/* ---- Modal Typography ---- */
.m-body h2 {
  font-family: var(--font-d); font-size: .95rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--bordeaux); margin: 30px 0 12px;
}

.m-body h2:first-child { margin-top: 0; }

.m-body p {
  font-family: var(--font-b); font-size: 1.05rem;
  line-height: 1.85; font-weight: 300; color: var(--black);
}

.m-body ul { list-style: none; padding: 0; display: grid; gap: 7px; }

.m-body ul li {
  font-family: var(--font-b); font-size: 1.02rem;
  line-height: 1.6; padding-left: 20px; position: relative;
  font-weight: 300;
}

.m-body ul li::before {
  content: '—'; position: absolute; left: 0;
  color: var(--bordeaux); font-weight: 400;
}

/* Info grid */
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 16px 0; }

@media (max-width: 560px) { .info-grid { grid-template-columns: 1fr; } }

.info-card {
  background: var(--cream-dark);
  border-left: 2px solid var(--bordeaux);
  padding: 15px 18px; border-radius: 1px;
}

.info-card strong {
  font-family: var(--font-u); font-size: .62rem;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--bordeaux); display: block; margin-bottom: 5px;
}

.info-card span {
  font-family: var(--font-b); font-size: 1rem;
  line-height: 1.5; color: var(--black);
}

/* ---- Tabs ---- */
.tabs { display: flex; gap: 0; border-bottom: 1px solid rgba(27,25,22,.12); margin-bottom: 24px; flex-wrap: wrap; }

.tab {
  font-family: var(--font-u); font-size: .63rem;
  letter-spacing: .16em; text-transform: uppercase;
  color: rgba(27,25,22,.45);
  background: none; border: none; border-bottom: 2px solid transparent;
  padding: 10px 18px; cursor: pointer; margin-bottom: -1px;
  transition: all .25s;
}

.tab.on { color: var(--bordeaux); border-bottom-color: var(--bordeaux); }
.tab:hover { color: var(--bordeaux); }

.tab-pane { display: none; }
.tab-pane.on { display: block; }

/* ---- Accordion ---- */
.acc-item { border-bottom: 1px solid rgba(27,25,22,.1); }

.acc-hd {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0; cursor: pointer;
  background: none; border: none;
  font-family: var(--font-u); font-size: .68rem;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--black); transition: color .25s;
}

.acc-hd:hover { color: var(--bordeaux); }

.acc-icon {
  font-size: 1.1rem; color: var(--bordeaux);
  transition: transform .35s cubic-bezier(.22,1,.36,1);
  font-style: normal;
}

.acc-hd.on .acc-icon { transform: rotate(45deg); }

.acc-body {
  max-height: 0; overflow: hidden;
  transition: max-height .4s cubic-bezier(.22,1,.36,1);
}

.acc-body.on { max-height: 600px; }

.menu-item {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 9px 0; border-bottom: 1px dotted rgba(27,25,22,.1);
}

.menu-item:last-child { border: none; margin-bottom: 14px; }

.mi-name {
  font-family: var(--font-b); font-size: 1rem;
  color: var(--black); font-weight: 400;
}

.mi-desc {
  font-size: .86rem; color: rgba(27,25,22,.5);
  font-style: italic; margin-top: 2px;
}

.mi-price {
  font-family: var(--font-u); font-size: .75rem;
  color: var(--bordeaux); white-space: nowrap; margin-left: 14px;
  padding-top: 2px;
}

/* ---- Gallery ---- */
.gal-section { margin-bottom: 28px; }

.gal-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 8px; margin-top: 12px;
}

@media (max-width: 520px) { .gal-grid { grid-template-columns: repeat(2, 1fr); } }

.gal-item {
  aspect-ratio: 4/3; border-radius: 2px; overflow: hidden;
  background: var(--cream-dark); cursor: pointer; position: relative;
  transition: transform .3s, box-shadow .3s;
}

.gal-item:hover { transform: scale(1.02); box-shadow: 0 8px 24px rgba(27,25,22,.15); }

.gal-ph {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(135deg, var(--cream-dark) 0%, var(--cream) 100%);
}

.gal-ph svg { width: 32px; height: 32px; opacity: .18; }
.gal-ph span { font-family: var(--font-u); font-size: .58rem; letter-spacing: .12em; text-transform: uppercase; opacity: .3; }

.gal-hover {
  position: absolute; inset: 0;
  background: rgba(123,30,53,.55);
  opacity: 0; transition: opacity .3s;
  display: flex; align-items: center; justify-content: center;
}

.gal-item:hover .gal-hover { opacity: 1; }

/* ---- Event cards ---- */
.ev-card {
  background: var(--cream-dark); border-left: 3px solid var(--bordeaux);
  padding: 20px 22px; border-radius: 1px; margin-bottom: 12px;
  transition: transform .3s;
}

.ev-card:hover { transform: translateX(5px); }

.ev-card h3 {
  font-family: var(--font-d); font-size: .92rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--bordeaux); margin-bottom: 6px;
}

.ev-date {
  font-family: var(--font-u); font-size: .6rem;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px;
}

/* ---- CTA Button ---- */
.cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-u); font-size: .68rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--cream); background: var(--bordeaux);
  border: none; border-radius: 30px;
  padding: 13px 28px; cursor: pointer; margin-top: 18px;
  text-decoration: none;
  transition: all .3s;
}

.cta:hover {
  background: var(--bordeaux-d);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(123,30,53,.35);
}

/* ---- Rating ---- */
.stars { color: var(--gold); letter-spacing: 3px; font-size: 1.1rem; }

.review-card {
  background: var(--cream-dark); padding: 16px 18px;
  border-radius: 2px; margin-bottom: 10px;
}

.review-author {
  font-family: var(--font-u); font-size: .62rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--bordeaux); margin-bottom: 6px;
}

/* ---- Impressum ---- */
.imp-block { margin-bottom: 22px; }

.imp-block strong {
  font-family: var(--font-u); font-size: .62rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--bordeaux); display: block; margin-bottom: 6px;
}

.imp-block p { font-size: .98rem; line-height: 1.8; }

/* ---- Divider ---- */
.m-rule {
  border: none;
  border-top: 1px solid rgba(27,25,22,.1);
  margin: 22px 0;
}

/* ========== COOKIE BAR ========== */
.cookie {
  position: fixed; bottom: 68px; left: 50%; transform: translateX(-50%);
  z-index: 200;
  background: var(--black); color: var(--cream);
  border-radius: 4px; padding: 14px 18px;
  display: flex; align-items: center; gap: 18px;
  max-width: 680px; width: calc(100% - 36px);
  box-shadow: 0 16px 48px rgba(27,25,22,.45);
  animation: cookieIn .7s cubic-bezier(.22,1,.36,1) both 2.4s;
}

@keyframes cookieIn {
  from { opacity:0; transform: translateX(-50%) translateY(18px); }
  to   { opacity:1; transform: translateX(-50%) translateY(0); }
}

.cookie p {
  flex: 1;
  font-family: var(--font-u); font-size: .65rem;
  line-height: 1.7; letter-spacing: .06em;
  opacity: .82;
}

.cookie a { color: var(--gold); cursor: pointer; text-decoration: underline; }

.cookie-ok {
  font-family: var(--font-u); font-size: .62rem; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--cream); background: var(--bordeaux);
  border: none; border-radius: 20px;
  padding: 9px 20px; cursor: pointer;
  white-space: nowrap; transition: background .3s;
}

.cookie-ok:hover { background: var(--bordeaux-d); }

.cookie.hidden { display: none; }

/* ========== RESPONSIVE TWEAKS ========== */
@media (max-width: 480px) {
  .m-body { padding: 20px 20px 30px; }
  .m-head { padding: 18px 20px 14px; }
  .m-title { font-size: .95rem; }
  .nav-btn { font-size: .6rem; padding: 9px 16px; }
  .top-deco { display: none; }
  .social-bar { top: 12px; right: 14px; }
}
