/* ═══════════════════════════════════════════════
   HERO SIMPLIFIED - FOCUS ON TYPOGRAPHY
   Убрали glassmorphism, оставили видео, улучшили шрифты
   ═══════════════════════════════════════════════ */

/* Hero секция - опускаем контент ниже */
.hero {
    padding-bottom: 15vh !important;
}

/* Убираем все лишнее из hero-bg */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

/* Легкое затемнение только снизу для читаемости */
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(30, 45, 35, 0.7) 0%,
        rgba(30, 45, 35, 0.3) 40%,
        transparent 70%
    );
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Убираем glassmorphism карточку */
.hero-glass-card {
    background: none !important;
    backdrop-filter: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    animation: none !important;
}

.hero-glass-card::before,
.hero-glass-card::after {
    display: none !important;
}

/* Контент без карточки */
.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1000px;
}

/* ═══════════════════════════════════════════════
   УНИКАЛЬНАЯ ТИПОГРАФИКА
   ═══════════════════════════════════════════════ */

/* Eyebrow с анимацией */
.hero-eyebrow {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    display: inline-block;
    position: relative;
    animation: fadeInDown 0.8s ease-out;
}

.hero-eyebrow::before {
    content: '';
    position: absolute;
    left: -50px;
    top: 50%;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-gold));
    animation: lineGrow 1s ease-out 0.3s both;
}

@keyframes lineGrow {
    from { width: 0; opacity: 0; }
    to { width: 40px; opacity: 1; }
}

/* Заголовок - элегантный и не перекрывающий видео */
.hero-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 1.5rem;
    text-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.3),
        0 4px 20px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease-out 0.2s both;
    font-family: var(--font-serif);
}

/* Выделенный текст - золотистый */
.hero-title em {
    font-style: italic;
    font-weight: 400;
    color: rgba(212, 163, 115, 0.9);
}


@keyframes gradientShift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: scaleX(0.8); }
    50% { opacity: 1; transform: scaleX(1); }
}

/* Подзаголовок - четкий и читаемый */
.hero-subtitle {
    font-size: clamp(1.1rem, 2.2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin-bottom: 3rem;
    line-height: 1.6;
    font-weight: 400;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* Кнопка с эффектом */
.hero-actions {
    animation: fadeInUp 1s ease-out 0.6s both;
}

.magnetic-btn {
    position: relative;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1.2rem 3rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    border-radius: 100px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.magnetic-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-gold), var(--color-accent));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.magnetic-btn:hover {
    transform: translateY(-3px);
    border-color: var(--color-gold);
    box-shadow: 
        0 10px 30px rgba(212, 163, 115, 0.4),
        0 0 40px rgba(212, 163, 115, 0.2);
}

.magnetic-btn:hover::before {
    opacity: 1;
}

/* ═══════════════════════════════════════════════
   АНИМАЦИИ
   ═══════════════════════════════════════════════ */

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 25px;
    position: relative;
    margin: 0 auto 1rem;
}

.scroll-indicator::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--color-gold);
    border-radius: 2px;
    animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
    0%, 100% {
        top: 8px;
        opacity: 1;
    }
    50% {
        top: 30px;
        opacity: 0.3;
    }
}

/* ═══════════════════════════════════════════════
   УБИРАЕМ ЛИШНИЕ ЭЛЕМЕНТЫ
   ═══════════════════════════════════════════════ */

/* Скрываем parallax слои и облака - они создают лаги */
.parallax-layer,
.floating-cloud,
.hero-particles {
    display: none !important;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */

@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-eyebrow::before {
        display: none;
    }
    
    .magnetic-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* ═══════════════════════════════════════════════
   PERFORMANCE
   ═══════════════════════════════════════════════ */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}