/* HERO SEKTION – Bild links, Text rechts */
.index-wrapper {
    max-width: 1200px;
    width: 100%;
    margin: 30px auto;
    padding: 25px;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    border-radius: 22px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.45);
}
.hero-side {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;

    background: #f5f5f5;
    padding: 50px 30px;
    border-radius: 12px;
    margin-bottom: 40px;
}

/* Bildbereich */
.hero-img {
    flex: 1;
    min-height: 300px;
    background-image: url('http://afterworkbiker.de/images/winter-hero2.png'); /* <-- DEIN BILD */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
}

/* Textbereich */
.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-text h1 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #1e3c72;
}

.hero-text p {
    font-size: 20px;
    margin-bottom: 25px;
    line-height: 1.5;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-btn {
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 18px;
    text-decoration: none;
    transition: 0.25s ease;
}

.hero-btn.primary {
    background: #1e3c72;
    color: #fff;
    font-weight: bold;
}

.hero-btn.primary:hover {
    background: #2a5298;
}

.hero-btn.secondary {
    border: 2px solid #1e3c72;
    color: #1e3c72;
}

.hero-btn.secondary:hover {
    background: rgba(30,60,114,0.1);
}

/* 📱 Mobile Optimierung */
@media (max-width: 1024px) {
    .hero-side {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }

    .hero-img {
        width: 100%;
        min-height: 220px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .hero-btn {
        width: 100%;
        text-align: center;
    }
}
#kaeufer, #verkaeufer, #ueber_uns {
  scroll-margin-top: 80px;
}

/* HERO PARALLAX */
.hero-parallax {
    width: 100%;
    min-height: 420px;

    background-image: url('../images/winter-hero2.png'); /* <-- DEIN BILD */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    background-attachment: fixed; /* PARALLAX */
    
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 80px 20px;
    border-radius: 12px;
    margin-bottom: 40px;

    position: relative;
}

/* Abdunklung für bessere Lesbarkeit */
.hero-parallax::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    border-radius: 12px;
}

.hero-parallax-inner {
    position: relative;
    text-align: center;
    max-width: 900px;
    color: #fff;
}

.hero-parallax-inner h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 700;
}

.hero-parallax-inner p {
    font-size: 22px;
    margin-bottom: 30px;
    line-height: 1.5;
}

/* Buttons */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.hero-btn {
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 20px;
    text-decoration: none;
    transition: 0.25s ease;
}

.hero-btn.primary {
    background: #fff;
    color: #1e3c72;
    font-weight: bold;
}

.hero-btn.primary:hover {
    background: #e6e6e6;
}

.hero-btn.secondary {
    border: 2px solid #fff;
    color: #fff;
}

.hero-btn.secondary:hover {
    background: rgba(255,255,255,0.15);
}


/* 📱 Mobile Optimierung */
@media (max-width: 1024px) {
    .hero-parallax {
        background-attachment: scroll; /* Parallax deaktiviert für mobile */
        min-height: 350px;
        padding: 60px 20px;
    }

    .hero-parallax-inner h1 {
        font-size: 34px;
    }

    .hero-parallax-inner p {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .hero-btn {
        width: 100%;
        text-align: center;
    }
}
/* INFO BOXEN */
.info-box {
background-color: #fff;
    margin: 60px 0;
    padding: 20px;
}

.info-box h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1e3c72;
    text-align: center;
}

.info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

.info-item {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    width: 320px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.info-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #2a5298;
}

.info-item p {
    font-size: 18px;
    line-height: 1.5;
}

/* 📱 Mobile */
@media (max-width: 768px) {
    .info-item {
        width: 100%;
    }
}
.info-header {
    text-align: center;
    margin: 40px 0;
}

.info-header h1 {
    font-size: 40px;
    color: #1e3c72;
    margin-bottom: 10px;
}

.info-header p {
    font-size: 20px;
    color: #333;
}

.info-box {
    margin: 60px 0;
}

.info-box h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 25px;
    color: #1e3c72;
}

.info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

.info-item {
    border-radius: 12px;
    padding: 25px;
    width: 320px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.info-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #2a5298;
}

.info-item p {
    font-size: 18px;
    line-height: 1.5;
}

.info-contact {
    text-align: center;
    margin: 60px 0;
}

.info-contact h2 {
    font-size: 28px;
    color: #1e3c72;
}
/* INFO-BANNER */
.info-banner {
    background: #fff;
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(18px) saturate(180%);
    padding: 30px 25px;
    border-radius: 12px;
    text-align: center;
    margin: 40px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.info-banner h2 {
    font-size: 28px;
    margin-bottom: 12px;
    color: #222;
}

.info-banner p {
    font-size: 20px;
    color: #333;
}

.banner-link {
    font-weight: bold;
    color: #1e3c72;
    text-decoration: none;
    transition: 0.2s ease;
}

.banner-link:hover {
    text-decoration: underline;
    color: #2a5298;
}

/* Mobile */
@media (max-width: 1024px) {
    .info-banner h2 {
        font-size: 24px;
    }
    .info-banner p {
        font-size: 18px;
    }
}
/* ---------------------------------------------------------
   📱 MOBILE – Zeiten-Tabelle einspaltig & lesbar
--------------------------------------------------------- */
@media (max-width: 768px) {

    .zeiten-table {
        width: 100%;
        font-size: 18px;
        border-collapse: collapse;
    }

    .zeiten-table tr {
        display: block;
        margin-bottom: 18px;
        padding-bottom: 10px;
        border-bottom: 1px solid #ddd;
    }

    .zeiten-table td {
        display: block;
        width: 100%;
        padding: 6px 0 !important;
    }

    .zeiten-table td strong {
        display: block;
        font-size: 18px;
        margin-bottom: 4px;
    }
}

