/* =========================================================
   Femboy Hooters – Design System
   Palette: Cream #FFF7F0 · Plum #3A2145 · Pink #FF8FC7
            Lavender #C9A8FF · Sky #7FD1E0 · Gold #FFC94D
   Display: 'Baloo 2' (rund, verspielt) · Body: 'Quicksand'
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@500;600;700;800&family=Quicksand:wght@400;500;600;700&display=swap');

:root {
    --cream: #FFF7F0;
    --cream-dim: #FCEFE4;
    --plum: #3A2145;
    --plum-soft: #6B5478;
    --pink: #FF8FC7;
    --pink-dim: #FFE1F1;
    --lavender: #C9A8FF;
    --lavender-dim: #F0E7FF;
    --sky: #7FD1E0;
    --sky-dim: #E3F7FA;
    --gold: #FFC94D;
    --white: #FFFFFF;
    --shadow: 0 10px 30px rgba(58, 33, 69, 0.12);
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --font-display: 'Baloo 2', system-ui, sans-serif;
    --font-body: 'Quicksand', system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--plum);
    font-size: 17px;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    margin: 0 0 0.5em;
    line-height: 1.15;
}

p { margin: 0 0 1em; }

a { color: var(--plum); }

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

.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Fokus-Sichtbarkeit für Tastaturnutzung */
a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, select:focus-visible {
    outline: 3px solid var(--sky);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; }
    html { scroll-behavior: auto; }
}

/* ---------- Header / Navigation ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 247, 240, 0.92);
    backdrop-filter: blur(8px);
    border-bottom: 3px solid var(--plum);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    padding-bottom: 12px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--plum);
}

.brand img { width: 52px; height: 52px; }

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-text strong {
    font-family: var(--font-display);
    font-size: 1.35rem;
}

.brand-text span {
    font-size: 0.78rem;
    color: var(--plum-soft);
    font-weight: 600;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 4px;
    margin: 0;
    padding: 0;
}

.main-nav a {
    text-decoration: none;
    font-weight: 700;
    padding: 10px 16px;
    border-radius: 999px;
    transition: background 0.2s ease, color 0.2s ease;
    display: inline-block;
}

.main-nav a:hover,
.main-nav a.active {
    background: var(--plum);
    color: var(--white);
}

.nav-toggle {
    display: none;
    background: none;
    border: 2px solid var(--plum);
    border-radius: 10px;
    padding: 8px 10px;
    font-size: 1.2rem;
    cursor: pointer;
}

@media (max-width: 780px) {
    .nav-toggle { display: block; }
    .main-nav {
        display: none;
        width: 100%;
        order: 3;
    }
    .main-nav.open { display: block; }
    .main-nav ul { flex-direction: column; padding: 12px 0; }
    .site-header .container { flex-wrap: wrap; }
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 999px;
    padding: 14px 28px;
    cursor: pointer;
    font-size: 1rem;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
    background: linear-gradient(135deg, var(--pink), var(--lavender));
    color: var(--plum);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background: var(--white);
    color: var(--plum);
    border: 2px solid var(--plum);
}

.btn-small {
    padding: 8px 18px;
    font-size: 0.85rem;
}

.btn-danger {
    background: #FFD3D3;
    color: #7A1F1F;
    border: 2px solid #7A1F1F;
}

.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    overflow: hidden;
    padding: 72px 0 96px;
    background: radial-gradient(circle at 15% 20%, var(--lavender-dim), transparent 55%),
                radial-gradient(circle at 85% 10%, var(--sky-dim), transparent 50%),
                radial-gradient(circle at 75% 90%, var(--pink-dim), transparent 55%),
                var(--cream);
}

.hero .container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.hero-eyebrow {
    display: inline-block;
    background: var(--plum);
    color: var(--white);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 18px;
}

.hero h1 {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    color: var(--plum);
}

.hero h1 .accent {
    background: linear-gradient(135deg, var(--pink), var(--lavender) 60%, var(--sky));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-sub {
    font-size: 1.15rem;
    color: var(--plum-soft);
    max-width: 46ch;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.hero-art {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-art .blob {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--pink), var(--lavender), var(--sky));
    border-radius: 42% 58% 65% 35% / 45% 40% 60% 55%;
    filter: blur(0.5px);
    opacity: 0.55;
    animation: blobmove 10s ease-in-out infinite;
}

@keyframes blobmove {
    0%, 100% { border-radius: 42% 58% 65% 35% / 45% 40% 60% 55%; }
    50% { border-radius: 58% 42% 40% 60% / 55% 60% 40% 45%; }
}

.hero-art img {
    position: relative;
    width: 78%;
    max-width: 340px;
    margin: 0 auto;
}

@media (max-width: 860px) {
    .hero .container { grid-template-columns: 1fr; text-align: center; }
    .hero-sub { max-width: none; margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-art img { width: 55%; }
}

/* ---------- Wing divider ---------- */
.wing-divider {
    width: 100%;
    height: 40px;
    color: var(--pink);
    margin: 0 auto;
}

/* ---------- Generic section ---------- */
.section {
    padding: 88px 0;
}

.section-alt { background: var(--white); }

.section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
}

.section-head .kicker {
    font-family: var(--font-display);
    color: var(--pink);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.8rem;
}

.section-head h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }

/* ---------- Highlight cards (Startseite) ---------- */
.highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.highlight-card {
    background: var(--cream-dim);
    border: 2px solid var(--plum);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: center;
}

.highlight-card .icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
    border: 2px solid var(--plum);
    font-size: 1.6rem;
}

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

/* ---------- Speisekarte ---------- */
.menu-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 48px;
}

.menu-nav a {
    text-decoration: none;
    font-weight: 700;
    color: var(--plum);
    background: var(--white);
    border: 2px solid var(--plum);
    border-radius: 999px;
    padding: 8px 18px;
    font-size: 0.9rem;
}

.menu-category { margin-bottom: 56px; scroll-margin-top: 100px; }

.menu-category h3 {
    font-size: 1.7rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.menu-category h3::after {
    content: '';
    flex: 1;
    height: 3px;
    background: repeating-linear-gradient(90deg, var(--plum) 0 8px, transparent 8px 14px);
    opacity: 0.4;
}

.menu-list { display: grid; gap: 18px; margin-top: 24px; }

.menu-item {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 22px;
    background: var(--white);
    border: 2px solid var(--plum);
    border-radius: var(--radius-md);
}

.menu-item-name { font-family: var(--font-display); font-weight: 600; font-size: 1.08rem; }
.menu-item-desc { color: var(--plum-soft); font-size: 0.92rem; margin-top: 4px; }
.menu-item-price {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--plum);
    white-space: nowrap;
    align-self: center;
    background: var(--gold);
    padding: 6px 14px;
    border-radius: 999px;
    border: 2px solid var(--plum);
}

/* ---------- Formulare ---------- */
.form-card {
    background: var(--white);
    border: 2px solid var(--plum);
    border-radius: var(--radius-lg);
    padding: 36px;
    max-width: 640px;
    margin: 0 auto;
    box-shadow: var(--shadow);
}

.form-grid { display: grid; gap: 18px; }

.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

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

label {
    display: block;
    font-weight: 700;
    margin-bottom: 6px;
    font-size: 0.92rem;
}

input, textarea, select {
    width: 100%;
    font-family: var(--font-body);
    font-size: 1rem;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    border: 2px solid var(--plum-soft);
    background: var(--cream);
    color: var(--plum);
}

input:focus, textarea:focus, select:focus {
    border-color: var(--pink);
}

textarea { resize: vertical; min-height: 120px; }

.field-hint { font-size: 0.8rem; color: var(--plum-soft); margin-top: 4px; }

.form-actions { margin-top: 8px; }

/* ---------- Alerts / Flash ---------- */
.alert {
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
    font-weight: 600;
    border: 2px solid;
}

.alert-success { background: #E4F8EC; border-color: #2F8F4E; color: #1F5C33; }
.alert-error { background: #FDE6E6; border-color: #C23A3A; color: #7A1F1F; }
.alert-info { background: var(--sky-dim); border-color: var(--sky); color: var(--plum); }

/* ---------- Footer ---------- */
.site-footer {
    background: var(--plum);
    color: var(--cream);
    padding: 56px 0 28px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 36px;
}

.site-footer h4 { color: var(--white); font-size: 1.05rem; }
.site-footer a { color: var(--pink-dim); text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.site-footer .brand-text span { color: var(--lavender-dim); }
.site-footer .brand { color: var(--white); }

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 0.85rem;
    color: var(--lavender-dim);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

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

/* ---------- Admin ---------- */
.admin-shell { min-height: 100vh; background: var(--cream-dim); }

.admin-topbar {
    background: var(--plum);
    color: var(--white);
    padding: 16px 0;
}

.admin-topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-topbar a { color: var(--pink-dim); text-decoration: none; font-weight: 700; }

.admin-login-wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 20% 20%, var(--lavender-dim), var(--cream) 60%);
    padding: 24px;
}

.tabs {
    display: flex;
    gap: 8px;
    margin: 32px 0 24px;
    border-bottom: 3px solid var(--plum);
}

.tab-link {
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--plum-soft);
    padding: 10px 20px;
    border-radius: 12px 12px 0 0;
}

.tab-link.active {
    color: var(--plum);
    background: var(--white);
    border: 3px solid var(--plum);
    border-bottom: 3px solid var(--white);
    margin-bottom: -3px;
}

.data-card {
    background: var(--white);
    border: 2px solid var(--plum);
    border-radius: var(--radius-md);
    padding: 22px;
    margin-bottom: 18px;
}

.data-card-head {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
}

.badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.badge-new { background: #FDE6E6; color: #7A1F1F; }
.badge-done { background: #E4F8EC; color: #1F5C33; }
.badge-pending { background: #FFF3D6; color: #8A6100; }
.badge-confirmed { background: #E4F8EC; color: #1F5C33; }
.badge-declined { background: #FDE6E6; color: #7A1F1F; }

.meta-line { color: var(--plum-soft); font-size: 0.88rem; margin-bottom: 12px; }

.reply-box {
    background: var(--sky-dim);
    border-radius: var(--radius-sm);
    padding: 14px;
    margin-top: 10px;
    font-size: 0.95rem;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--plum-soft);
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 12px;
}

.stat-card {
    background: var(--white);
    border: 2px solid var(--plum);
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: center;
}

.stat-card .num { font-family: var(--font-display); font-size: 2rem; font-weight: 800; }
.stat-card .label { color: var(--plum-soft); font-size: 0.85rem; font-weight: 600; }

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

.inline-form { display: inline; }
