/**
 * Reklart - Hero Stilleri
 */

.hero {
    padding: var(--space-16) 0 var(--space-20);
    text-align: center;
}

.hero__content {
    max-width: 800px;
    margin: 0 auto var(--space-12);
}

.hero__label {
    display: inline-block;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    color: var(--text-secondary);
    margin-bottom: var(--space-4);
    letter-spacing: 0.02em;
}

.hero__title {
    font-size: var(--font-size-6xl);
    font-weight: var(--font-weight-extrabold);
    line-height: 1.1;
    margin-bottom: var(--space-6);
    letter-spacing: -0.03em;
}

.hero__title .text-primary {
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-thickness: 3px;
    text-decoration-color: var(--color-primary);
}

.hero__desc {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto;
    line-height: var(--line-height-relaxed);
}

/* Video Alani */
.hero__video-wrapper {
    max-width: 1000px;
    margin: 0 auto var(--space-10);
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    background-color: var(--color-gray-900);
    box-shadow: var(--shadow-xl);
}

.hero__video {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
}

.hero__video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    object-fit: cover;
    pointer-events: none;
}

/* YouTube iframe: biraz buyuterek alt kontrolleri kirp */
.hero__video iframe {
    position: absolute;
    top: -60px;
    left: 0;
    width: 100%;
    height: calc(100% + 120px);
    border: none;
    pointer-events: none;
}

.hero__video video::-webkit-media-controls {
    display: none !important;
}

.hero__video video::-webkit-media-controls-enclosure {
    display: none !important;
}

/* CTA */
.hero__cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
}

.hero__cta-desc {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: var(--space-10) 0 var(--space-12);
    }

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

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