/* Hero Section Styles */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-inner {
    text-align: center;
    animation: heroFadeIn 2s ease-out;
}

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

.wolf-logo-large {
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
    opacity: 0;
    animation: logoReveal 1s ease-out 0.5s forwards;
}

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

@keyframes logoReveal {
    to {
        opacity: 1;
    }
}

.collective-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 10vw, 6rem);
    letter-spacing: 0.2em;
    margin-bottom: 2rem;
    opacity: 0;
    animation: titleReveal 1s ease-out 0.8s forwards;
}

@keyframes titleReveal {
    to {
        opacity: 1;
    }
}

/* Rotating Text */
.subtitle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-family: 'Crimson Text', serif;
    font-style: italic;
    margin-bottom: 3rem;
    opacity: 0;
    animation: subtitleReveal 1s ease-out 1.2s forwards;
    flex-wrap: wrap;
    width: 100%;
}

@keyframes subtitleReveal {
    to {
        opacity: 1;
    }
}

.rotating-container {
    position: relative;
    width: 180px;
    height: 1.5em;
    overflow: visible;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    vertical-align: middle;
    text-align: left;
}

.rotating-words {
    position: absolute;
    width: 100%;
    height: 100%;
}

.word {
    position: absolute;
    width: auto;
    text-align: left;
    opacity: 0;
    transform: translateY(-100%);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--blood-red);
    font-weight: 700;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    white-space: nowrap;
}

.word.active {
    opacity: 1;
    transform: translateY(0);
}

.word.exit {
    opacity: 0;
    transform: translateY(100%);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    padding: 1rem;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid rgba(255, 255, 255, 0.5);
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    transform: rotate(45deg);
    animation: scrollPulse 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

.scroll-indicator:hover .scroll-arrow {
    border-color: var(--white);
    transform: rotate(45deg) scale(1.2);
}

@keyframes scrollPulse {
    0%, 100% { 
        transform: rotate(45deg) translateY(0);
        opacity: 0.5;
    }
    50% { 
        transform: rotate(45deg) translateY(5px);
        opacity: 1;
    }
}