/* Hero Section (BEM) */
.hero {
    position: relative;
    min-height: 30vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
    padding: 2rem 1rem;
    margin-top: 0;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.01) 0%, transparent 50%),
        url('data:image/svg+xml,<svg viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.01)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,144C960,149,1056,139,1152,122.7C1248,107,1344,85,1392,74.7L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    pointer-events: none;
}

.hero__content {
    color: var(--text-white);
    z-index: 1;
    max-width: 1000px;
    width: 100%;
    padding: 0 1rem;
}

.hero__header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero__logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero__text {
    text-align: left;
    flex: 1;
    min-width: 300px;
}

.hero__title {
    font-size: 2rem;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease;
}

.hero__subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero .btn {
    animation: fadeInUp 0.8s ease 0.4s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tablet Styles */
@media (min-width: 768px) {
    .hero__title {
        font-size: 2.75rem;
    }
    
    .hero__subtitle {
        font-size: 1.5rem;
    }
    
    .hero__header {
        flex-wrap: nowrap;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .hero__title {
        font-size: 3rem;
    }
    
    .hero__header {
        gap: 3rem;
    }
}
