/* ==========================================================================
   1. VARIABLES & RESET
   ========================================================================== */
:root {
    /* Die echten Akzentfarben der alten Website, modernisiert */
    --primary-color: #ba2d65;     /* Elegantes Magenta / Beeren-Ton */
    --primary-light: #e33e7f;     /* Helles Highlight-Pink */
    --text-color: #2b2b2b;
    --text-light: #6c757d;
    --bg-light: #fcf8fa;         /* Sehr sanfter, heller Beeren-Hintergrundton */
    --bg-white: #ffffff;
    --dark-section: #181617;     /* Dunkler Kontrastton für Header & Footer */
    
    /* Schriften */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    --max-width: 1200px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-white);
}

/* ==========================================================================
   2. REUSABLE COMPONENTS (Layout, Buttons, Titel)
   ========================================================================== */
.container {
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
}

.section-title {
    text-align: center;
    font-size: 2.6rem;
    margin-bottom: 3.5rem;
    position: relative;
    font-weight: 700;
}

.section-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 12px auto 0;
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 0.9rem 2.2rem;
    text-decoration: none;
    border-radius: 50px; /* Moderne, runde Buttons */
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(186, 45, 101, 0.2);
}

.btn:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(186, 45, 101, 0.3);
}

.bg-light {
    background-color: var(--bg-light);
}

/* ==========================================================================
   3. HEADER & NAVIGATION (Dunkles, edles Farbschema)
   ========================================================================== */
.main-header {
    background-color: var(--dark-section);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.2rem 0;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Modernes, aufgeräumtes Text-Logo */
.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--bg-white);
    letter-spacing: 1px;
}

.logo span {
    color: var(--primary-color);
}

/* Falls du später ein Bild-Logo nutzt */
.logo img {
    max-height: 50px;
    display: block;
}

.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav a {
    text-decoration: none;
    color: #e0e0e0;
    padding: 0.5rem 1.2rem;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

.main-nav a:hover {
    color: var(--primary-light);
}

/* ==========================================================================
   4. SECTIONS (Hero, Preise, Galerie)
   ========================================================================== */
section {
    padding: 6rem 0;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(24, 22, 23, 0.65), rgba(24, 22, 23, 0.45)), 
                url('../img/hero-bg.jpg') no-repeat center center/cover;
    background-color: #222; 
    color: white;
    height: 65vh;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    color: #f0f0f0;
}

/* Preisliste (Aufgeräumtes Restaurant-Menü-Style) */
.price-list-wrapper {
    max-width: 750px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
}

.price-category {
    margin-bottom: 2.5rem;
}

.price-category h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    border-bottom: 1px solid #f1e6eb;
    padding-bottom: 0.4rem;
    margin-bottom: 1.2rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1.5rem;
}

.price-name {
    font-weight: 600;
    font-size: 1.1rem;
    padding-right: 10px;
    background: var(--bg-white);
    position: relative;
    z-index: 2;
}

.price-dots {
    flex-grow: 1;
    border-bottom: 2px dotted #e1e1e1;
    position: relative;
    top: -4px;
}

.price-value {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
    padding-left: 10px;
    background: var(--bg-white);
    position: relative;
    z-index: 2;
}

.price-subtext {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: -1.2rem;
    margin-bottom: 1.5rem;
    display: block;
}

.price-notice {
    text-align: center;
    background-color: var(--bg-light);
    border: 1px dashed var(--primary-color);
    padding: 1rem;
    border-radius: 6px;
    margin-top: 2rem;
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Bildgalerie (Modernes Grid) */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 300px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

/* Reines Layout für rechtliche Seiten */
.legal-page {
    padding: 10rem 0 6rem 0;
    max-width: 800px;
}
.legal-page h1 { font-size: 3rem; margin-bottom: 2rem;}
.legal-page h2 { margin-top: 2rem; color: var(--primary-color);}


/* ==========================================================================
   5. OPTIMIERTER KONTAKT-BEREICH (Cards-Design)
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-top: 2rem;
}

.info-box {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(186, 45, 101, 0.05);
}

.info-box h2 {
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.info-box h3 {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-body);
    font-weight: 700;
}

.info-box p, .info-box a {
    font-size: 1.05rem;
    color: var(--text-color);
}

.payment-icons {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: var(--primary-color);
    background: var(--bg-light);
    padding: 1rem 1.5rem;
    border-radius: 30px;
    display: inline-block;
    font-weight: 600;
    border: 1px dashed rgba(186, 45, 101, 0.2);
}


/* ==========================================================================
   6. MODERNER, DREISpALTIGER FOOTER 
   ========================================================================== */
.main-footer {
    background-color: var(--dark-section);
    color: #b8b8b8;
    padding: 5rem 0 0 0;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 4rem;
}

.footer-column h3 {
    color: var(--bg-white);
    font-size: 1.2rem;
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-column.branding p {
    margin-top: 1rem;
    line-height: 1.7;
    max-width: 320px;
}

.footer-column.links ul {
    list-style: none;
}

.footer-column.links li {
    margin-bottom: 0.8rem;
}

.footer-column.links a {
    color: #b8b8b8;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-column.links a:hover {
    color: var(--primary-light);
    transform: translateX(4px);
}

.footer-bottom {
    background-color: #0d0c0d;
    padding: 1.8rem 0;
    text-align: center;
    font-size: 0.85rem;
    color: #666;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}


/* ==========================================================================
   7. RESPONSIVE DESIGN (Mobil-Optimierung)
   ========================================================================== */
@media (max-width: 768px) {
    .header-flex { 
        flex-direction: column; 
        gap: 1rem; 
    }
    
    .main-nav ul { 
        flex-wrap: wrap; 
        justify-content: center; 
    }
    
    .contact-grid, .footer-grid { 
        grid-template-columns: 1fr; 
        gap: 2.5rem; 
        text-align: center; 
    }
    
    .footer-column.branding p {
        max-width: 100%;
        margin: 1rem auto 0;
    }
    
    .footer-column.links a:hover {
        transform: none;
    }
    
    .hero-content h1 { 
        font-size: 2.6rem; 
    }
    
    .price-list-wrapper { 
        padding: 1.5rem; 
    }
}


/* ==========================================================================
   8. FAQ / GUT ZU WISSEN (ACCORDION DESIGN)
   ========================================================================== */
.faq-wrapper {
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(186, 45, 101, 0.08);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item[open] {
    box-shadow: 0 10px 25px rgba(186, 45, 101, 0.05);
    border-color: rgba(186, 45, 101, 0.2);
}

.faq-item summary {
    list-style: none; /* Standard-Dreieck entfernen */
    padding: 1.2rem 2rem;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    color: var(--text-color);
}

/* Eigenes, edles Plus/Minus-Icon bauen */
.faq-item summary::after {
    content: '+';
    font-family: var(--font-body);
    font-size: 1.4rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    content: '−';
    transform: rotate(180deg);
}

/* Safari-Fix für das Dreieck */
.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-content {
    padding: 0 2rem 1.5rem 2rem;
    border-top: 1px solid #fcf8fa;
}

.faq-content p {
    color: #4a4a4a;
    font-size: 1.05rem;
    line-height: 1.6;
}


/* ==========================================================================
   9. STUDIO SEKTION (WILLKOMMEN & STUDIOBILD)
   ========================================================================== */
.studio-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.studio-image-box {
    width: 100%;
}

.studio-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(186, 45, 101, 0.05);
}

/* Mobil-Anpassung für die Studio-Sektion */
@media (max-width: 768px) {
    .studio-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .studio-image-box {
        order: -1; /* Schiebt das Bild am Handy nach oben über den Text, falls gewünscht */
    }
}
