/* ================================
   GLOBAL FONT
================================ */
* {
    font-family: 'Inter', sans-serif;
}

/* ================================
   BRAND GRADIENTS
================================ */
.bg-primary-500 {
    background: linear-gradient(
        135deg,
        #dc6390 0%,
        #a855f7 50%,
        #3b82f6 100%
    );
}

.bg-primary-400 {
    background: linear-gradient(
        135deg,
        #f472b6 0%,
        #8b5cf6 50%,
        #60a5fa 100%
    );
}

.text-primary-300 {
    background: linear-gradient(
        135deg,
        #ec4899 0%,
        #7c3aed 50%,
        #3b82f6 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-primary-400 {
    background: linear-gradient(
        135deg,
        #f472b6 0%,
        #8b5cf6 50%,
        #60a5fa 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ================================
   SECONDARY COLORS
================================ */
.bg-secondary-900 {
    background: rgba(75, 85, 99, 0.3);
}

.border-secondary-700 {
    border-color: rgba(51, 65, 85, 0.6);
}

.text-secondary-300 {
    color: rgba(148, 163, 184, 0.9);
}

.text-secondary-400 {
    color: rgba(148, 163, 184, 0.8);
}

.text-secondary-500 {
    color: rgba(148, 163, 184, 0.7);
}

/* ================================
   AURORA BACKGROUND EFFECT
================================ */
@keyframes aurora-move {
    from {
        background-position: 50% 50%, 50% 50%;
    }
    to {
        background-position: 350% 50%, 350% 50%;
    }
}

.aurora-glow {
    background-image:
        repeating-linear-gradient(
            100deg,
            #000 0%,
            #000 7%,
            transparent 10%,
            transparent 12%,
            #000 16%
        ),
        repeating-linear-gradient(
            100deg,
            #dc6390 10%,
            #742640 15%,
            #4e5b6b 20%,
            #c53d6f 25%,
            #5c6878 30%
        );
    background-size: 200% 200%;
    animation: aurora-move 60s linear infinite;
}

/* ================================
   MARQUEE SCROLL
================================ */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-33.33%);
    }
}

.marquee-container {
    width: max-content;
    animation: marquee 40s linear infinite;
}

/* ================================
   ANIMATIONS
================================ */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================================
   HERO SECTION FIXES
================================ */
.hero-section {
    position: relative;
    min-height: 900px;
    overflow: hidden;
}

.hero-section h1,
.hero-section h2 {
    letter-spacing: -0.02em;
}

.hero-section p {
    line-height: 1.6;
}

/* ================================
   BUTTON EFFECTS
================================ */
.hero-btn-primary {
    box-shadow: 0 0 30px rgba(220, 99, 144, 0.3);
    transition: all 0.3s ease;
}

.hero-btn-primary:hover {
    box-shadow: 0 0 40px rgba(220, 99, 144, 0.5);
    transform: translateY(-4px);
}

.hero-btn-secondary {
    transition: all 0.3s ease;
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

/* ================================
   RESPONSIVE TWEAKS
================================ */
@media (max-width: 768px) {
    .hero-section {
        min-height: 750px;
    }

    .marquee-container {
        animation-duration: 60s;
    }
}
