/* =================================================
   HERO SECTION
   Minimal CSS - Bootstrap handles layout
   ================================================= */
.hero-home {
    height: 100vh;
    min-height: 600px;
}

.hero-bg {
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.5) 0%,
            rgba(199, 21, 133, 0.2) 50%,
            rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.hero-content {
    color: var(--primary-white);
    z-index: 2;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: 4px;
}

.hero-word {
    color: var(--primary-white);
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-word-accent {
    background: var(--gradient-magenta);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    position: relative;
}

.hero-word-accent::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: var(--gradient-magenta);
    border-radius: 2px;
    box-shadow: 0 0 30px rgba(199, 21, 133, 0.8);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.7);
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

.btn-primary {
    background: var(--gradient-magenta);
    color: var(--text-on-magenta);
    box-shadow: var(--shadow-magenta);
    border: none;
    border-radius: 50px;
    font-family: var(--font-secondary);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 1.2rem 2.5rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: var(--shadow-magenta-strong);
}

.btn-outline {
    background: transparent;
    color: var(--primary-white);
    border: 2px solid var(--primary-white);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-family: var(--font-secondary);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 1.2rem 2.5rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-outline:hover {
    background: var(--primary-white);
    color: var(--magenta);
    transform: translateY(-4px) scale(1.05);
    box-shadow: var(--shadow-strong);
}

/* =================================================
   RESPONSIVE
   ================================================= */
@media (max-width: 1200px) {
    .hero-subtitle {
        font-size: 1.4rem;
    }

    .hero-description {
        font-size: 1rem;
    }
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 4.2rem;
        letter-spacing: 2px;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .btn-primary,
    .btn-outline {
        padding: 1rem 2rem;
    }
}

@media (max-width: 769px) {
    .hero-home {
        height: 80vh;
        min-height: 500px;
    }

    .hero-title {
        font-size: 3.5rem;
        letter-spacing: 2px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

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

@media (max-width: 575.98px) {
    .hero-home {
        height: 75vh;
        min-height: 450px;
    }

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

    .hero-word-accent::after {
        width: 100px;
        height: 3px;
        bottom: -6px;
    }

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

    .hero-description {
        font-size: 0.9rem;
    }

    .btn-primary,
    .btn-outline {
        padding: 0.9rem 1.8rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 479.98px) {
    .hero-home {
        height: 70vh;
        min-height: 400px;
    }

    .hero-title {
        font-size: 2rem;
    }

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

    .hero-description {
        font-size: 0.85rem;
    }

    .btn-primary,
    .btn-outline {
        padding: 0.85rem 1.5rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 320px) {
    .hero-home {
        height: 65vh;
        min-height: 380px;
    }

    .hero-title {
        font-size: 1.7rem;
        letter-spacing: 0.5px;
    }

    .hero-word-accent::after {
        width: 80px;
        height: 2px;
        bottom: -4px;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        letter-spacing: 1px;
    }

    .hero-description {
        font-size: 0.8rem;
    }

    .btn-primary,
    .btn-outline {
        padding: 0.75rem 1.25rem;
        font-size: 0.75rem;
        letter-spacing: 0.5px;
    }

    .action-buttons {
        gap: 0.75rem !important;
    }
}