/* ========== СЕКЦИЯ HOME ========== */
.home {
    padding: 80px 0 60px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.home-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

.home-content {
    flex: 1;
    min-width: 300px;
}

/* Заголовок */
.home-title {
    font-family: 'Gilroy-Bold', serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    color: #070707;
    margin: 0 0 16px 0;
}

.highlight {
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 12px;
    background-color: rgba(0, 0, 0, 0.08);
    z-index: -1;
}

/* Профессия и локация */
.home-subtitle {
    font-family: 'Gilroy-Medium', serif;
    font-size: 18px;
    line-height: 1.4;
    color: #828282;
    margin: 0 0 32px 0;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

/* Блок с биографией */
.home-bio {
    margin-bottom: 32px;
}

.bio-text {
    font-family: 'Gilroy-Medium', serif;
    font-size: 16px;
    line-height: 1.6;
    color: #070707;
    margin: 0 0 16px 0;
}

.bio-text:last-child {
    margin-bottom: 0;
}

.bio-text strong {
    font-family: 'Gilroy-Bold', serif;
    font-weight: 700;
    color: #070707;
}

/* Кнопки */
.home-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.btn {
    display: inline-block;
    padding: 12px 32px;
    font-family: 'Gilroy-Bold', serif;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.btn-secondary:hover {
    background-color: #070707;
    color: #fff;
    transform: translateY(-2px);
}

/* Фото */
.home-image {
    flex: 1;
    display: flex;
    justify-content: center;
    min-width: 300px;
}

.photo {
    width: 100%;
    max-width: 380px;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.mobile {
    display: none;
}

/* ========== АДАПТИВНОСТЬ ========== */

/* Планшеты (до 768px) */
@media (max-width: 768px) {
    .home {
        padding: 60px 0 40px;
        min-height: auto;
    }
    
    .home-wrapper {
        flex-direction: column-reverse;
        text-align: center;
        gap: 40px;
    }
    
    .home-content {
        text-align: center;
    }
    
    .home-bio {
        text-align: left;
    }
    
    .home-buttons {
        justify-content: center;
    }
    
    .home-title {
        font-size: 42px;
    }
    
    .home-subtitle {
        font-size: 16px;
    }
    
    .bio-text {
        font-size: 15px;
        text-align: left;
    }
    
    .photo {
        max-width: 280px;
    }
}

/* Мобильные телефоны (до 480px) */
@media (max-width: 480px) {
    .home-title {
        font-size: 32px;
    }
    
    .home-subtitle {
        font-size: 14px;
        padding-bottom: 20px;
        margin-bottom: 24px;
    }
    
    .bio-text {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 14px;
    }
    
    .btn {
        padding: 10px 24px;
        font-size: 14px;
    }
    
    .photo {
        max-width: 240px;
    }
    
    .home-buttons {
        gap: 16px;
    }
}