/* Homepage specific styles */

.hero.homepage {
    background-color: #eef7ff;
    /* pastellblau */
    /*transition: background-color .35s ease, box-shadow .35s ease;*/
}

.hero.homepage h1 {
    font-family: var(--primary-heading-font-h1);
}

.hero .hero-content {
    padding-top: 80px;
    padding-bottom: 40px;
}

.hero-heading {
    line-height: 1.1;
    font-weight: 700;
    background: linear-gradient(90deg, #8dcaea 0%, #07a2f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /*  margin-bottom: 32px;
    margin-top: 80px;*/
}

.hero-subtitle {
    color: var(--text);
    margin-bottom: 14px;
}

.hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 10px 0 6px 0;
}

.hero-form-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 14px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

.form-hint {
    margin-top: 8px;
    color: #555;
    font-size: 0.95rem;
}

#event-highlights-content{
    padding-left: 0;
    padding-right: 0;
}

.usp-list {
    list-style: none;
    padding: 0;
    margin: 16px auto 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.usp-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #222;
}

.usp-list i {
    color: var(--dt-orange);
}

.usp-list .fa-star {
    color: #ffb400;
}

.trust-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
    justify-content: center;
    align-items: center;
    margin-top: 16px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
    font-size: 0.95rem;
}

.trust-item i {
    color: #ffb400;
}

#how-it-works,
#why-dreamteam {
    margin-top: 8px;
}

#how-it-works .steps .step {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 24px;
    height: 100%;
    text-align: center;
}

#how-it-works .step-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    background: #f5f7fb;
    color: #2f6fed;
    font-size: 22px;
}

#how-it-works h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

#why-dreamteam .benefits-grid .benefit {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 24px;
    height: 100%;
    text-align: center;
}

#why-dreamteam .benefit i {
    font-size: 24px;
    color: #2f6fed;
    margin-bottom: 8px;
}

#why-dreamteam h3 {
    font-size: 1.05rem;
    margin: 8px 0;
}

#seo-text p {
    max-width: 900px;
    margin: 0 auto 12px;
    color: #333;
}

#faq .accordion-item {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #eaeaea;
}

#faq .accordion-button {
    font-weight: 500;
}

#faq .accordion-button:focus {
    box-shadow: none;
}

#faq .accordion-body {
    color: #333;
}

/* Categories */
#categories .categories-grid .category-card {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 16px 18px;
    text-decoration: none;
    color: #111;
    transition: box-shadow .2s ease, transform .2s ease;
}

#categories .categories-grid .category-card i {
    color: #2f6fed;
    font-size: 20px;
}

#categories .categories-grid .category-card:hover {
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    transform: translateY(-1px);
}

.home-season-block {
    padding-top: 36px;
    padding-bottom: 36px;
}

.home-season-block-title {
    position: relative;
    text-align: left;
    margin-bottom: 16px;
}

.xmas-img {
    width: 100%;
}

@media (max-width: 768px) {
    .hero-cta {
        gap: 10px;
    }

    .usp-list {
        justify-content: flex-start;
        margin-bottom: 12px;
    }

    .trust-bar {
        justify-content: flex-start;
    }

    .hero-title,
    .hero-subtitle {
        text-align: left;
        margin-left: 0;
        margin-right: 0;
    }
}