/* ── Variablen & Reset ──────────────────────────────────────────────────── */
:root {
    --schwarz:   #1a1a1a;
    --gold:      #c9a84c;
    --gold-hell: #e8d5a3;
    --gold-dunkel: #a8883a;
    --ivory:     #f8f5ef;
    --ivory-dunkel: #f0ebe0;
    --weiss:     #ffffff;
    --text-hell: #9a9a8a;
    --nav-hoehe: 80px;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans:  'Montserrat', Arial, sans-serif;
    --transition: 0.3s ease;
    --max-width:  1200px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-sans);
    background: var(--schwarz);
    color: var(--ivory);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ── Utility ────────────────────────────────────────────────────────────── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }

/* ── Buttons ────────────────────────────────────────────────────────────── */
.btn-gold {
    display: inline-block;
    padding: 0.85rem 2.2rem;
    background: var(--gold);
    color: var(--schwarz);
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid var(--gold);
    transition: var(--transition);
    cursor: pointer;
}
.btn-gold:hover {
    background: transparent;
    color: var(--gold);
}
.btn-outline {
    display: inline-block;
    padding: 0.85rem 2.2rem;
    background: transparent;
    color: var(--ivory);
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid rgba(248,245,239,0.4);
    transition: var(--transition);
}
.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ── Navigation ─────────────────────────────────────────────────────────── */
.nav-main {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--nav-hoehe);
    display: flex; align-items: center;
    transition: background var(--transition), box-shadow var(--transition);
}
.nav-main.scrolled {
    background: rgba(26,26,26,0.97);
    box-shadow: 0 2px 20px rgba(0,0,0,0.4);
    backdrop-filter: blur(10px);
}
.nav-container {
    max-width: var(--max-width); margin: 0 auto; padding: 0 2rem;
    width: 100%; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { text-decoration: none; letter-spacing: 3px; font-size: 1.1rem; font-weight: 700; }
.nav-logo-prime { color: var(--gold); }
.nav-logo-events { color: var(--ivory); }
.nav-links { list-style: none; display: flex; align-items: center; gap: 2.5rem; }
.nav-links a {
    color: rgba(248,245,239,0.75);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-links .nav-cta {
    padding: 0.5rem 1.2rem;
    border: 1px solid var(--gold);
    color: var(--gold);
}
.nav-links .nav-cta:hover { background: var(--gold); color: var(--schwarz); }
.nav-burger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--ivory); margin: 5px 0; transition: var(--transition); }

/* ── Hero ───────────────────────────────────────────────────────────────── */
.hero {
    position: relative; height: 100vh; min-height: 600px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2515 50%, #1a1a1a 100%);
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 30% 60%, rgba(201,168,76,0.12) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 20%, rgba(201,168,76,0.08) 0%, transparent 50%);
}
.hero-overlay { position: absolute; inset: 0; background: rgba(26,26,26,0.3); }
.hero-content {
    position: relative; z-index: 2;
    text-align: center; padding: 2rem;
    max-width: 800px;
}
.hero-pretitle {
    font-family: var(--font-sans);
    font-size: 0.7rem; font-weight: 600;
    letter-spacing: 4px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1.5rem;
}
.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 300; line-height: 1.1;
    color: var(--ivory); margin-bottom: 1.5rem;
    letter-spacing: 2px;
}
.hero-subtitle {
    font-family: var(--font-sans);
    font-size: 1rem; font-weight: 300;
    color: rgba(248,245,239,0.7);
    letter-spacing: 1px; margin-bottom: 2rem;
}
.hero-divider {
    width: 60px; height: 1px;
    background: var(--gold);
    margin: 0 auto 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
    position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: rgba(248,245,239,0.4); font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase;
}
.hero-scroll-line {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line { 0%,100% { opacity:0.4; } 50% { opacity:1; } }

/* ── Sections gemeinsam ─────────────────────────────────────────────────── */
.section-label {
    font-family: var(--font-sans);
    font-size: 0.65rem; font-weight: 600;
    letter-spacing: 4px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1rem;
}
.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300; line-height: 1.2;
    color: var(--ivory); margin-bottom: 1rem;
}
.about-divider {
    width: 50px; height: 1px;
    background: var(--gold);
    margin-bottom: 2.5rem;
}

/* ── Über-uns ───────────────────────────────────────────────────────────── */
.section-about {
    padding: 7rem 0;
    background: var(--schwarz);
}
.about-text {
    max-width: 680px;
    color: rgba(248,245,239,0.7);
    font-size: 1.05rem; line-height: 1.9;
    font-weight: 300;
}

/* ── Services ───────────────────────────────────────────────────────────── */
.section-services {
    padding: 7rem 0;
    background: #111;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem; margin-top: 1rem;
}
.service-card {
    padding: 2.5rem 2rem;
    border: 1px solid rgba(201,168,76,0.15);
    background: rgba(201,168,76,0.03);
    transition: var(--transition);
}
.service-card:hover {
    border-color: rgba(201,168,76,0.4);
    background: rgba(201,168,76,0.06);
    transform: translateY(-4px);
}
.service-icon { font-size: 2.5rem; margin-bottom: 1.5rem; }
.service-image { width: 100%; height: 200px; overflow: hidden; margin: -2.5rem -2rem 1.5rem; width: calc(100% + 4rem); }
.service-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .service-image img { transform: scale(1.05); }
.service-title {
    font-family: var(--font-serif);
    font-size: 1.5rem; font-weight: 400;
    color: var(--ivory); margin-bottom: 1rem;
}
.service-text {
    color: rgba(248,245,239,0.6);
    font-size: 0.9rem; line-height: 1.8; font-weight: 300;
}

/* ── Çmimet (Preise) ─────────────────────────────────────────────────────── */
.section-cmimet { padding: 7rem 0; background: #0d0d0d; }
.cmimet-kat-title {
    font-family: var(--font-serif);
    font-size: 1.3rem; font-weight: 400;
    color: var(--gold); margin: 3rem 0 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(201,168,76,0.2);
    letter-spacing: 1px; text-transform: uppercase;
}
.cmimet-kat-title:first-of-type { margin-top: 1.5rem; }
.cmimet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
}
.cmimet-card {
    border: 1px solid rgba(201,168,76,0.15);
    background: rgba(201,168,76,0.03);
    transition: var(--transition);
    overflow: hidden;
}
.cmimet-card:hover {
    border-color: rgba(201,168,76,0.4);
    transform: translateY(-3px);
}
.cmimet-img-wrap { height: 160px; overflow: hidden; }
.cmimet-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.cmimet-card:hover .cmimet-img { transform: scale(1.05); }
.cmimet-body { padding: 1.25rem; }
.cmimet-name {
    font-family: var(--font-serif);
    font-size: 1.05rem; color: var(--ivory);
    margin-bottom: 0.4rem;
}
.cmimet-desc {
    font-size: 0.82rem; color: rgba(248,245,239,0.5);
    line-height: 1.6; margin-bottom: 0.75rem;
}
.cmimet-preis {
    font-family: var(--font-serif);
    font-size: 1.4rem; color: var(--gold); font-weight: 400;
}
.cmimet-valuta { font-size: 0.9rem; color: rgba(201,168,76,0.7); }

/* ── Galerie ────────────────────────────────────────────────────────────── */
.section-gallery { padding: 7rem 0; background: var(--schwarz); }
.section-gallery .container { margin-bottom: 3rem; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 4px;
}
.gallery-item { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.gallery-item img,
.gallery-item video {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}
.gallery-item:hover img,
.gallery-item:hover video { transform: scale(1.05); }
.gallery-caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 1rem;
    background: linear-gradient(to top, rgba(26,26,26,0.9), transparent);
    color: var(--ivory); font-size: 0.8rem;
    transform: translateY(100%); transition: var(--transition);
}
.gallery-item:hover .gallery-caption { transform: translateY(0); }

/* ── Kontakt ────────────────────────────────────────────────────────────── */
.section-contact { padding: 7rem 0; background: #111; }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem; margin-top: 1rem;
}
.contact-item {
    display: flex; gap: 1.5rem; align-items: flex-start;
    margin-bottom: 2rem;
}
.contact-icon { font-size: 1.5rem; margin-top: 2px; color: var(--gold); }
.contact-label {
    font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase;
    color: var(--gold); font-weight: 600; margin-bottom: 4px;
}
.contact-value {
    color: rgba(248,245,239,0.8); font-size: 1rem;
    display: block; text-decoration: none;
    transition: color var(--transition);
}
.contact-value:hover { color: var(--gold); }
.contact-cta-box {
    padding: 3rem;
    border: 1px solid rgba(201,168,76,0.2);
    background: rgba(201,168,76,0.04);
}
.contact-cta-box h3 {
    font-family: var(--font-serif); font-size: 1.8rem; font-weight: 300;
    color: var(--ivory); margin-bottom: 1rem;
}
.contact-cta-box p {
    color: rgba(248,245,239,0.6); margin-bottom: 2rem; font-size: 0.9rem;
}
.contact-cta-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── Footer ─────────────────────────────────────────────────────────────── */
.footer {
    background: #0d0d0d;
    border-top: 1px solid rgba(201,168,76,0.15);
    padding: 3rem 0;
    text-align: center;
}
.footer-container { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }
.footer-logo { font-size: 1.2rem; font-weight: 700; letter-spacing: 3px; margin-bottom: 0.5rem; }
.footer-tagline { color: var(--gold); font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 1.5rem; }
.footer-links { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.footer-links a { color: rgba(248,245,239,0.5); text-decoration: none; font-size: 0.8rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-links span { color: rgba(248,245,239,0.2); }
.footer-instagram {
    display: inline-flex; align-items: center; gap: 6px;
    color: rgba(248,245,239,0.6); text-decoration: none; font-size: 0.85rem;
    transition: color var(--transition); margin-bottom: 1.5rem;
}
.footer-instagram:hover { color: var(--gold); }
.footer-copy { color: rgba(248,245,239,0.3); font-size: 0.75rem; }

/* ── Flash Messages ─────────────────────────────────────────────────────── */
.flash-container { position: fixed; top: 90px; right: 1rem; z-index: 999; }
.flash {
    padding: 0.75rem 1.5rem; border-radius: 4px; margin-bottom: 0.5rem;
    font-size: 0.85rem; box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.flash-success { background: #1a3a1a; color: #6fcf6f; border-left: 3px solid #2d7a2d; }
.flash-danger  { background: #3a1a1a; color: #cf6f6f; border-left: 3px solid #7a2d2d; }

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .nav-burger { display: block; }
    .nav-links {
        display: none; position: absolute; top: 100%; left: 0; right: 0;
        flex-direction: column; gap: 0; padding: 1rem 0;
        background: rgba(26,26,26,0.98); backdrop-filter: blur(10px);
    }
    .nav-links.open { display: flex; }
    .nav-links a { padding: 0.8rem 2rem; }
    .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
    .hero-title { font-size: 2.8rem; }
    .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
}

/* ── Rezervimet (Buchungsseite) ──────────────────────────────────────────── */
.section-rezervo { padding: 8rem 0 5rem; background: var(--schwarz); min-height: 100vh; }
.rez-step { margin-bottom: 3.5rem; }
.rez-step-label {
    font-family: var(--font-sans); font-size: 0.6rem; font-weight: 600;
    letter-spacing: 4px; text-transform: uppercase; color: var(--gold);
    margin-bottom: 1.25rem; display: block;
}

/* Kalender */
.rez-kal-wrap { margin-bottom: 2rem; }
.rez-kal-nav { display: flex; justify-content: space-between; align-items: center; max-width: 300px; margin-bottom: 0.5rem; }
.rez-kal-nav button { background: none; border: 1px solid rgba(201,168,76,0.3); color: var(--gold); padding: 0.25rem 0.75rem; cursor: pointer; }
.rez-kal-nav button:hover { background: rgba(201,168,76,0.1); }
.rez-kal-monat { color: var(--ivory); font-size: 0.85rem; letter-spacing: 1px; }
.rez-kal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; max-width: 300px; }
.rez-kal-head { font-size: 0.6rem; text-align: center; color: var(--text-hell); padding: 4px 0; }
.rez-kal-day {
    aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
    font-size: 0.72rem; cursor: pointer; border-radius: 2px;
    background: rgba(255,255,255,0.04); transition: background 0.2s;
    border: 1px solid transparent;
}
.rez-kal-day.leer { background: transparent; cursor: default; }
.rez-kal-day.frei:hover { background: rgba(45,122,45,0.3); }
.rez-kal-day.belegt { background: rgba(180,50,50,0.3); color: #cf8080; cursor: not-allowed; }
.rez-kal-day.gewaehlt { border-color: var(--gold); background: rgba(201,168,76,0.15); color: var(--gold); }
.rez-kal-day.heute { outline: 1px solid rgba(201,168,76,0.4); }

/* Datum-Inputs */
.rez-date-grid { display: flex; gap: 1rem; flex-wrap: wrap; align-items: flex-end; margin-bottom: 1.5rem; }
.rez-field { display: flex; flex-direction: column; gap: 0.4rem; }
.rez-field label { font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); }
.rez-field input[type="date"], .rez-field input[type="text"],
.rez-field input[type="tel"], .rez-field textarea {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(201,168,76,0.3);
    color: var(--ivory); padding: 0.75rem 1rem; font-family: var(--font-sans);
    font-size: 0.9rem; outline: none; min-width: 200px;
    transition: border-color 0.2s; color-scheme: dark;
}
.rez-field input:focus, .rez-field textarea:focus { border-color: var(--gold); }
.rez-field textarea { min-height: 100px; resize: vertical; }

/* Artikel-Karten */
.rez-kat-title {
    font-family: var(--font-serif); font-size: 1.1rem; font-weight: 400;
    color: var(--gold); letter-spacing: 2px; text-transform: uppercase;
    margin: 2rem 0 1rem; padding-bottom: 0.4rem;
    border-bottom: 1px solid rgba(201,168,76,0.2);
}
.rez-artikel-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; margin-bottom: 1rem; }
.rez-artikel-card {
    border: 1px solid rgba(201,168,76,0.15); overflow: hidden;
    background: rgba(255,255,255,0.02); transition: border-color 0.2s;
}
.rez-artikel-card:hover { border-color: rgba(201,168,76,0.35); }
.rez-artikel-card.ausverkauft { opacity: 0.35; pointer-events: none; }
.rez-artikel-img { width: 100%; height: 120px; object-fit: cover; display: block; }
.rez-artikel-body { padding: 1rem; }
.rez-artikel-name { font-family: var(--font-serif); font-size: 1rem; color: var(--ivory); margin-bottom: 0.2rem; }
.rez-artikel-preis { color: var(--gold); font-size: 0.78rem; letter-spacing: 1px; margin-bottom: 0.75rem; }
.rez-artikel-avail { font-size: 0.7rem; color: var(--text-hell); margin-bottom: 0.5rem; }
.rez-menge-wrap { display: flex; align-items: center; gap: 0.5rem; }
.rez-menge-btn { background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.3); color: var(--gold); width: 30px; height: 30px; cursor: pointer; font-size: 1rem; display: flex; align-items: center; justify-content: center; }
.rez-menge-btn:hover { background: rgba(201,168,76,0.2); }
.rez-menge-input { width: 50px; background: rgba(255,255,255,0.05); border: 1px solid rgba(201,168,76,0.3); color: var(--ivory); text-align: center; padding: 0.3rem; font-size: 0.9rem; }

/* Preisrechner */
.rez-preisrechner {
    border: 1px solid rgba(201,168,76,0.2); padding: 1.5rem;
    background: rgba(201,168,76,0.04); max-width: 420px; margin: 2rem 0;
}
.rez-preisrechner-title { font-family: var(--font-serif); font-size: 1.1rem; color: var(--ivory); margin-bottom: 1rem; }
.rez-preis-zeile { display: flex; justify-content: space-between; padding: 0.3rem 0; font-size: 0.88rem; color: rgba(248,245,239,0.7); }
.rez-preis-zeile.gesamt { border-top: 1px solid rgba(201,168,76,0.3); margin-top: 0.5rem; padding-top: 0.75rem; color: var(--gold); font-weight: 600; font-size: 1.05rem; }
.rez-preis-zeile.anzahlung { color: var(--text-hell); font-size: 0.78rem; }

/* Kontaktformular */
.rez-kontakt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* Erfolg */
.rez-success { border: 1px solid rgba(45,180,45,0.3); background: rgba(45,180,45,0.06); padding: 2.5rem; max-width: 500px; }
.rez-success h3 { font-family: var(--font-serif); font-size: 1.8rem; font-weight: 300; color: var(--ivory); margin-bottom: 0.5rem; }
.rez-success p { color: rgba(248,245,239,0.65); }

@media (max-width: 768px) {
    .rez-kontakt-grid { grid-template-columns: 1fr; }
    .rez-date-grid { flex-direction: column; }
}
