/* ============================================
   BEVELLA MACRAME - HERO COMPONENT
   Premium B2B üretici hero bölümü
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
    background: var(--color-cream);
}

/* === HERO ARKA PLAN === */
.hero__background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero__bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image:
        radial-gradient(circle at 20% 50%, var(--color-secondary) 1px, transparent 1px),
        radial-gradient(circle at 80% 50%, var(--color-secondary) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero__bg-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 0% 50%, rgba(201, 168, 108, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 0%, rgba(201, 168, 108, 0.05) 0%, transparent 40%);
}

/* === HERO İÇERİK === */
.hero__container {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
    max-width: var(--container-2xl);
    margin: 0 auto;
    padding: var(--space-3xl) var(--space-xl);
}

/* === SOL İÇERİK === */
.hero__content {
    max-width: 600px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: var(--color-white);
    border: 1px solid var(--color-beige-dark);
    border-radius: var(--radius-full);
    font-size: var(--fs-xs);
    font-weight: var(--fw-medium);
    color: var(--text-secondary);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: var(--space-lg);
    box-shadow: var(--shadow-sm);
}

.hero__badge-dot {
    width: 6px;
    height: 6px;
    background: var(--color-success);
    border-radius: var(--radius-full);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero__title {
    font-size: var(--fs-5xl);
    font-weight: var(--fw-semibold);
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: var(--space-lg);
    letter-spacing: -1px;
}

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

.hero__slogan {
    font-family: var(--font-heading);
    font-size: var(--fs-xl);
    font-style: italic;
    color: var(--color-brown-light);
    margin-bottom: var(--space-md);
    letter-spacing: 1px;
}

.hero__subtitle {
    font-size: var(--fs-lg);
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

/* === HERO BUTONLARI === */
.hero__buttons {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

/* === HERO İSTATİSTİKLERİ === */
.hero__stats {
    display: flex;
    gap: var(--space-2xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--color-beige-dark);
}

.hero__stat {
    text-align: left;
}

.hero__stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: var(--fw-bold);
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.hero__stat-label {
    font-size: var(--fs-sm);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* === SAĞ GÖRSEL === */
.hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__image-wrapper {
    position: relative;
    width: 100%;
    max-width: 550px;
}

.hero__image-main {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 4/5;
}

.hero__image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dekoratif elemanlar */
.hero__decor {
    position: absolute;
    border-radius: var(--radius-lg);
    background: var(--color-white);
    box-shadow: var(--shadow-lg);
    padding: var(--space-md) var(--space-lg);
}

.hero__decor--top {
    top: -20px;
    right: -30px;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.hero__decor-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-cream);
    border-radius: var(--radius-md);
}

.hero__decor-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-secondary);
    fill: none;
    stroke-width: 2;
}

.hero__decor-text {
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    color: var(--text-primary);
}

.hero__decor-subtext {
    font-size: var(--fs-xs);
    color: var(--text-muted);
}

.hero__decor--bottom {
    bottom: 40px;
    left: -40px;
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.hero__decor--bottom .hero__decor-icon {
    background: var(--color-success);
}

.hero__decor--bottom .hero__decor-icon svg {
    stroke: var(--color-white);
}

/* Scroll göstergesi */
.hero__scroll {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: var(--text-muted);
    font-size: var(--fs-xs);
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-gray), transparent);
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* === RESPONSİVE === */
@media (max-width: 1200px) {
    .hero__title {
        font-size: var(--fs-4xl);
    }

    .hero__container {
        gap: var(--space-2xl);
    }
}

@media (max-width: 1024px) {
    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
        padding: var(--space-2xl) var(--space-xl);
    }

    .hero__content {
        max-width: 100%;
        order: 2;
    }

    .hero__visual {
        order: 1;
    }

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

    .hero__stats {
        justify-content: center;
    }

    .hero__stat {
        text-align: center;
    }

    .hero__buttons {
        justify-content: center;
    }

    .hero__badge {
        margin: 0 auto var(--space-lg);
    }

    .hero__decor {
        display: none;
    }

    .hero__scroll {
        display: none;
    }
}

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

    .hero__title {
        font-size: var(--fs-2xl);
    }

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

    .hero__buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero__buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .hero__stats {
        flex-wrap: wrap;
        gap: var(--space-xl);
    }

    .hero__stat-number {
        font-size: 2.5rem;
    }

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