/* Базовые стили */
.hero-section {
    position: relative;
    border-radius: 24px;
    padding: 3rem;
    margin: 2rem 0;
    overflow: hidden;
    transition: all 0.5s ease;
    min-height: 600px;
    display: flex;
    align-items: center;
}

/* Вариант 1: Минималистичный (похож на ваш пример) */
.hero-section.variant-1 {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.hero-section.variant-1 .hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 0.5rem;
}

.hero-section.variant-1 .hero-subtitle {
    font-family: 'Manrope', sans-serif;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.hero-section.variant-1 .profile-photo {
    width: 100%;
    max-width: 400px;
    border-radius: 8px;
    box-shadow: 20px 20px 0 #f5f5f5;
}

/* Вариант 2: Фотостиль */
.hero-section.variant-2 {
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
}

.hero-section.variant-2 .hero-content {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.hero-section.variant-2 .photo-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: black;
    color: white;
    padding: 5px 15px;
    font-size: 0.8rem;
    border-radius: 20px;
}

/* Вариант 3: Темный с акцентами */
.hero-section.variant-3 {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
}

.hero-section.variant-3 .hero-title {
    color: white;
    font-size: 3.5rem;
    font-weight: 900;
}

.hero-section.variant-3 .hero-quote {
    color: var(--primary-color);
    font-style: italic;
    font-size: 1.2rem;
}

/* Вариант 4: Креативный с наложением */
.hero-section.variant-4 {
    background: url('assets/images/texture.jpg') center/cover;
    position: relative;
}

.hero-section.variant-4::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-section.variant-4 .hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.hero-section.variant-4 .profile-photo {
    border: 5px solid white;
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.2);
}

/* Вариант 5: Геометрический */
.hero-section.variant-5 {
    background: white;
    overflow: hidden;
}

.hero-section.variant-5::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: linear-gradient(45deg, transparent 60%, var(--primary-color) 60.1%);
    transform: rotate(15deg);
    z-index: 1;
}

.hero-section.variant-5 .hero-content {
    position: relative;
    z-index: 2;
}

.hero-section.variant-5 .hero-title {
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 1rem;
}

/* Общие элементы для всех вариантов */
.hero-highlights {
    display: flex;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.highlight-item {
    text-align: center;
}

.highlight-value {
    display: block;
    font-weight: 700;
    font-size: 1.2rem;
}

.highlight-label {
    font-size: 0.8rem;
    opacity: 0.7;
}

.hero-software {
    display: flex;
    gap: 0.5rem;
    margin: 1rem 0;
}

.software-badge {
    background: #f0f0f0;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-family: monospace;
}

.hero-contacts {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: inherit;
}

/* Переключатель вариантов */
.hero-variant-selector {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    display: flex;
    gap: 8px;
    background: rgba(255, 255, 255, 0.8);
    padding: 8px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

.variant-btn {
    padding: 6px 12px;
    border: none;
    border-radius: 20px;
    background: transparent;
    color: #666;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.variant-btn.active {
    background: var(--primary-color);
    color: white;
}