/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    min-height: calc(100vh - 72px);
    padding: var(--space-3xl) var(--container-padding);
    background: linear-gradient(135deg, var(--color-gray-light) 0%, var(--color-surface) 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, var(--color-primary) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.05;
    z-index: 1;
}

.hero__container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero__content {
    max-width: 600px;
}

.hero__badge {
    display: inline-block;
    background-color: var(--color-primary);
    color: var(--color-text-white);
    padding: 0.5rem 1rem;
    font-family: var(--font-headline);
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-xs);
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-wide);
    border-radius: var(--radius-base);
    margin-bottom: var(--space-lg);
}

.hero__title {
    font-size: clamp(3rem, 8vw, 7.5rem);
    font-weight: var(--font-weight-black);
    line-height: 0.9;
    margin-bottom: var(--space-lg);
    color: var(--color-text-primary);
    font-family: var(--font-headline);
}

.hero__highlight {
    color: var(--color-primary);
    font-style: italic;
}

.hero__subtitle {
    font-size: var(--font-size-lg);
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-2xl);
    max-width: 500px;
}

.hero__buttons {
    display: flex;
    gap: var(--space-base);
    flex-wrap: wrap;
}

.hero__image {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero__image-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 4/5;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    transform: rotate(3deg);
    transition: transform var(--transition-slow), filter var(--transition-slow);
}

.hero__image-wrapper:hover {
    transform: rotate(0deg);
}

.hero__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter var(--transition-slow);
}

.hero__image-wrapper:hover img {
    filter: grayscale(0%);
}

.hero__image-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    padding: var(--space-lg);
    color: var(--color-text-white);
}

.hero__image-name {
    font-family: var(--font-headline);
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-lg);
}

.hero__image-category {
    font-size: var(--font-size-sm);
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-wide);
    color: var(--color-tertiary-light);
    margin-top: var(--space-sm);
}

/* Decorative Dots */
.hero__dots {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background-image:
        radial-gradient(circle, var(--color-primary) 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.15;
    pointer-events: none;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero__container {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .hero__image {
        order: -1;
    }

    .hero__image-wrapper {
        max-width: 300px;
    }

    .hero__title {
        font-size: clamp(2rem, 6vw, 4rem);
    }

    .hero__buttons {
        flex-direction: column;
    }

    .hero__buttons .btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: var(--space-2xl) var(--container-padding);
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .hero__subtitle {
        font-size: var(--font-size-base);
    }

    .hero__image-wrapper {
        max-width: 250px;
    }
}
