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

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: heroZoom 20s ease-in-out infinite alternate;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(44, 51, 25, 0.3) 0%,
        rgba(44, 51, 25, 0.5) 50%,
        rgba(44, 51, 25, 0.9) 100%
    );
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: var(--space-xl) var(--space-lg);
    max-width: 800px;
}

.hero__subtitle {
    font-family: var(--font-accent);
    font-size: clamp(0.85rem, 1.5vw, 1rem);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--color-accent);
    margin-bottom: var(--space-md);
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.3s forwards;
}

.hero__title {
    font-size: clamp(2.8rem, 7vw, 5rem);
    line-height: 1.05;
    margin-bottom: var(--space-lg);
    color: var(--color-text-on-dark);
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.5s forwards;
}

.hero__title span {
    color: var(--color-accent);
}

.hero__description {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: rgba(250, 248, 243, 0.85);
    margin-bottom: var(--space-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.7s forwards;
}

.hero__buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.9s forwards;
}

.hero__buttons .btn-outline {
    color: var(--color-text-on-dark);
    border-color: var(--color-text-on-dark);
}

.hero__buttons .btn-outline:hover {
    background: var(--color-text-on-dark);
    color: var(--color-text);
}

.hero__scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-gray);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: fadeInUp 0.8s ease 1.2s forwards;
    opacity: 0;
}

.hero__scroll-indicator .mouse {
    width: 24px;
    height: 38px;
    border: 2px solid var(--color-gray);
    border-radius: 12px;
    position: relative;
}

.hero__scroll-indicator .mouse::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 3px;
    animation: scrollMouse 1.5s ease-in-out infinite;
}

@keyframes heroZoom {
    from { transform: scale(1); }
    to { transform: scale(1.08); }
}

@keyframes scrollMouse {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

/* Marquee */
.marquee {
    background: var(--color-primary);
    overflow: hidden;
    padding: var(--space-sm) 0;
    position: relative;
}

.marquee__track {
    display: flex;
    width: max-content;
    animation: marquee 25s linear infinite;
}

.marquee__content {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    padding: 0 var(--space-xl);
    white-space: nowrap;
}

.marquee__content span {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-text-on-primary);
}

.marquee__content .dot {
    width: 6px;
    height: 6px;
    background: var(--color-accent);
    border-radius: 50%;
    flex-shrink: 0;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
