/* ============================================
   HOMEPAGE
   ============================================ */

/* Hero section */
.hero-home {
    background-color: #FFD700;
    padding: 4rem 0 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-home .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 3rem;
}

.hero-home::after {
    content: '';
    display: block;
    width: 100%;
    height: 24px;
    background-color: #FFD700;
    background-image:
        linear-gradient(45deg, #000 25%, transparent 25%),
        linear-gradient(-45deg, #000 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #000 75%),
        linear-gradient(-45deg, transparent 75%, #000 75%);
    background-size: 24px 24px;
    background-position: 0 0, 0 12px, 12px -12px, -12px 0px;
    flex-shrink: 0;
}

.hero-star {
    width: 160px;
    height: auto;
    margin-bottom: 1.5rem;
    filter: brightness(1.1);
}

.hero-titles {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.hero-company {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title {
    color: var(--black);
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 0.3rem;
    font-family: 'Libre Baskerville';
}

.hero-subtitle {
    color: rgba(0, 0, 0, 0.7);
    font-size: 1.15rem;
    max-width: 900px;
    margin: 0 auto 1.5rem;
}

.hero-number {
    color: rgba(0, 0, 0, 0.7);
    font-size: 1.5rem;
    max-width: 1300px;
    margin: 0 auto 1.5rem;
}

.hero-separator {
    width: 60px;
    height: 3px;
    background-color: rgba(0, 0, 0, 0.3);
    margin: 0 auto 1.5rem;
}

.hero-tagline {
    color: rgba(0, 0, 0, 0.5);
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Services section */
.section-services {
    padding: 5rem 0;
    background-color: var(--white);
}

.service-card {
    display: block;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    height: 100%;
}

.service-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.service-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light);
    border-radius: 50%;
}

.service-icon {
    width: 55px;
    height: 55px;
    object-fit: contain;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.service-desc {
    font-size: 0.95rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
    letter-spacing: 0.5px;
    transition: color 0.2s ease;
}

.service-card:hover .service-link {
    color: var(--gray);
}

/* Sponsor section */
.section-sponsor-home {
    padding: 5rem 0;
    background-color: var(--light);
}

/* ============================================
   RESPONSIVE MOBILE
   ============================================ */

@media (max-width: 768px) {
    /* Hero */
    .hero-home {
        padding: 2.5rem 0 0;
    }

    .hero-star {
        width: 110px;
    }

    .hero-titles {
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }

    .hero-number {
        font-size: 1.05rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    /* Services */
    .section-services {
        padding: 3rem 0;
    }

    .service-card {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.3rem;
    }

    .hero-number {
        font-size: 0.95rem;
    }

    .hero-titles {
        gap: 1rem;
    }
}
