/* --- GRUNDLEGENDE VARIABLEN & RESET --- */
:root {
    --bg-color: #050505;          /* Tiefschwarz */
    --section-bg: #111111;        /* Sehr dunkles Grau für Sektionen */
    --text-color: #ffffff;        /* Weiß */
    --accent-red: #ffffff;        /* Edles Dunkelrot */
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

h2 {
    border-bottom: 2px solid var(--accent-red);
    display: inline-block;
    padding-bottom: 10px;
    margin-top: 40px;
}

/* --- HEADER --- */
header {
    text-align: center;
    padding: 80px 20px 60px 20px;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000000 100%);
}

.logo-container img {
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
}

.brand-name {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.slogan {
    font-style: italic;
    color: #aaa;
    font-size: 1.2rem;
}

/* --- NEUE HEADER BUTTONS --- */
.buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
    flex-wrap: wrap; /* Bricht auf Handys sauber um */
}

.btn {
    text-decoration: none;
    color: var(--text-color);
    background-color: #000000; /* Komplett Schwarz */
    border: 1px solid #333333; /* Dezenter Rahmen zur Abgrenzung */
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.btn:hover {
    border-color: var(--accent-red);
    box-shadow: 0 0 15px rgba(158, 11, 15, 0.4); /* Dunkelroter Glow */
    transform: translateY(-3px);
}

.icon {
    width: 22px;
    height: 22px;
    /* Falls du standardmäßig schwarze SVGs herunterlädst, macht dieser Filter sie weiß! 
       Wenn deine SVGs schon weiß sind, lösche diese Zeile einfach. */
    filter: invert(1); 
}

/* --- CONTAINER & SEKTIONEN --- */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

section {
    padding: 60px 0;
}

.intro-text {
    max-width: 800px;
    margin-bottom: 40px;
    color: #ccc;
}

/* --- SERVICES --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 30px;
}

.service-card {
    background-color: var(--section-bg);
    padding: 30px;
    border-left: 3px solid var(--accent-red);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(158, 11, 15, 0.2); 
}

.service-card h3 {
    color: var(--accent-red);
    font-size: 1.2rem;
}

/* --- LIKÖR SPECIAL --- */

.exclusive-badge {
    background-color: #ff0000 !important; /* Das !important hilft, andere Regeln zu überschreiben */
    color: #ffffff; /* Falls der Text auch weiß bleiben soll */
}

#liquor-section {
    background-color: #0f0f0f;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    text-align: center;
    margin-top: 40px;
}

.liquor-badge {
    background-color: #ff0000 !important; /* Das !important hilft, andere Regeln zu überschreiben */
    color: #fff;
    padding: 5px 15px;
    font-weight: bold;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.liquor-title {
    margin-top: 0;
    border-color: #444; 
}

.liquor-text {
    max-width: 700px;
    margin: 0 auto 40px auto;
    color: #ddd;
}

.liquor-gallery {
    max-width: 800px;
    margin: 0 auto;
}

/* --- GALERIE (Allgemein) --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 16/9; 
    border: 1px solid #222;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.3s;
    filter: grayscale(60%); 
}

.gallery-item:hover img {
    transform: scale(1.1); 
    filter: grayscale(0%); 
}

/* --- KONTAKT (Unten) --- */
.contact-area {
    text-align: center;
    background-color: var(--section-bg);
    padding: 60px 20px;
    border-top: 2px solid var(--accent-red);
}

.company-name {
    font-weight: bold;
    font-size: 1.5rem;
    color: var(--accent-red);
    margin-bottom: 10px;
}

.address-box {
    margin-bottom: 40px;
    font-size: 1.1rem;
    color: #ccc;
}

.opening-hours {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #888;
}

/* --- LIGHTBOX (Pop-up) --- */
.lightbox {
    display: none; 
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.95);
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    border: 2px solid var(--accent-red);
    box-shadow: 0 0 30px rgba(158, 11, 15, 0.4);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {transform: scale(0.9); opacity: 0;}
    to {transform: scale(1); opacity: 1;}
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s;
}

.close:hover {
    color: var(--accent-red);
}

/* --- FOOTER --- */
footer {
    text-align: center;
    padding: 30px;
    font-size: 0.8rem;
    color: #555;
    border-top: 1px solid #1a1a1a;
    background-color: #000;
}

/* --- MOBILE ANPASSUNGEN --- */
@media (max-width: 768px) {
    .brand-name { font-size: 2rem; }
    .services-grid { grid-template-columns: 1fr; }
    .btn { width: 100%; justify-content: center; }
}