/* Hero Section - Complete Styles */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 1;
    filter: grayscale(100%);
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    max-width: 1200px;
}

.hero__logo {
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-img {
    max-width: 400px;
    height: auto;
    transition: opacity 0.3s ease;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.hero__logo:hover .hero-logo-img {
    opacity: 0.8;
    transform: scale(1.02);
}

.hero__title {
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 900;
    letter-spacing: -3px;
    line-height: 0.9;
    margin-bottom: 30px;
}

.hero__title-line {
    display: block;
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
}

.hero__title-line:first-child {
    animation-delay: 0.2s;
}

.hero__title-line:last-child {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 0;
    animation: fadeInUp 1s ease-out 0.6s forwards;
    opacity: 0;
}

.hero__scroll {
    position: absolute;
    bottom: 50px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    animation: fadeInUp 1s ease-out 0.9s forwards;
    opacity: 0;
    z-index: 2;
    width: fit-content;
}

.hero__scroll-text {
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 500;
}

.hero__scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, #fff 0%, transparent 100%);
    animation: scrollAnimation 2s infinite ease-in-out;
}

@keyframes scrollAnimation {

    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(15px);
        opacity: 0.3;
    }
}

@media (max-width: 768px) {
    .hero__title {
        font-size: clamp(2rem, 10vw, 4rem);
    }

    .hero__subtitle {
        font-size: clamp(0.9rem, 2.5vw, 1.2rem);
    }

    .hero__scroll {
        bottom: 30px;
    }

    .hero-logo-img {
        max-width: 280px;
    }
}

/* Hero CTA buttons and socials */
.hero__cta {
    margin-top: 22px;
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 28px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: transform 0.18s ease, opacity 0.18s ease;
}

.btn--primary {
    background: #ffffff;
    color: #000;
}

.btn--ghost {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.18);
}

.btn:hover {
    transform: translateY(-3px);
}

.hero__social {
    margin-top: 16px;
}

.hero__social .social-links {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
}

.hero__social .social-icon i {
    font-size: 1.15rem;
    color: #fff;
    transition: color 0.18s ease, transform 0.18s ease;
}

.hero__social .social-icon:hover i {
    transform: translateY(-3px);
    color: #e0e0e0;
}

@media (max-width: 480px) {
    .hero__cta { flex-direction: column; gap: 10px; }
}