/**
 * ExpertDAY Screen CSS
 * 
 * Professionelles, modernes Design mit großzügigem Whitespace.
 * Inspiriert vom Location Screen Layout-Muster.
 */

/* Page Container - Hauptcontainer mit maximaler Breite und seitlichen Abständen */
.expertday-page-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 60px;
}

/* Header Section */
.expertday-header {
    text-align: center;
    padding: 60px 0 40px 0;
}

.expertday-badge {
    display: inline-block;
    background: #000000;
    color: #FFFFFF;
    padding: 8px 20px;
    border-radius: 20px;
    font-family: var(--font-family-primary);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.expertday-page-title {
    font-family: var(--font-family-primary);
    font-size: 4rem;
    font-weight: 800;
    color: #000000;
    margin: 0 0 25px 0;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.expertday-subtitle {
    font-family: var(--font-family-primary);
    font-size: 1.3rem;
    color: #1A1A1A;
    line-height: 1.6;
    margin: 0 0 60px 0;
    font-weight: 500;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Video Card */
.expertday-video-card {
    margin: 80px 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.12),
        0 10px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.expertday-video-card:hover {
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.15),
        0 15px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.expertday-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

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

/* FAQ Section */
.expertday-faq-section {
    margin: 80px 0;
}

.expertday-section-title {
    font-family: var(--font-family-primary);
    font-size: 2.2rem;
    font-weight: 700;
    color: #000000;
    margin: 0 0 15px 0;
    text-align: center;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.expertday-section-subtitle {
    font-family: var(--font-family-primary);
    font-size: 1.25rem;
    color: #1A1A1A;
    line-height: 1.6;
    margin: 0 0 50px 0;
    text-align: center;
    font-weight: 500;
}

.expertday-faq-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.expertday-faq-item {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    padding: 40px 50px;
    border-radius: 20px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 5px 20px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.expertday-faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.expertday-faq-item:hover::before {
    left: 100%;
}

.expertday-faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.12),
        0 10px 30px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.expertday-faq-question {
    font-family: var(--font-family-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    margin: 0 0 20px 0;
    line-height: 1.4;
}

.expertday-faq-answer {
    font-family: var(--font-family-primary);
    font-size: 1.15rem;
    color: #1A1A1A;
    line-height: 1.8;
    margin: 0;
    font-weight: 500;
}

.expertday-faq-answer a {
    color: #000000;
    text-decoration: underline;
    font-weight: 600;
}

.expertday-faq-answer a:hover {
    text-decoration: none;
}

/* CTA Card */
.expertday-cta-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    padding: 70px 60px;
    border-radius: 20px;
    text-align: center;
    margin: 80px 0 100px 0;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 5px 20px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.expertday-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.expertday-cta-card:hover::before {
    left: 100%;
}

.expertday-cta-card:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.12),
        0 10px 30px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.expertday-cta-text {
    font-family: var(--font-family-primary);
    font-size: 1.4rem;
    color: #000000;
    line-height: 1.7;
    margin: 0 0 35px 0;
    font-weight: 600;
}

.expertday-cta-button {
    font-size: 1.1rem;
    padding: 18px 50px;
}

/* Responsive Design */

/* Mobile (< 576px) */
@media (max-width: 575px) {
    .expertday-page-container {
        padding: 0 20px;
    }

    .expertday-header {
        padding: 40px 0 30px 0;
    }

    .expertday-badge {
        font-size: 0.75rem;
        padding: 6px 16px;
        margin-bottom: 20px;
    }

    .expertday-page-title {
        font-size: 2.5rem;
        margin: 0 0 20px 0;
    }

    .expertday-subtitle {
        font-size: 1.05rem;
        margin: 0 0 40px 0;
    }

    .expertday-video-card {
        margin: 50px 0;
        border-radius: 16px;
    }

    .expertday-faq-section {
        margin: 50px 0;
    }

    .expertday-section-title {
        font-size: 1.6rem;
        margin-bottom: 12px;
    }

    .expertday-section-subtitle {
        font-size: 1.05rem;
        margin-bottom: 35px;
    }

    .expertday-faq-list {
        gap: 20px;
    }

    .expertday-faq-item {
        padding: 30px 25px;
        border-radius: 16px;
    }

    .expertday-faq-question {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .expertday-faq-answer {
        font-size: 1rem;
        line-height: 1.7;
    }

    .expertday-cta-card {
        padding: 40px 30px;
        margin: 50px 0 70px 0;
        border-radius: 16px;
    }

    .expertday-cta-text {
        font-size: 1.15rem;
        margin-bottom: 25px;
    }

    .expertday-cta-button {
        font-size: 1rem;
        padding: 14px 35px;
    }
}

/* Tablet (576px - 768px) */
@media (min-width: 576px) and (max-width: 767px) {
    .expertday-page-container {
        padding: 0 35px;
    }

    .expertday-header {
        padding: 50px 0 35px 0;
    }

    .expertday-page-title {
        font-size: 3rem;
        margin: 0 0 22px 0;
    }

    .expertday-subtitle {
        font-size: 1.2rem;
        margin: 0 0 50px 0;
    }

    .expertday-video-card {
        margin: 60px 0;
    }

    .expertday-faq-section {
        margin: 60px 0;
    }

    .expertday-section-title {
        font-size: 1.9rem;
    }

    .expertday-faq-item {
        padding: 35px 40px;
    }

    .expertday-faq-question {
        font-size: 1.35rem;
    }

    .expertday-cta-card {
        padding: 50px 40px;
        margin: 60px 0 80px 0;
    }

    .expertday-cta-text {
        font-size: 1.25rem;
    }
}

/* Small Desktop (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .expertday-page-container {
        max-width: 800px;
        padding: 0 50px;
    }
}

/* Medium Desktop (1024px - 1440px) */
@media (min-width: 1024px) and (max-width: 1439px) {
    .expertday-page-container {
        max-width: 900px;
    }
}

/* Large Desktop (> 1440px) */
@media (min-width: 1440px) {
    .expertday-page-container {
        max-width: 1000px;
        padding: 0 80px;
    }

    .expertday-page-title {
        font-size: 4.5rem;
        margin: 0 0 28px 0;
    }

    .expertday-subtitle {
        font-size: 1.4rem;
    }

    .expertday-video-card {
        margin: 90px 0;
    }

    .expertday-faq-section {
        margin: 90px 0;
    }

    .expertday-section-title {
        font-size: 2.4rem;
    }

    .expertday-section-subtitle {
        font-size: 1.3rem;
    }

    .expertday-faq-item {
        padding: 45px 55px;
    }

    .expertday-faq-question {
        font-size: 1.6rem;
    }

    .expertday-faq-answer {
        font-size: 1.2rem;
    }

    .expertday-cta-card {
        padding: 80px 70px;
        margin: 90px 0 110px 0;
    }

    .expertday-cta-text {
        font-size: 1.5rem;
    }
}
