/* --- 1. SCHRIFTARTEN --- */
@font-face {
    font-family: 'Montserrat Arabic';
    src: url('font/Montserrat-Arabic Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Anton';
    src: url('font/anton.ttf') format('truetype');
}

/* --- 2. FARB-VARIABLEN --- */
:root {
    --brand-orange: #ff8c00; 
    --bg-black: #000000;
    --card-grey: #1a1a1a; 
    --text-white: #ffffff;
    --text-gray: #b3b3b3;
}

/* --- 3. GRUNDSTIL --- */
* { box-sizing: border-box; margin: 0; padding: 0; }

html { 
    scroll-behavior: smooth; 
    /* Fix: Verhindert, dass der Header beim Scrollen die Überschrift verdeckt */
    scroll-padding-top: 100px; 
}

body { 
    font-family: 'Montserrat Arabic', sans-serif; 
    background-color: var(--bg-black); 
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* --- 4. ANIMATIONEN --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.reveal.show { opacity: 1; transform: translateY(0); }
.info-grid .info-card:nth-child(2) { transition-delay: 0.2s; }

@keyframes heartPulse {
    0% { transform: scale(1); }
    20% { transform: scale(1.5); }
    40% { transform: scale(1.2); }
    60% { transform: scale(1.4); }
    100% { transform: scale(1); }
}

/* --- 5. NAVIGATION --- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    background: rgba(0,0,0,0.95);
    border-bottom: 2px solid #ffa533; 
    position: sticky;
    top: 0;
    z-index: 1000;
}
.logo-link { display: flex; align-items: center; gap: 15px; text-decoration: none; }
.logo-text {
    font-family: 'Montserrat Arabic', sans-serif;
    font-size: 1rem;
    color: var(--text-white);
    -webkit-text-stroke: 0.5px var(--brand-orange);
    text-transform: uppercase;
    white-space: nowrap;
}
.nav-logo { height: 60px; width: auto; display: block; }
.nav-links { display: flex; list-style: none; align-items: center; }
.nav-links a { 
    color: white; 
    text-decoration: none; 
    margin-left: 20px; 
    font-weight: 500; 
    transition: 0.3s; 
}
.nav-links a:hover { color: var(--brand-orange); }

.nav-social-wrapper { display: flex; align-items: center; }
.nav-social-icon {
    font-size: 1.4rem;
    margin-left: 15px !important;
    color: white;
    transition: 0.3s;
}
.nav-social-icon:hover { color: var(--brand-orange); }

.halal-icon {
    height: 40px;
    width: auto;
    margin-left: 10px;
    display: inline-block;
    vertical-align: middle;
}

/* Burger Button */
.menu-btn {
    display: none; 
    position: relative;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
}
.menu-btn__burger, .menu-btn__burger::before, .menu-btn__burger::after {
    width: 30px; 
    height: 3px;
    background: var(--brand-orange);
    border-radius: 5px;
    transition: all .3s ease-in-out;
}
.menu-btn__burger::before { content: ''; position: absolute; transform: translateY(-10px); }
.menu-btn__burger::after { content: ''; position: absolute; transform: translateY(10px); }
.menu-btn.open .menu-btn__burger { transform: translateX(-50px); background: transparent; }
.menu-btn.open .menu-btn__burger::before { transform: rotate(45deg) translate(35px, -35px); }
.menu-btn.open .menu-btn__burger::after { transform: rotate(-45deg) translate(35px, 35px); }

/* --- 6. HERO SECTION --- */
.hero {
    min-height: 80vh; 
    padding: 40px 0;  
    background: transparent;
    display: flex; 
    justify-content: center; 
    align-items: center; 
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    width: 100%; 
}

/* Neue SEO Überschrift */
.seo-title {
    font-family: 'Montserrat Arabic', sans-serif;
    font-weight: 200; /* Sehr dünn */
    font-size: 0.9rem; /* Etwas kleiner für den edlen Look */
    color: var(--text-gray); /* Dezentes Grau statt knalliges Orange */
    text-transform: uppercase;
    letter-spacing: 5px; /* Weite Abstände für Eleganz */
    margin-bottom: 20px;
    opacity: 0.8;
}

.hero-logo-large { 
    max-width: 550px; 
    width: 90%; 
    height: auto; 
    margin-bottom: -15px; 
}

.hero-title { 
    font-family: 'Anton', sans-serif;
    font-size: clamp(1rem, 5.5vw, 2.5rem); 
    margin-bottom: 40px; 
    color: var(--text-white);
    letter-spacing: 2px;
    white-space: nowrap;
    position: relative; 
    display: inline-block; 
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -20px;     
    left: 50%;         
    transform: translateX(-50%); 
    width: 100vw;      
    height: 2px;       
    background: #ffa533; 
    opacity: 0.8;      
}

.hero-sub-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
}

.heart-icon { 
    color: #ff0000; 
    font-size: 1.2em; 
    vertical-align: middle; 
    margin: 0 8px;
    animation: heartPulse 1.8s ease-in-out infinite; 
    display: inline-block;
}

/* --- 7. SEKTIONEN & KARTEN --- */
section { padding: 35px 0; text-align: center; }
h2, h3 { 
    font-family: 'Montserrat Arabic', sans-serif; 
    font-size: 2.5rem; 
    margin-bottom: 20px; 
    color: white; 
    -webkit-text-stroke: 1px var(--brand-orange); 
    text-transform: uppercase; 
}

.about-card, .info-card {
    background: var(--card-grey);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid #252525;
    transition: 0.4s;
}
.about-card { margin-bottom: 15px; }
.about-card:hover, .info-card:hover {
    border-color: var(--brand-orange);
    box-shadow: 0 10px 35px rgba(255, 140, 0, 0.15);
}
.about-card p { max-width: 900px; margin: 0 auto; font-size: 1.1rem; color: #e0e0e0; }

.image-grid { 
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 20px; margin-top: 15px; 
}
.img-box { background: #222; height: 250px; border: 1px solid #333; border-radius: 10px; overflow: hidden; }
.img-box img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.img-box:hover img { transform: scale(1.05); }

/* Standort Layout */
.info-grid { 
    display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); 
    gap: 40px; align-items: stretch; 
}
.info-card { 
    display: flex; flex-direction: column; justify-content: center; 
    align-items: center; text-align: center;
}
.info-card.location-card { align-items: stretch; }
.location-content {
    display: grid; grid-template-columns: 1fr 1fr; gap: 30px; 
    align-items: center; text-align: left;
}
.info-card i { font-size: 3rem; color: var(--brand-orange); margin-bottom: 20px; }
.info-card h3 { font-size: 1.8rem; -webkit-text-stroke: 0.5px var(--brand-orange); margin-bottom: 15px; }

.map-container { border-radius: 10px; overflow: hidden; border: 1px solid #333; height: 250px; }
.map-container iframe { width: 100%; height: 100%; }

/* --- 8. BUTTONS --- */
.btn-cta, .glf-button { 
    background: var(--brand-orange) !important; 
    padding: 18px 35px !important; 
    text-decoration: none !important;
    font-weight: bold !important; 
    border-radius: 5px !important; 
    display: inline-block !important; 
    transition: 0.2s ease !important; 
    border: none !important;
    cursor: pointer !important;
    font-family: 'Montserrat Arabic', sans-serif !important;
    text-transform: uppercase !important;
}
.btn-cta { color: #ffffff !important; }
.glf-button { color: #000000 !important; }
.btn-cta:hover, .glf-button:hover { 
    transform: scale(1.05) !important; 
    background-color: #ffa533 !important; 
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.4) !important;
}

.nav-links a.nav-order-link.glf-button {
    background: transparent !important;
    color: var(--brand-orange) !important;
    padding: 0 !important;
    margin-left: 20px;
    font-size: 1rem !important;
    border: none !important;
    box-shadow: none !important;
}
.nav-links a.nav-order-link.glf-button:hover { color: var(--text-white) !important; }

.btn-text { 
    color: var(--text-white); text-decoration: none; display: inline-block; 
    font-size: 1.1rem; transition: 0.3s; border-bottom: 1px solid transparent;
}
.btn-text:hover { color: var(--brand-orange); border-bottom: 1px solid var(--brand-orange); }
.btn-text i { margin-right: 8px; color: var(--brand-orange); }

/* --- 9. FOOTER --- */
footer { padding: 40px 0 30px; background: #000; border-top: 2px solid var(--brand-orange); text-align: center; }
.footer-content { display: flex; justify-content: space-between; gap: 40px; margin-bottom: 30px; }
.mail-link { color: var(--brand-orange); font-size: 1.2rem; text-decoration: none; font-weight: bold; }
.socials a { font-size: 2.5rem; color: white; margin-right: 20px; transition: 0.3s; }
.socials a:hover { color: var(--brand-orange); }
.legal { border-top: 1px solid #222; padding-top: 30px; font-size: 0.8rem; color: var(--text-gray); }
.legal a { color: var(--text-gray); text-decoration: none; margin: 0 10px; }

/* --- 10. RESPONSIVE DESIGN --- */
@media (max-width: 1024px) { 
    .menu-btn { display: flex; } 
    
    nav { 
        padding: 5px 20px; 
        border-bottom: 1px solid #ffffff; 
    }
    
    .nav-logo { height: 50px; } 
    
    .nav-links {
        display: none; 
        flex-direction: column; 
        position: absolute; 
        top: 62px; 
        left: 0; 
        width: 100%; 
        background: rgba(0,0,0,0.98); 
        padding: 30px 0; 
        border-bottom: 2px solid #ffffff; 
    }
    .nav-links.active { display: flex; } 
    .nav-links a { margin: 10px 0; font-size: 1.3rem; margin-left: 0; }
    .nav-links a.nav-order-link.glf-button { margin-left: 0 !important; font-size: 1.3rem !important; }
    
    .nav-social-wrapper { margin-top: 20px; justify-content: center; }
    .nav-social-icon { font-size: 2rem; margin: 0 15px !important; }

    .hero {
        min-height: auto; 
        padding-top: 10px; 
        padding-bottom: 30px;
    }

    .hero-logo-large { 
        max-width: 280px; 
        margin-bottom: 0px; 
    }

    .hero-title {
        font-size: 1.5rem;
        margin-top: 10px;
        margin-bottom: 25px; 
    }

    .footer-content { flex-direction: column; }
    .location-content { grid-template-columns: 1fr; text-align: center; }
    .hero-sub-links { gap: 15px; flex-direction: column; margin-top: 20px; }
}

@media (max-width: 480px) {
    h2 { font-size: 1.8rem; }
    .hero-logo-large { max-width: 220px; } 
    .hero-title { 
        white-space: normal; 
        line-height: 1.2; 
        font-size: 1.2rem;
    }
    .halal-icon { height: 25px; margin-left: 5px; }
    .logo-text { font-size: 0.5rem; }
}

/* --- ANHÄNGER ANIMATION (MAXIMALE PERFORMANCE) --- */
.trailer-animation {
    position: absolute;
    bottom: -20px; 
    /* Wir starten bei 0 und schieben ihn per translateX ins Off */
    left: 0; 
    width: 450px; 
    height: auto;
    z-index: -1; 
    pointer-events: none;
    transform-origin: bottom; 
    
    /* Hardware-Beschleunigung aktivieren */
    will-change: transform;
    transform: translate3d(110vw, 0, 0); 
    backface-visibility: hidden;
    
    /* Die Animation */
    animation: driveAcross 18s linear infinite;
}

@keyframes driveAcross {
    /* HINFART: Von rechts (110vw) nach links (-110vw) */
    0% { transform: translate3d(110vw, 0, 0) scaleX(1); }
    35% { transform: translate3d(-110vw, 0, 0) scaleX(1); }

    /* DREHUNG im Off */
    36% { transform: translate3d(-110vw, 0, 0) scaleX(-1); }
    50% { transform: translate3d(-110vw, 0, 0) scaleX(-1); }

    /* RÜCKFAHRT: Von links nach rechts */
    51% { transform: translate3d(-110vw, 0, 0) scaleX(-1); }
    85% { transform: translate3d(110vw, 0, 0) scaleX(-1); }

    /* ZURÜCK AUF START */
    86% { transform: translate3d(110vw, 0, 0) scaleX(1); }
    100% { transform: translate3d(110vw, 0, 0) scaleX(1); }
}

/* Mobil-Anpassung */
@media (max-width: 1024px) {
    .trailer-animation {
        width: 120px; /* Kleinere Größe für mobile Performance */
        bottom: -15px;
    }
}

/* Back to Top Button Styling */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #ff4500; 
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 9999; 
    display: none; 
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    /* Transition für das JS-Fading hinzugefügt */
    opacity: 0;
    transition: transform 0.3s ease, background-color 0.3s ease, opacity 0.3s ease;
}

.back-to-top.visible {
    opacity: 1;
}

.back-to-top i {
    font-size: 20px;
}

.back-to-top:hover {
    background-color: #ff8c00;
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 40px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}
/* --- 1. SCHRIFTARTEN --- */
@font-face {
    font-family: 'Montserrat Arabic';
    src: url('font/Montserrat-Arabic Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Anton';
    src: url('font/anton.ttf') format('truetype');
}

/* --- 2. FARB-VARIABLEN --- */
:root {
    --brand-orange: #ff8c00; 
    --bg-black: #000000;
    --card-grey: #1a1a1a; 
    --text-white: #ffffff;
    --text-gray: #b3b3b3;
}

/* --- 3. GRUNDSTIL --- */
* { box-sizing: border-box; margin: 0; padding: 0; }

html { 
    scroll-behavior: smooth; 
    /* Fix: Verhindert, dass der Header beim Scrollen die Überschrift verdeckt */
    scroll-padding-top: 100px; 
}

body { 
    font-family: 'Montserrat Arabic', sans-serif; 
    background-color: var(--bg-black); 
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* --- 4. ANIMATIONEN --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.reveal.show { opacity: 1; transform: translateY(0); }
.info-grid .info-card:nth-child(2) { transition-delay: 0.2s; }

@keyframes heartPulse {
    0% { transform: scale(1); }
    20% { transform: scale(1.5); }
    40% { transform: scale(1.2); }
    60% { transform: scale(1.4); }
    100% { transform: scale(1); }
}

/* --- 5. NAVIGATION --- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    background: rgba(0,0,0,0.95);
    border-bottom: 2px solid #ffa533; 
    position: sticky;
    top: 0;
    z-index: 1000;
}
.logo-link { display: flex; align-items: center; gap: 15px; text-decoration: none; }
.logo-text {
    font-family: 'Montserrat Arabic', sans-serif;
    font-size: 1rem;
    color: var(--text-white);
    -webkit-text-stroke: 0.5px var(--brand-orange);
    text-transform: uppercase;
    white-space: nowrap;
}
.nav-logo { height: 60px; width: auto; display: block; }
.nav-links { display: flex; list-style: none; align-items: center; }
.nav-links a { 
    color: white; 
    text-decoration: none; 
    margin-left: 20px; 
    font-weight: 500; 
    transition: 0.3s; 
}
.nav-links a:hover { color: var(--brand-orange); }

.nav-social-wrapper { display: flex; align-items: center; }
.nav-social-icon {
    font-size: 1.4rem;
    margin-left: 15px !important;
    color: white;
    transition: 0.3s;
}
.nav-social-icon:hover { color: var(--brand-orange); }

.halal-icon {
    height: 40px;
    width: auto;
    margin-left: 10px;
    display: inline-block;
    vertical-align: middle;
}

/* Burger Button */
.menu-btn {
    display: none; 
    position: relative;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
}
.menu-btn__burger, .menu-btn__burger::before, .menu-btn__burger::after {
    width: 30px; 
    height: 3px;
    background: var(--brand-orange);
    border-radius: 5px;
    transition: all .3s ease-in-out;
}
.menu-btn__burger::before { content: ''; position: absolute; transform: translateY(-10px); }
.menu-btn__burger::after { content: ''; position: absolute; transform: translateY(10px); }
.menu-btn.open .menu-btn__burger { transform: translateX(-50px); background: transparent; }
.menu-btn.open .menu-btn__burger::before { transform: rotate(45deg) translate(35px, -35px); }
.menu-btn.open .menu-btn__burger::after { transform: rotate(-45deg) translate(35px, 35px); }

/* --- 6. HERO SECTION --- */
.hero {
    min-height: 80vh; 
    padding: 40px 0;  
    background: transparent;
    display: flex; 
    justify-content: center; 
    align-items: center; 
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    width: 100%; 
}

/* Neue SEO Überschrift */
.seo-title {
    font-family: 'Montserrat Arabic', sans-serif;
    font-weight: 200; /* Sehr dünn */
    font-size: 0.9rem; /* Etwas kleiner für den edlen Look */
    color: var(--text-gray); /* Dezentes Grau statt knalliges Orange */
    text-transform: uppercase;
    letter-spacing: 5px; /* Weite Abstände für Eleganz */
    margin-bottom: 20px;
    opacity: 0.8;
}

.hero-logo-large { 
    max-width: 550px; 
    width: 90%; 
    height: auto; 
    margin-bottom: -15px; 
}

.hero-title { 
    font-family: 'Anton', sans-serif;
    font-size: clamp(1rem, 5.5vw, 2.5rem); 
    margin-bottom: 40px; 
    color: var(--text-white);
    letter-spacing: 2px;
    white-space: nowrap;
    position: relative; 
    display: inline-block; 
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -20px;     
    left: 50%;         
    transform: translateX(-50%); 
    width: 100vw;      
    height: 2px;       
    background: #ffa533; 
    opacity: 0.8;      
}

.hero-sub-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
}

.heart-icon { 
    color: #ff0000; 
    font-size: 1.2em; 
    vertical-align: middle; 
    margin: 0 8px;
    animation: heartPulse 1.8s ease-in-out infinite; 
    display: inline-block;
}

/* --- 7. SEKTIONEN & KARTEN --- */
section { padding: 35px 0; text-align: center; }
h2, h3 { 
    font-family: 'Montserrat Arabic', sans-serif; 
    font-size: 2.5rem; 
    margin-bottom: 20px; 
    color: white; 
    -webkit-text-stroke: 1px var(--brand-orange); 
    text-transform: uppercase; 
}

.about-card, .info-card {
    background: var(--card-grey);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid #252525;
    transition: 0.4s;
}
.about-card { margin-bottom: 15px; }
.about-card:hover, .info-card:hover {
    border-color: var(--brand-orange);
    box-shadow: 0 10px 35px rgba(255, 140, 0, 0.15);
}
.about-card p { max-width: 900px; margin: 0 auto; font-size: 1.1rem; color: #e0e0e0; }

.image-grid { 
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 20px; margin-top: 15px; 
}
.img-box { background: #222; height: 250px; border: 1px solid #333; border-radius: 10px; overflow: hidden; }
.img-box img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.img-box:hover img { transform: scale(1.05); }

/* Standort Layout */
.info-grid { 
    display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); 
    gap: 40px; align-items: stretch; 
}
.info-card { 
    display: flex; flex-direction: column; justify-content: center; 
    align-items: center; text-align: center;
}
.info-card.location-card { align-items: stretch; }
.location-content {
    display: grid; grid-template-columns: 1fr 1fr; gap: 30px; 
    align-items: center; text-align: left;
}
.info-card i { font-size: 3rem; color: var(--brand-orange); margin-bottom: 20px; }
.info-card h3 { font-size: 1.8rem; -webkit-text-stroke: 0.5px var(--brand-orange); margin-bottom: 15px; }

.map-container { border-radius: 10px; overflow: hidden; border: 1px solid #333; height: 250px; }
.map-container iframe { width: 100%; height: 100%; }

/* --- 8. BUTTONS --- */
.btn-cta, .glf-button { 
    background: var(--brand-orange) !important; 
    padding: 18px 35px !important; 
    text-decoration: none !important;
    font-weight: bold !important; 
    border-radius: 5px !important; 
    display: inline-block !important; 
    transition: 0.2s ease !important; 
    border: none !important;
    cursor: pointer !important;
    font-family: 'Montserrat Arabic', sans-serif !important;
    text-transform: uppercase !important;
}
.btn-cta { color: #ffffff !important; }
.glf-button { color: #000000 !important; }
.btn-cta:hover, .glf-button:hover { 
    transform: scale(1.05) !important; 
    background-color: #ffa533 !important; 
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.4) !important;
}

.nav-links a.nav-order-link.glf-button {
    background: transparent !important;
    color: var(--brand-orange) !important;
    padding: 0 !important;
    margin-left: 20px;
    font-size: 1rem !important;
    border: none !important;
    box-shadow: none !important;
}
.nav-links a.nav-order-link.glf-button:hover { color: var(--text-white) !important; }

.btn-text { 
    color: var(--text-white); text-decoration: none; display: inline-block; 
    font-size: 1.1rem; transition: 0.3s; border-bottom: 1px solid transparent;
}
.btn-text:hover { color: var(--brand-orange); border-bottom: 1px solid var(--brand-orange); }
.btn-text i { margin-right: 8px; color: var(--brand-orange); }

/* --- 9. FOOTER --- */
footer { padding: 40px 0 30px; background: #000; border-top: 2px solid var(--brand-orange); text-align: center; }
.footer-content { display: flex; justify-content: space-between; gap: 40px; margin-bottom: 30px; }
.mail-link { color: var(--brand-orange); font-size: 1.2rem; text-decoration: none; font-weight: bold; }
.socials a { font-size: 2.5rem; color: white; margin-right: 20px; transition: 0.3s; }
.socials a:hover { color: var(--brand-orange); }
.legal { border-top: 1px solid #222; padding-top: 30px; font-size: 0.8rem; color: var(--text-gray); }
.legal a { color: var(--text-gray); text-decoration: none; margin: 0 10px; }

/* --- 10. RESPONSIVE DESIGN --- */
@media (max-width: 1024px) { 
    .menu-btn { display: flex; } 
    
    nav { 
        padding: 5px 20px; 
        border-bottom: 1px solid #ffffff; 
    }
    
    .nav-logo { height: 50px; } 
    
    .nav-links {
        display: none; 
        flex-direction: column; 
        position: absolute; 
        top: 62px; 
        left: 0; 
        width: 100%; 
        background: rgba(0,0,0,0.98); 
        padding: 30px 0; 
        border-bottom: 2px solid #ffffff; 
    }
    .nav-links.active { display: flex; } 
    .nav-links a { margin: 10px 0; font-size: 1.3rem; margin-left: 0; }
    .nav-links a.nav-order-link.glf-button { margin-left: 0 !important; font-size: 1.3rem !important; }
    
    .nav-social-wrapper { margin-top: 20px; justify-content: center; }
    .nav-social-icon { font-size: 2rem; margin: 0 15px !important; }

    .hero {
        min-height: auto; 
        padding-top: 10px; 
        padding-bottom: 30px;
    }

    .hero-logo-large { 
        max-width: 280px; 
        margin-bottom: 0px; 
    }

    .hero-title {
        font-size: 1.5rem;
        margin-top: 10px;
        margin-bottom: 25px; 
    }

    .footer-content { flex-direction: column; }
    .location-content { grid-template-columns: 1fr; text-align: center; }
    .hero-sub-links { gap: 15px; flex-direction: column; margin-top: 20px; }
}

@media (max-width: 480px) {
    h2 { font-size: 1.8rem; }
    .hero-logo-large { max-width: 220px; } 
    .hero-title { 
        white-space: normal; 
        line-height: 1.2; 
        font-size: 1.2rem;
    }
    .halal-icon { height: 25px; margin-left: 5px; }
    .logo-text { font-size: 0.5rem; }
}

/* --- ANHÄNGER ANIMATION (MAXIMALE PERFORMANCE) --- */
.trailer-animation {
    position: absolute;
    bottom: -20px; 
    /* Wir starten bei 0 und schieben ihn per translateX ins Off */
    left: 0; 
    width: 450px; 
    height: auto;
    z-index: -1; 
    pointer-events: none;
    transform-origin: bottom; 
    
    /* Hardware-Beschleunigung aktivieren */
    will-change: transform;
    transform: translate3d(110vw, 0, 0); 
    backface-visibility: hidden;
    
    /* Die Animation */
    animation: driveAcross 18s linear infinite;
}

@keyframes driveAcross {
    /* HINFART: Von rechts (110vw) nach links (-110vw) */
    0% { transform: translate3d(110vw, 0, 0) scaleX(1); }
    35% { transform: translate3d(-110vw, 0, 0) scaleX(1); }

    /* DREHUNG im Off */
    36% { transform: translate3d(-110vw, 0, 0) scaleX(-1); }
    50% { transform: translate3d(-110vw, 0, 0) scaleX(-1); }

    /* RÜCKFAHRT: Von links nach rechts */
    51% { transform: translate3d(-110vw, 0, 0) scaleX(-1); }
    85% { transform: translate3d(110vw, 0, 0) scaleX(-1); }

    /* ZURÜCK AUF START */
    86% { transform: translate3d(110vw, 0, 0) scaleX(1); }
    100% { transform: translate3d(110vw, 0, 0) scaleX(1); }
}

/* Mobil-Anpassung */
@media (max-width: 1024px) {
    .trailer-animation {
        width: 120px; /* Kleinere Größe für mobile Performance */
        bottom: -15px;
    }
}

/* Back to Top Button Styling */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #ff4500; 
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 9999; 
    display: none; 
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    /* Transition für das JS-Fading hinzugefügt */
    opacity: 0;
    transition: transform 0.3s ease, background-color 0.3s ease, opacity 0.3s ease;
}

.back-to-top.visible {
    opacity: 1;
}

.back-to-top i {
    font-size: 20px;
}

.back-to-top:hover {
    background-color: #ff8c00;
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 40px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}
/* SEO-Card: Ultra-feine Umrandung für maximale Eleganz */
#seo-info .about-card h2 {
    font-size: 1.1rem; /* Minimal kleiner für bessere Proportionen */
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    font-weight: 800; /* Kräftig, damit die dünne Linie wirkt */
    
    /* Ultra-feiner Versatz (0.3px) mit leichter Transparenz */
    text-shadow: 
        -0.3px -0.3px 0 rgba(255, 126, 0, 0.7),  
         0.3px -0.3px 0 rgba(255, 126, 0, 0.7),
        -0.3px  0.3px 0 rgba(255, 126, 0, 0.7),
         0.3px  0.3px 0 rgba(255, 126, 0, 0.7);
}

#seo-info .about-card p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #bbb; /* Etwas dunkleres Grau, damit der Text im Hintergrund bleibt */
    max-width: 650px; /* Text liest sich in schmaleren Blöcken besser */
    margin: 0 auto;
}