/* =========================================
   AxisGate BV - hero.css (PREMIUM POLISH)
   ========================================= */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--ink);
    background-image:
        radial-gradient(circle at 50% 20%, rgba(184, 151, 58, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, #0e0e0e 0%, #1a1a1a 100%);
    color: var(--white);
    padding-top: 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    animation: fadeInUp 0.8s ease-out;
}

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

.hero-logo {
    width: 140px;
    height: auto;
    margin-bottom: 1rem;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.6));
    animation: fadeInDown 0.6s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-slogan {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1.1;
    letter-spacing: -0.8px;
}

.hero-description {
    font-family: var(--font-body);
    font-size: 1.15rem;
    color: var(--parchment);
    line-height: 1.8;
    max-width: 650px;
    opacity: 0.92;
    font-weight: 400;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero {
        padding-top: 70px;
        min-height: 90vh;
    }

    .hero-content {
        gap: 1.5rem;
    }

    .hero-slogan {
        font-size: 2.5rem;
    }

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

    .hero-logo {
        width: 110px;
    }
}