/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    height: 100%;
    width: 100%;
    color: #1a1a1a;
    line-height: 1.6;
}


/* ===== SHARED UTILITIES ===== */
.dw-inner {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 80px 0;
}

.dw-eyebrow {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: goldenrod;
    width: 100%;
    letter-spacing: 0.15em;
}
.dw-eyebrow.center { text-align: center; }
.dw-eyebrow.left { text-align: left; }

.dw-section-title {
    display: block;
    font-size: 42px;
    font-weight: 700;
    margin: 20px 0;
    line-height: 1.2;
}
.dw-section-title.center { text-align: center; }
.dw-section-title.left { text-align: left; }

.dw-section-subtitle {
    display: block;
    font-size: 20px;
    color: #666;
    margin: 15px 0;
    line-height: 1.5;
}
.dw-section-subtitle.center { text-align: center; max-width: 700px; margin-left: auto; margin-right: auto; }

.dw-section-text {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    margin: 20px 0;
}

.dw-gold { color: goldenrod; }

.dw-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 2px solid goldenrod;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dw-btn-primary {
    background-color: goldenrod;
    color: white;
}
.dw-btn-primary:hover {
    background-color: #B8941E;
    border-color: #B8941E;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(218, 165, 32, 0.3);
}

.dw-btn-secondary {
    border-color: goldenrod;
    color: #1a1a1a;
    background: transparent;
}
.dw-btn-secondary:hover {
    background-color: goldenrod;
    color: white;
    transform: translateY(-2px);
}

.dw-btn-full {
    width: 100%;
    text-align: center;
}

.dw-btn svg {
    transition: transform 0.3s ease;
}
.dw-btn:hover svg {
    transform: translateX(4px);
}


/* ===== HERO ===== */
.dw-hero {
    min-height: 100vh;
    width: 100%;
    position: relative;
    background: linear-gradient(160deg, #fff 0%, #fdfaf3 40%, rgba(218, 165, 32, 0.08) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dw-hero-inner {
    width: 90%;
    max-width: 900px;
    text-align: center;
    padding: 80px 0 120px;
}

.dw-pill {
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.15) 0%, rgba(218, 165, 32, 0.25) 100%);
    backdrop-filter: blur(10px);
    padding: 10px 24px;
    color: #1a1a1a;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(218, 165, 32, 0.2);
    border: 1px solid rgba(218, 165, 32, 0.3);
    letter-spacing: 0.1em;
}

.dw-hero-title {
    display: block;
    font-size: 90px;
    font-weight: 800;
    margin: 30px 0 0;
    line-height: 1;
    letter-spacing: -0.02em;
}

.dw-hero-year {
    display: block;
    font-size: 28px;
    font-weight: 300;
    color: goldenrod;
    letter-spacing: 0.3em;
    margin-top: 5px;
}

.dw-hero-tagline {
    font-size: 22px;
    color: #555;
    margin: 30px auto 0;
    max-width: 600px;
    line-height: 1.6;
}

.dw-hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 50px 0;
}

.dw-stat {
    text-align: center;
}

.dw-stat-number {
    display: block;
    font-size: 42px;
    font-weight: 800;
    color: goldenrod;
    line-height: 1.1;
}

.dw-stat-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #888;
    letter-spacing: 0.15em;
    margin-top: 6px;
}

.dw-hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 10px;
}

.dw-scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    letter-spacing: 0.2em;
    color: #888;
    font-weight: 600;
    animation: dw-bounce 2s infinite;
}

@keyframes dw-bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}


/* ===== SCHEDULE ===== */
.dw-schedule {
    background: #1a1a1a;
    color: white;
}

.dw-schedule .dw-eyebrow {
    color: goldenrod;
}

.dw-stream-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin: 40px 0;
    padding: 24px 40px;
    background: rgba(218, 165, 32, 0.1);
    border: 1px solid rgba(218, 165, 32, 0.2);
    border-radius: 16px;
}

.dw-stream-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: #999;
}

.dw-stream-logos {
    display: flex;
    align-items: center;
    gap: 20px;
}

.dw-stream-logo {
    font-size: 20px;
    font-weight: 700;
    color: white;
}

.dw-stream-plus {
    font-size: 18px;
    color: goldenrod;
    font-weight: 600;
}

.dw-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 20px;
}

.dw-timeline-item {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 30px;
    align-items: center;
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dw-timeline-item:last-child {
    border-bottom: none;
}

.dw-time {
    font-size: 18px;
    font-weight: 700;
    color: goldenrod;
    font-variant-numeric: tabular-nums;
}

.dw-time-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
}

.dw-time-content p {
    font-size: 16px;
    color: #aaa;
}


/* ===== VORTEILE ===== */
.dw-vorteile {
    background-color: white;
}

.dw-vorteile-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.dw-vorteil-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(218, 165, 32, 0.1);
    transition: all 0.3s ease;
}

.dw-vorteil-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
    border-color: rgba(218, 165, 32, 0.3);
}

.dw-vorteil-icon {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.1) 0%, rgba(218, 165, 32, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: goldenrod;
}

.dw-vorteil-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.dw-vorteil-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}


/* ===== PAKETE ===== */
.dw-pakete {
    background-color: rgb(248, 250, 252);
}

.dw-ganzjahres-badge {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin: 40px auto;
    max-width: 750px;
    padding: 24px 30px;
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.08) 0%, rgba(218, 165, 32, 0.15) 100%);
    border: 1px solid rgba(218, 165, 32, 0.25);
    border-radius: 16px;
}

.dw-ganzjahres-badge svg {
    color: goldenrod;
    flex-shrink: 0;
    margin-top: 2px;
}

.dw-ganzjahres-badge strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: goldenrod;
    letter-spacing: 0.1em;
    margin-bottom: 6px;
}

.dw-ganzjahres-badge p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.dw-pakete-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.dw-paket-card {
    background: white;
    border-radius: 24px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
}

.dw-paket-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 4px 12px rgba(0, 0, 0, 0.05);
}

.dw-paket-featured {
    border: 2px solid goldenrod;
    box-shadow: 0 8px 30px rgba(218, 165, 32, 0.15), 0 2px 8px rgba(218, 165, 32, 0.08);
}

.dw-paket-featured:hover {
    box-shadow: 0 20px 40px rgba(218, 165, 32, 0.2), 0 4px 12px rgba(218, 165, 32, 0.1);
}

.dw-paket-top-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: goldenrod;
    color: white;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    white-space: nowrap;
}

.dw-paket-label {
    font-size: 13px;
    font-weight: 600;
    color: goldenrod;
    letter-spacing: 0.15em;
}

.dw-paket-name {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
}

.dw-paket-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
}

.dw-paket-price {
    padding: 16px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.dw-price {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: #1a1a1a;
}

.dw-price-sub {
    display: block;
    font-size: 13px;
    color: goldenrod;
    font-weight: 600;
    margin-top: 4px;
}

.dw-paket-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.dw-paket-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #444;
    line-height: 1.5;
}

.dw-paket-features li svg {
    color: goldenrod;
    flex-shrink: 0;
    margin-top: 2px;
}

.dw-paket-card .dw-btn {
    margin-top: auto;
}


/* ===== LOCATIONS ===== */
.dw-locations {
    background-color: white;
}

.dw-locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.dw-location-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(218, 165, 32, 0.1);
    transition: all 0.3s ease;
}

.dw-location-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
}

.dw-location-img {
    height: 220px;
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.1) 0%, rgba(218, 165, 32, 0.25) 100%);
}

.dw-location-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: goldenrod;
    opacity: 0.5;
}

.dw-location-content {
    padding: 30px;
}

.dw-location-time {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: goldenrod;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.dw-location-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.dw-location-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.dw-location-features {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.dw-location-features li {
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.1) 0%, rgba(218, 165, 32, 0.18) 100%);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    border: 1px solid rgba(218, 165, 32, 0.2);
}


/* ===== MEDIEN ===== */
.dw-medien {
    background-color: #1a1a1a;
    color: white;
}

.dw-medien .dw-eyebrow {
    color: goldenrod;
}

.dw-medien .dw-section-title {
    color: white;
}

.dw-medien-subtitle {
    font-size: 24px;
    font-weight: 700;
    color: goldenrod;
    margin: 50px 0 24px;
    text-align: center;
    letter-spacing: 0.05em;
}

.dw-medien-subtitle:first-of-type {
    margin-top: 40px;
}

/* Fotos 3-spaltig */
.dw-fotos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.dw-foto-item {
    text-align: center;
}

.dw-foto-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(218, 165, 32, 0.1);
    border: 1px solid rgba(218, 165, 32, 0.2);
}

.dw-foto-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.dw-foto-titel {
    font-size: 15px;
    color: #ccc;
    margin-top: 12px;
    font-weight: 500;
}

/* Videos 3-spaltig */
.dw-videos-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.dw-video-item {
    text-align: center;
}

.dw-video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    border-radius: 12px;
    overflow: hidden;
    background: rgba(218, 165, 32, 0.1);
    border: 1px solid rgba(218, 165, 32, 0.2);
}

.dw-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.dw-video-titel {
    font-size: 15px;
    color: #ccc;
    margin-top: 10px;
    font-weight: 500;
}


/* ===== KONTAKT ===== */
.dw-kontakt {
    background-color: rgb(248, 250, 252);
}

.dw-kontakt-grid {
    max-width: 600px;
    margin: 0 auto;
}

.dw-kontakt-info {
    margin-top: 30px;
}

.dw-kontakt-info h4 {
    font-size: 14px;
    font-weight: 700;
    color: goldenrod;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.dw-kontakt-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}

.dw-kontakt-item svg {
    color: goldenrod;
    flex-shrink: 0;
    margin-top: 3px;
}

.dw-kontakt-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #999;
    letter-spacing: 0.1em;
    margin-bottom: 2px;
}

.dw-kontakt-item a,
.dw-kontakt-item span {
    font-size: 16px;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
}

.dw-kontakt-item a:hover {
    color: goldenrod;
}

.dw-next-step {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-top: 30px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.06) 0%, rgba(218, 165, 32, 0.12) 100%);
    border-radius: 16px;
    border: 1px solid rgba(218, 165, 32, 0.15);
}

.dw-next-step svg {
    color: goldenrod;
    flex-shrink: 0;
    margin-top: 2px;
}

.dw-next-step strong {
    display: block;
    font-size: 12px;
    color: goldenrod;
    letter-spacing: 0.1em;
    margin-bottom: 6px;
}

.dw-next-step p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}




/* ===== FOOTER ===== */
.dw-footer {
    background-color: #1a1a1a;
    color: white;
}

.dw-footer .dw-inner {
    padding: 60px 0;
}

.dw-footer-content {
    text-align: center;
}

.dw-footer-brand {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 12px;
    margin-bottom: 10px;
}

.dw-footer-title {
    font-size: 28px;
    font-weight: 800;
}

.dw-footer-year {
    font-size: 16px;
    font-weight: 300;
    color: goldenrod;
    letter-spacing: 0.2em;
}

.dw-footer-text {
    font-size: 16px;
    color: #888;
    margin-bottom: 30px;
}

.dw-footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.dw-footer-links a {
    font-size: 15px;
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.dw-footer-links a:hover {
    color: goldenrod;
}

.dw-copyright {
    display: block;
    font-size: 14px;
    color: #555;
}


/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .dw-pakete-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .dw-inner {
        padding: 60px 0;
    }

    .dw-hero-title {
        font-size: 64px;
    }

    .dw-hero-tagline {
        font-size: 19px;
    }

    .dw-hero-stats {
        gap: 40px;
    }

    .dw-stat-number {
        font-size: 34px;
    }

    .dw-section-title {
        font-size: 32px;
    }

    .dw-section-subtitle {
        font-size: 18px;
    }

    .dw-vorteile-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .dw-pakete-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .dw-locations-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }


    .dw-fotos-grid {
        gap: 16px;
    }

    .dw-videos-list {
        gap: 16px;
    }

    .dw-timeline-item {
        grid-template-columns: 140px 1fr;
        gap: 20px;
    }

    .dw-stream-bar {
        flex-direction: column;
        gap: 14px;
        padding: 20px;
    }
}

@media (max-width: 600px) {
    .dw-inner {
        padding: 50px 0;
    }

    .dw-hero-inner {
        padding: 60px 0 100px;
    }

    .dw-hero-title {
        font-size: 48px;
    }

    .dw-hero-year {
        font-size: 22px;
    }

    .dw-hero-tagline {
        font-size: 17px;
    }

    .dw-hero-stats {
        flex-direction: column;
        gap: 24px;
    }

    .dw-hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .dw-hero-buttons .dw-btn {
        width: 100%;
    }

    .dw-section-title {
        font-size: 28px;
    }

    .dw-timeline-item {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .dw-time {
        font-size: 16px;
    }

    .dw-time-content h3 {
        font-size: 18px;
    }

    .dw-paket-card {
        padding: 28px;
    }

    .dw-price {
        font-size: 24px;
    }


    .dw-location-img {
        height: 160px;
    }

    .dw-vorteil-card {
        padding: 30px;
    }

    .dw-vorteil-card h3 {
        font-size: 20px;
    }

    .dw-ganzjahres-badge {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .dw-fotos-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .dw-videos-list {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .dw-medien-subtitle {
        font-size: 20px;
    }
}
