/* koKOT */

.home {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-primary);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0px;
    padding-top: 0;
}

/* Background Video */
.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Dark Overlay */
.home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 20, 20, 0.363);
    z-index: 1;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    text-align: center;
    width: 100%;
    max-width: 800px;
}

/* Hero Text */
.hero-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    width: 100%;
}

.hero-text .hero-cta {
    margin-top: 0;
}

.hero-title {
    font-family: var(--font-title);
    font-size: 4rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 3px;
    line-height: 1.2;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    animation: fadeInDown 1s ease-out;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.4rem;
    font-weight: 300;
    color: #e8e8e8;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease-out 0.2s both;
}

/* CTA Button */
.hero-cta {
    display: inline-block;
    padding: 0.7rem 2rem;
    width: 200px;
    background-color: rgba(12, 42, 22, 0.8);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all var(--transition-smooth);
    text-shadow: none;
    animation: fadeInUp 1s ease-out 0.4s both;
    text-align: center;
    backdrop-filter: blur(5px);
}

.hero-cta:hover {
    background-color: rgba(12, 42, 22, 0.95);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 20px rgba(12, 42, 22, 0.6);
    transform: translateY(-3px);
}

/* Mute Button */
.video-mute-btn {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-smooth);
    padding: 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}


.video-mute-btn svg {
    width: 24px;
    height: 24px;
    stroke: #ffffff;
    display: none;
    transition: display 0.2s ease;
}

.video-mute-btn svg.active {
    display: block;
}

.video-mute-btn:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-cta {
        padding: 0.6rem 1.8rem;
        font-size: 0.75rem;
        width: 180px;
    }

    .video-mute-btn {
        width: 45px;
        height: 45px;
        bottom: 1.5rem;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }

    .hero-cta {
        padding: 0.6rem 1.6rem;
        font-size: 0.75rem;
        letter-spacing: 1px;
        width: 160px;
    }

    .hero-content {
        gap: 2rem;
    }

    .video-mute-btn {
        width: 40px;
        height: 40px;
        bottom: 1rem;
        left: 50%;
        transform: translateX(-50%);
    }

    .video-mute-btn svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }

    .hero-subtitle {
        font-size: 0.8rem;
        letter-spacing: 0.5px;
    }

    .hero-cta {
        padding: 0.5rem 1.5rem;
        font-size: 0.7rem;
        letter-spacing: 0.5px;
        width: 140px;
    }

    .hero-content {
        gap: 1.5rem;
    }

    .video-mute-btn {
        width: 35px;
        height: 35px;
        bottom: 0.8rem;
        left: 50%;
        transform: translateX(-50%);
    }

    .video-mute-btn svg {
        width: 18px;
        height: 18px;
    }

    .hero-cta {
        padding: 0.5rem 1.2rem;
        font-size: 0.65rem;
        width: 130px;
    }
}
