/* Portal Hero Section */
.portal-hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    background-color: #fdfdfd;
    overflow: hidden;
}

.hero-video, .hero-bg-img {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    opacity: 1;
    object-fit: cover;
}



.portal-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 50%, rgba(253, 253, 253, 1) 100%);
    z-index: 1;
}

.portal-hero-content {
    position: relative;
    z-index: 2;
    padding-top: 100px; /* More space for larger menu */
}

.animate-title {
    font-size: 6rem;
    font-weight: 900;
    line-height: 0.85;
    margin-bottom: 24px;
    letter-spacing: -0.04em;
    color: var(--color-accent);
    text-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.animate-subtitle {
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--color-text-main);
    margin-bottom: 40px;
    max-width: 700px;
}


@media (max-width: 1024px) {
    .animate-title {
        font-size: 4.5rem;
    }
    .animate-subtitle {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .animate-title {
        font-size: 2.8rem;
        line-height: 1.1;
    }
    .animate-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    .portal-hero-content {
        padding-top: 60px;
        text-align: center;
    }
}