/**
 * Modern Hero Section Styles
 * Attention-Grabbing, Hook-ing Design
 */

/* Hero Title */
.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--bs-gray-900);
    margin-bottom: 1.5rem;
}

[data-bs-theme="dark"] .hero-title {
    color: #fff;
}

/* Gradient Highlight Text */
.hero-highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

/* Hero Background Gradient */
.hero-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(102, 126, 234, 0.15), transparent),
        radial-gradient(ellipse 60% 40% at 100% 50%, rgba(118, 75, 162, 0.1), transparent);
    z-index: 0;
}

[data-bs-theme="dark"] .hero-gradient-bg {
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(102, 126, 234, 0.25), transparent),
        radial-gradient(ellipse 60% 40% at 100% 50%, rgba(118, 75, 162, 0.2), transparent);
}

/* Fade In Animation */
@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-fade-in {
    opacity: 0;
    animation: heroFadeIn 0.8s ease forwards;
}

/* Hero Visual - Floating Cards */
.hero-visual {
    position: relative;
    height: 450px;
}

.hero-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

[data-bs-theme="dark"] .hero-card {
    background: rgba(30, 30, 46, 0.9);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

/* Card Positions */
.hero-card-1 {
    top: 10%;
    left: 10%;
    animation: float1 6s ease-in-out infinite;
}

.hero-card-2 {
    top: 35%;
    right: 5%;
    animation: float2 7s ease-in-out infinite;
    animation-delay: 1s;
}

.hero-card-3 {
    bottom: 10%;
    left: 25%;
    animation: float3 5s ease-in-out infinite;
    animation-delay: 2s;
}

@keyframes float1 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes float2 {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-12px) rotate(2deg);
    }
}

@keyframes float3 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.25rem;
    }
}