/* ============================================
   Home Page Styles
   ============================================ */

.home-page {
    min-height: calc(100vh - 60px);
}

/* Hero Section */
.home-hero {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at 50% 50%, #1a1a2e 0%, #272727 70%);
}

.home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(255, 255, 0, 0.06) 0%, transparent 65%);
    animation: pulse-glow 5s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes pulse-glow {
    from {
        opacity: 0.4;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1.05);
    }
}

.home-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
    animation: fade-in-up 0.7s ease-out both;
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Icon */
.home-hero-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.75rem;
    filter: invert(1) sepia(1) saturate(6) hue-rotate(5deg) brightness(1.1);
    animation: float 3s ease-in-out infinite alternate;
}

@keyframes float {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-8px);
    }
}

.home-hero-icon img {
    width: 100%;
    height: 100%;
}

/* Hero Title */
.home-hero-content h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, #ffffff 0%, #ffff00 55%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Subtitle */
.home-hero-content p {
    font-size: 1.2rem;
    color: #aaa;
    max-width: 520px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #ffff00, #ffd700);
    color: #111;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    box-shadow: 0 4px 24px rgba(255, 215, 0, 0.35);
}

.cta-button:hover {
    color: #111;
    transform: translateY(-4px);
    box-shadow: 0 10px 35px rgba(255, 215, 0, 0.55);
}

.cta-button i {
    color: #111;
    transition: none;
}

.cta-button:hover i {
    color: #111;
}

/* Feature Cards Section */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    padding: 4rem 2rem;
    max-width: 960px;
    margin: 0 auto;
}

.feature-card {
    background-color: #2e2e2e;
    border: 1px solid #3d3d3d;
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    text-align: center;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.45);
    border-color: rgba(255, 255, 0, 0.3);
}

.feature-card > i {
    font-size: 2.25rem;
    color: #ffd700;
    margin-bottom: 1.1rem;
}

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.6rem;
}

.feature-card p {
    font-size: 0.9rem;
    color: #999;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 630px) {
    .home-hero-content h1 {
        font-size: 2.75rem;
    }

    .home-hero-content p {
        font-size: 1rem;
    }

    .features {
        grid-template-columns: 1fr;
        padding: 2.5rem 1rem;
    }
}
