/* ========================================
   Hero Section
   ======================================== */

.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 40px 0 100px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.hero-title {
    font-size: 75px;
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: -2px;
    opacity: 0;
}

.hero-title.show {
    animation: fadeInUp 1.2s ease forwards;
}

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

/* Scroll Indicator */
.scroll-indicator {
    position: fixed;
    bottom: 40px;
    right: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 100;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-text {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 3px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    color: #000;
}

.scroll-line {
    width: 2px;
    height: 80px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3));
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.scroll-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to bottom, #000, transparent);
    animation: scrollLineMove 2s ease-in-out infinite;
}

.scroll-line::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background-color: #000;
    border-radius: 50%;
    animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollLineMove {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(300%);
        opacity: 0;
    }
}

@keyframes scrollDot {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
        opacity: 0.3;
    }
    50% {
        transform: translateX(-50%) translateY(10px);
        opacity: 1;
    }
}
