﻿.hero {
    position: relative;
/*    margin-left: 9%;
    margin-right: 9%;*/
    margin-top: 5%;
/*    border-radius: 12px;*/
    height: 90vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}


.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    background-color: rgb(35, 35, 35);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 20px;
    color: #ffffff;
    transform: translateY(-120px);
}


.hero-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 18px;
}

.logo-placeholder-hero {
    width: 120px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px dashed rgba(255, 255, 255, 0.6);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 1px;
}

.hero-title {
    font-size: clamp(24px, 5vw, 48px);
    font-weight: 600;
    margin: 0 0 14px 0;
    font-family: 'arial', sans-serif;
    text-shadow: 0 0 60px rgba(53, 137, 193, 0.968), 0 0 80px rgb(53, 137, 193), 0 0 100px rgb(53, 137, 193);
}

.hero-subtitle {
    font-size: clamp(14px, 2.5vw, 30px);
    font-weight: 500;
    margin: 0;
    font-family: 'arial', sans-serif;
    text-shadow: 0 0 15px rgba(53, 137, 193, 0.968), 0 0 30px rgba(53, 137, 193, 0.968);
}

@media (max-width: 768px) {
    .hero {
        height: 70vh;
    }

    .hero-content {
        transform: translateY(-40px);
    }
}

@media (max-width: 480px) {
    .hero {
        height: 60vh;
    }

    .hero-content {
        transform: translateY(-20px);
        padding: 0 14px;
    }
}
