/* Home Section Styles */
.home-section {
    position: relative;
    width: 100%;
    height: 110vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 0;
    padding: 0;
    top: 0;
    left: 0;
}

.home-section .wave-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 10;
    line-height: 0;
    pointer-events: none;
    overflow: hidden;
}

.home-section .wave-divider svg {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: bottom;
}

.home-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    object-fit: cover;
    object-position: center;
}

.home-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
}

.home-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    text-align: center;
    padding: 2rem;
}

.home-logo {
    max-width: 400px;
    width: 100%;
    animation: fadeInScale 1.5s ease-out;
}

.home-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.3));
}

.home-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5rem;
    animation: fadeInUp 1.5s ease-out 0.3s both;
}

/* Animations */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .home-logo {
        width: 150px;
        height: 150px;
    }

    .home-title {
        font-size: 3rem;
        letter-spacing: 0.5rem;
    }
}

@media (max-width: 480px) {
    .home-logo {
        width: 120px;
        height: 120px;
    }

    .home-title {
        font-size: 2rem;
        letter-spacing: 0.3rem;
    }

    .home-content {
        gap: 1rem;
    }
}