/* Reset und Basis-Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Grundlegende Typografie */
body {
    font-family: Arial, sans-serif;
    background: #000;
    color: #F0F0F0;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typografie-System */
h1, h2, h3, 
.hero-title, .product-title, .section-title, 
.feature-title, .social-title, .newsletter-title, 
.about-title, .location-title, .footer-section h3 {
    font-family: 'EmilienFont-Bold', Arial, sans-serif;
    color: #FFFFFF;
    text-transform: uppercase;
    animation: pulseGlow 4s infinite alternate ease-in-out;
    /* margin-bottom: 1.5rem; */ /* Wird unten spezifischer gesetzt */
}

@keyframes pulseGlow {
    from {
        text-shadow: 0 0 18px rgba(255, 255, 255, 0.23);
    }
    to {
        text-shadow: 0 0 18px rgba(255, 255, 255, 0.56);
    }
}

/* Abstand für Haupt-Sektionsüberschriften vereinheitlichen */
.product-title,
.section-title, /* Betrifft h2-Elemente mit dieser Klasse */
.newsletter-title,
.about-title,
.social-title {
    margin-bottom: 1.5rem;
}

/* Schriftgröße für Haupt-Sektionsüberschriften erhöhen */
h2.section-title,
.feature-section .feature-text h2,
.social-title,
.newsletter-title,
.about-title {
    font-size: 2.5rem; /* 25% größer, ausgehend von einer Basis von 2rem */
    /* text-align: center; wird unten genauer gesetzt */
}

/* Standard-Zentrierung für section-title (mobil) */
h2.section-title {
    text-align: center;
}

/* Spezifische Anpassung für social-title zur Zentrierung */
.social-title {
    text-align: center;
}

/* Alle anderen Texte mit Arial */
p, a, button, input, 
.nav-links a, 
.footer-section p, 
.footer-section a,
.hero-subtitle,
.product-description,
.feature-content p,
.about-text,
.newsletter p {
    font-family: Arial, sans-serif;
}

/* Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #000;
    color: #fff;
    padding: 8px;
    text-decoration: none;
    z-index: 10001;
    /* border-radius: 4px; */ /* Entfernt für eckiges Design */
}

.skip-link:focus {
    top: 6px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid #333;
}

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

.logo img {
    height: 60px;
    animation: pulseLogoGlow 4s infinite alternate ease-in-out;
}

@keyframes pulseLogoGlow {
    from {
        filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.23));
    }
    to {
        filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
    }
}

.nav-links {
    display: none;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: #ccc;
    text-shadow: 0 0 18px rgba(255, 255, 255, 0.65);
}

/* Age Verification */
#ageVerification {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(15px);
}

.age-popup {
    text-align: center;
    max-width: 90%;
    padding: 2rem;
}

.age-logo img {
    height: 80px;
    margin-bottom: 2rem;
}

.age-popup h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.age-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.age-btn {
    background: white;
    color: black;
    border: none;
    padding: 15px 25px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.age-btn:hover {
    background: #ccc;
    transform: translateY(-2px);
}

.age-btn.secondary {
    background: #666;
    color: white;
}

.age-btn.secondary:hover {
    background: #555;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../Bilder/udo-spallek-hero1.jpg');
    background-size: cover;
    background-position: right center;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
}

.hero-badge {
    display: inline-block;
    background: #fff;
    color: #000;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    font-style: italic;
}

.hero-title {
    font-family: 'EmilienFont-Bold', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    margin-bottom: 1rem;
    letter-spacing: 2px;
    color: #FFFFFF;
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: #FFFFFF;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.no-wrap-hero {
    white-space: nowrap;
}

/* Buttons */
.btn {
    display: inline-block;
    background: #fff;
    color: #000;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

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

/* Product Section */
.product {
    padding: 4rem 0;
    background: #000;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.product-image img {
    max-width: 100%;
    height: auto;
    max-height: 1500px;
}

.product-info {
    text-align: center;
}

.product-badge {
    background: #fff;
    color: #000;
    padding: 0.3rem 0.8rem;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
    display: inline-block;
}

.product-title {
    font-size: clamp(2.5rem, 6.25vw, 3.75rem);
    margin-bottom: 1.5rem;
}

.product-description {
    font-size: 1.2rem;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.product-specs {
    color: #E0E0E0;
    margin-bottom: 2rem;
}

.product-awards {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    align-items: center;
}

.product-awards img,
.product-awards a img {
    height: 54px;
    vertical-align: middle;
}

/* Spezifische Größe für das Vegan-Logo */
.product-awards img[src*="emilienbier-vegan.png"] {
    height: 44px;
    position: relative;
    top: 2px;
}

/* Features */
.features {
    padding: 4rem 0;
    background: #0A0C10;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: #000;
    border: 1px solid #333;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
}

.feature-image {
    aspect-ratio: 1;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #000;
}

.feature-content {
    padding: 1.5rem;
}

.feature-title {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.feature-content p {
    color: #FFFFFF;
    font-size: 1rem;
    line-height: 1.6;
}

/* Locations */
.locations {
    padding: 4rem 0;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../Bilder/map.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.location-card {
    background: rgba(10, 12, 16, 0.95);
    border: 1px solid #333;
    padding: 1.5rem;
    position: relative;
    transition: transform 0.3s ease;
}

.location-card:hover {
    transform: translateY(-4px);
}

.location-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #d32f2f;
    color: #fff;
    padding: 0.3rem 0.6rem;
    font-size: 0.7rem;
    font-weight: bold;
    text-transform: uppercase;
    /* border-radius: 3px; */ /* Entfernt für eckiges Design */
}

.location-title {
    color: #FFFFFF;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.location-card p {
    color: #E0E0E0;
    font-size: 1rem;
}

/* Newsletter */
.newsletter {
    background: #FFFFFF;
    color: #000;
    padding: 4rem 0;
    text-align: center;
}

.newsletter-image {
    max-width: 62.5%; /* 50% * 1.25 = 62.5% für mobile Ansicht */
    height: auto;
    margin-bottom: 2rem;
    display: block; /* Für Zentrierung mit margin auto */
    margin-left: auto;
    margin-right: auto;
}

.newsletter-title {
    color: #000;
    margin-bottom: 1rem;
    font-family: 'EmilienFont-Bold', Arial, sans-serif;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 2rem auto 0;
    gap: 0;
    flex-direction: column;
}

.newsletter-input {
    flex: 1;
    padding: 1rem;
    border: 2px solid #000;
    background: transparent;
    color: #000;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.newsletter-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: #333;
    transform: translateY(-2px);
}

/* About */
.about {
    background: #0A0C10;
    padding: 4rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    text-align: center;
}

.about-title {
    margin-bottom: 2rem;
}

.about-text {
    color: #FFFFFF;
    margin-bottom: 1.5rem;
}

.about-image img {
    max-width: 100%;
    height: auto;
    max-height: 400px;
}

/* Footer */
footer {
    background: #000;
    padding: 3rem 0 1rem;
    border-top: 1px solid #333;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
}

.footer-section a {
    color: #E0E0E0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #fff;
}

.social-buttons-footer {
    display: flex;
    gap: 1rem; /* Abstand zwischen den Buttons */
    align-items: center; /* Vertikale Ausrichtung, falls Buttons unterschiedlich hoch sind */
}

.social-buttons-footer img {
    height: 32px; /* Zurück zur vorherigen Größe */
    transition: opacity 0.3s ease;
}

.social-buttons-footer a:hover img {
    opacity: 0.8; /* Leichter Hover-Effekt */
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #A0A0A0;
}

/* Mobile Menu */
.menu-toggle {
    display: block;
    background: none;
    border: 2px solid #fff;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 8px 12px;
    /* border-radius: 4px; */ /* Entfernt für eckiges Design */
    transition: all 0.3s ease;
}

.menu-toggle:focus,
.menu-toggle:hover {
    background: #fff;
    color: #000;
    outline: none;
}

/* Responsive Design */
@media (min-width: 768px) {
    .nav-links {
        display: flex !important;
        position: static;
        background: none;
        padding: 0;
        flex-direction: row;
        border: none;
        z-index: auto;
    }

    .logo img {
        height: 75px;
    }

    h2.section-title {
        text-align: left; /* Linksbündig auf Desktop */
    }

    .nav-links a {
        padding: 10px 15px !important;
        border-bottom: none !important;
        text-align: left !important;
    }

    .menu-toggle {
        display: none;
    }

    .product-grid {
        grid-template-columns: 1fr 1fr;
    }

    .product-info {
        text-align: left;
    }

    .product-awards {
        justify-content: flex-start; /* Linksbündig auf Desktop */
    }

    .newsletter-form {
        flex-direction: row;
    }

    .newsletter-input {
        margin-bottom: 0;
    }

    .about-grid {
        grid-template-columns: 2fr 1fr;
        text-align: left;
    }
    
    .newsletter-image { /* Zurück zur ursprünglichen Größe auf Desktop */
        max-width: 50%;
    }

    .feature-section .feature-content {
        grid-template-columns: 1fr 1fr; /* Nebeneinander auf Tablets und Desktops */
        text-align: left; /* Text linksbündig auf größeren Screens */
        align-items: stretch; /* Geändert von center zu stretch */
    }

    /* Optional: Reihenfolge tauschen für jede zweite Sektion dieser Art (falls gewünscht) */
    /* .feature-section:nth-child(even) .feature-content {
        grid-template-columns: 1fr 1fr;
    }
    .feature-section:nth-child(even) .feature-content .feature-image {
        order: -1; 
    } */

    .mobile-only-break { /* Korrekte Platzierung dieser Regel */
        display: none; /* Umbrüche auf Desktop ausblenden */
    }
}

/* Klasse für Zeilenumbrüche, die nur auf Mobilgeräten sichtbar sind - kann leer bleiben oder entfernt werden*/
/* .mobile-only-break {} */

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Social Media */
.social {
    padding: 4rem 0; /* Geändert von 6rem 0 4rem */
    background: #0A0C10;
}

/* Location Text Animation */
.location-swap {
    display: inline-block;
    perspective: 400px;
    line-height: 1.2;
    width: 7.5ch;
    text-align: center;
    overflow: hidden;
    vertical-align: middle;
}

.location-text {
    animation: locationSwap 4s infinite;
    display: inline-block;
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

/* Spezifische Anpassung für den Hero-Bereich, um den Text etwas anzuheben */
.hero-subtitle .location-swap {
    position: relative;
    top: -1px; /* Kleine Anpassung nach oben, ggf. anpassen */
}

/* Spezifische Anpassung für den Footer, um den Text etwas anzuheben */
.footer-bottom p .location-swap {
    position: relative;
    top: -1px; /* Korrigiert von -2px, um es etwas tiefer zu setzen */
}

@keyframes locationSwap {
    0% {
        transform: rotateX(0deg);
        opacity: 1;
    }
    40% {
        transform: rotateX(0deg);
        opacity: 1;
    }
    50% {
        transform: rotateX(90deg);
        opacity: 0;
    }
    60% {
        transform: rotateX(-90deg);
        opacity: 0;
    }
    100% {
        transform: rotateX(0deg);
        opacity: 1;
    }
}

/* Mobile Menu Fix */
.nav-links.mobile-active {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.98);
    padding: 2rem 1rem;
    flex-direction: column;
    border-top: 1px solid #333;
    z-index: 1001;
}

.nav-links.mobile-active a {
    padding: 1rem 0;
    border-bottom: 1px solid #333;
    text-align: center;
    display: block;
    width: 100%;
}

.nav-links.mobile-active a:last-child {
    border-bottom: none;
}

/* Styling für die neue Handwerk Sektion (feature-section) */
.feature-section {
    padding: 4rem 0; /* Standard Sektions-Padding */
    background: #0A0C10; /* Standard Sektions-Hintergrund, falls Bild nicht lädt oder Lücken hat */
    /* Entferne direkten Bildhintergrund, text-align, position, color von hier */
}

.handwerk-image-background {
    background: url('../Bilder/udo-spallek-hero2.jpg') no-repeat center center;
    background-size: cover;
    padding: 6rem 2rem; /* Innerer Abstand für den Text zum Bildrand, anpassbar */
    text-align: center;
    position: relative;
    color: #fff; /* Textfarbe für Inhalt auf diesem Hintergrund */
    /* Hier könnte man auch einen border-radius setzen, falls gewünscht */
}

/* Optional: Dunkles Overlay für bessere Textlesbarkeit, jetzt auf .handwerk-image-background */
.handwerk-image-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* Halbtransparentes Schwarz */
    z-index: 1;
    /* Falls border-radius für .handwerk-image-background gesetzt wird, hier auch */
}

.feature-content-overlay { /* Wrapper für den Inhalt über dem Overlay */
    position: relative;
    z-index: 2;
    max-width: 850px; 
    margin: 0 auto; 
}

.feature-section .feature-text h2 {
    margin-bottom: 1.5rem; 
    color: #FFFFFF; 
}

.feature-section .feature-text p {
    color: #F0F0F0; 
    margin-bottom: 1rem;
    line-height: 1.6; 
}

.feature-section .feature-text .btn {
    margin-top: 1.5rem; 
}

/* Aufräumen: Alte .feature-section::before Regel, falls noch vorhanden */
/* .feature-section::before { ... } */

@media (min-width: 768px) {
    /* Entferne alte Desktop-Anpassungen für .feature-section .feature-content, falls noch vorhanden */
    /* .feature-section .feature-content { ... } */

    .mobile-only-break {
        display: none; /* Umbrüche auf Desktop ausblenden */
    }
}

/* Klasse für Zeilenumbrüche, die nur auf Mobilgeräten sichtbar sind */
/* .mobile-only-break {} */ /* Außerhalb des Media Query nicht zwingend nötig */

/* Spezifische Stile für Textseiten (Datenschutz, Impressum, AGB) */
.legal-text-content {
    line-height: 1.8; /* Erhöhte Zeilenhöhe für bessere Lesbarkeit */
}

.legal-text-content h1 {
    font-size: 2.8rem; /* Etwas größer für den Haupttitel der Seite */
    margin-top: 2rem; /* Zusätzlicher Abstand über der Hauptüberschrift */
    margin-bottom: 1.5rem; /* Reduzierter Abstand unter der Hauptüberschrift */
    text-align: center; /* Titel zentrieren */
}

.legal-page-subtitle {
    text-align: center;
    font-size: 1.1rem; /* Etwas kleinere Schriftgröße als normaler Absatz */
    color: #B0B0B0; /* Leicht abgedunkelte Farbe für den Untertitel */
    margin-bottom: 3rem; /* Größerer Abstand zum ersten Hauptabschnitt */
}

.legal-text-content h2 {
    font-size: 2rem;
    margin-top: 3rem; /* Mehr Abstand nach oben zur vorherigen Sektion */
    margin-bottom: 1.5rem;
}

.legal-text-content h3 {
    font-size: 1.5rem;
    margin-top: 2.2rem; /* Leicht reduzierter Abstand nach oben */
    margin-bottom: 1rem;
}

.legal-text-content h4 {
    font-size: 1.2rem;
    margin-top: 1.8rem; /* Leicht reduzierter Abstand nach oben */
    margin-bottom: 0.8rem;
}

.legal-text-content p {
    margin-bottom: 1.2rem; /* Größerer Abstand zwischen Absätzen */
    font-size: 1rem; /* Konsistente Absatzschriftgröße */
}

/* Spezifisches Link-Styling für den Fließtext auf legal-Seiten */
.legal-text-content p a {
    color: inherit; /* Linkfarbe wie der umgebende Text */
    text-decoration: underline; /* Standardmäßig unterstrichen für bessere Erkennbarkeit */
    transition: color 0.3s ease;
}

.legal-text-content p a:hover {
    color: #FFFFFF; /* Heller beim Hover für besseres Feedback */
    text-decoration: underline; /* Unterstreichung beibehalten oder explizit setzen */
}

.legal-text-content ul,
.legal-text-content ol {
    margin-bottom: 1.2rem;
    margin-left: 1.5rem;
}

.legal-text-content li {
    margin-bottom: 0.6rem;
}

.legal-text-content table {
    width: 100%;
    margin-bottom: 2rem;
    border-collapse: collapse;
}

.legal-text-content th,
.legal-text-content td {
    border: 1px solid #333; /* Rahmen für Tabellenzellen */
    padding: 0.8rem 1rem;
    text-align: left;
}

.legal-text-content th {
    background-color: #1a1a1a; /* Dunklerer Hintergrund für Tabellenköpfe */
} 