/* === HERO SECTION === */
.hero {
    height: calc(100vh - var(--header-height)); /* 100vh минус высота хедера */
    margin-top: var(--header-height); /* Отступ сверху для fixed хедера */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #d6940d, #faa608);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 22px rgba(214, 148, 13, 0.5);
}

.hero-description {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: #c1c9d2;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #d6940d, #faa608);
    color: #fff;
    box-shadow: 0 4px 15px rgba(214, 148, 13, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(214, 148, 13, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #d6940d;
    border: 2px solid #d6940d;
}

.btn-secondary:hover {
    background: rgba(214, 148, 13, 0.1);
    transform: translateY(-2px);
}

/* === Адаптивность === */
@media (max-width: 1365px) {
    .hero {
        min-height: calc(100vh - var(--header-height));
        height: auto;
        margin-top: var(--header-height);
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 5vw, 4rem);
    }
}

@media (max-width: 768px) {
    .hero {
        height: calc(100vh - var(--header-height));
        margin-top: var(--header-height);
    }
    
    .hero-content {
        padding: 0 1.5rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero {
        height: calc(100vh - var(--header-height));
        margin-top: var(--header-height);
    }
    
    .hero-content {
        padding: 0 1rem;
    }

    .hero-description {
        font-size: 1rem;
    }
}

