/*
Theme Name: Aphrodite Restaurant
Theme URI:  https://arikonsflow.com
Author:     Arikonsflow
Version:    1.0.0
Description: Elegantes Restaurant-Theme für Aphrodite – verbunden mit dem Aphrodite Manager Plugin.
License:    GPL-2.0+
*/

/* =========================================================
   BASIS
   ========================================================= */

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

:root {
    --bg:        #0d0d0d;
    --bg-alt:    #111111;
    --bg-card:   #1a1a1a;
    --gold:      #c9a96e;
    --gold-h:    #e0c08a;
    --text:      #f0ede8;
    --muted:     #888888;
    --border:    #252525;
    --max:       1100px;
}

html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.75;
}

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

.container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 24px;
}

section { padding: 90px 0; }

.section-label {
    text-align: center;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    text-align: center;
    color: var(--text);
    margin-bottom: 16px;
}

.section-divider {
    width: 50px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 3rem;
}

/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
    display: inline-block;
    padding: 14px 36px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.25s;
    cursor: pointer;
    border: none;
}

.btn-gold   { background: var(--gold); color: #0d0d0d; }
.btn-gold:hover { background: var(--gold-h); }

.btn-outline { border: 1px solid var(--gold); color: var(--gold); background: transparent; margin-left: 12px; }
.btn-outline:hover { background: var(--gold); color: #0d0d0d; }

/* =========================================================
   NAVIGATION
   ========================================================= */

.aph-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 999;
    background: rgba(13,13,13,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.aph-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 24px;
}

.aph-nav__logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 0.05em;
}

.aph-nav__links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.aph-nav__links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.2s;
}

.aph-nav__links a:hover { color: var(--gold); }

.aph-nav__tel {
    font-size: 0.85rem;
    color: var(--text);
    text-decoration: none;
    transition: color 0.2s;
}
.aph-nav__tel:hover { color: var(--gold); }

.aph-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}
.aph-hamburger span { display: block; width: 22px; height: 2px; background: var(--text); transition: all 0.3s; }

/* =========================================================
   HERO
   ========================================================= */

#hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-color: #1a1a1a;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.65) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 0 24px;
    max-width: 800px;
}

.hero-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.5rem, 9vw, 7rem);
    color: #ffffff;
    line-height: 1.05;
    margin-bottom: 20px;
}

.hero-slogan {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255,255,255,0.75);
    margin-bottom: 40px;
    font-style: italic;
    font-family: 'Playfair Display', serif;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* =========================================================
   ÜBER UNS
   ========================================================= */

#ueber-uns { background: var(--bg-alt); }

.about-text {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.9;
}

/* =========================================================
   SPEISEKARTE
   ========================================================= */

#speisekarte { background: var(--bg); }

.menu-kategorien {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 48px;
}

.menu-kat__title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--gold);
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 20px;
}

.menu-gericht {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    gap: 16px;
}

.menu-gericht:last-child { border-bottom: none; }

.menu-gericht__name {
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
    font-size: 0.95rem;
}

.menu-gericht__beschreibung {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.5;
}

.menu-gericht__preis {
    color: var(--gold);
    font-weight: 600;
    white-space: nowrap;
    font-size: 0.95rem;
}

/* =========================================================
   ÖFFNUNGSZEITEN
   ========================================================= */

#oeffnungszeiten { background: var(--bg-alt); }

.hours-wrap {
    max-width: 480px;
    margin: 0 auto;
    border: 1px solid var(--border);
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 14px 24px;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
}

.hours-row:last-child { border-bottom: none; }

.hours-tag { color: var(--muted); }

.hours-zeit { color: var(--text); }
.hours-zeit.geschlossen { color: var(--muted); font-style: italic; }

/* =========================================================
   GALERIE
   ========================================================= */

#galerie { background: var(--bg); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin-top: 3rem;
}

.gallery-item {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--bg-card);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.06); }

/* =========================================================
   KONTAKT
   ========================================================= */

#kontakt { background: var(--bg-alt); }

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 3rem;
    text-align: center;
}

.contact-item__icon { font-size: 1.8rem; margin-bottom: 12px; }

.contact-item__label {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.contact-item__value {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.6;
}

.contact-item__value a { text-decoration: none; transition: color 0.2s; }
.contact-item__value a:hover { color: var(--gold); }

address { font-style: normal; }

/* =========================================================
   SOCIAL
   ========================================================= */

.social-strip {
    display: flex;
    justify-content: center;
    gap: 32px;
    padding: 48px 0 0;
}

.social-strip a {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
}

.social-strip a:hover { color: var(--gold); }

/* =========================================================
   FOOTER
   ========================================================= */

footer {
    background: #080808;
    border-top: 1px solid var(--border);
    padding: 28px 24px;
    text-align: center;
}

footer p { font-size: 0.8rem; color: var(--muted); }

/* =========================================================
   MOBILE NAV
   ========================================================= */

@media (max-width: 768px) {
    .aph-nav__links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 72px; left: 0; right: 0;
        background: #0d0d0d;
        padding: 24px;
        border-bottom: 1px solid var(--border);
        gap: 1.25rem;
    }
    .aph-nav__links.is-open { display: flex; }
    .aph-nav__tel { display: none; }
    .aph-hamburger { display: flex; }

    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; gap: 32px; }
    .menu-kategorien { grid-template-columns: 1fr; }
    .btn-outline { margin-left: 0; }
}
