/* ===== БАЗОВЫЕ СТИЛИ ===== */
body {
    font-family: 'Roboto', Arial, sans-serif; /* Чуть другой шрифт для индивидуальности */
    margin: 0;
    padding: 0;
    background: linear-gradient(160deg, #fff8fe 0%, #ffd9eb 100%); 
    min-height: 100vh;
}

/* ===== КОНТЕЙНЕР СТРАНИЦЫ ===== */
.page-container {
    max-width: 1100px; 
    margin: 0 auto;
    background: #fafafa;
    min-height: 100vh;
    box-shadow: 0 0 40px rgba(0,0,0,0.15); 
}

/* ===== ШАПКА ===== */
.header {
    background: linear-gradient(120deg, #721e64 0%, #982a6e 100%); 
    color: #f5f5f5;
    text-align: center;
    padding: 35px;
    font-size: 30px;
    font-weight: 400;
    letter-spacing: 1.5px; 
}

/* ===== НАВИГАЦИЯ ===== */
.nav {
    background: #721e60; 
    padding: 15px 0;
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 30px; 
}

.nav-item {
    margin: 0;
}

.nav-link {
    color: #f5f5f5;
    text-decoration: none;
    padding: 10px 22px;
    border-radius: 20px;
    transition: all 0.25s ease;
    font-weight: 600; 
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

/* ===== ОСНОВНОЙ КОНТЕНТ ===== */
.content {
    padding: 50px;
    max-width: 850px;
    margin: 0 auto;
}

/* ===== ГЛАВНАЯ СТРАНИЦА ===== */
.profile-header {
    text-align: center;
    margin-bottom: 35px;
}

.profile-title {
    font-size: 34px;
    color: #1e3c72;
    margin-bottom: 15px;
    font-weight: 400;
}

.profile-photo {
    width: 200px;
    height: 260px;
    border-radius: 50%;
    object-fit: cover;
    margin: 25px auto;
    border: 5px solid #ffc6fc;
    box-shadow: 0 10px 25px rgba(42, 82, 152, 0.4);
}

.profile-name {
    font-size: 22px;
    color: #2c3e50;
    margin: 8px 0;
    font-weight: 600;
}

.profile-group {
    font-size: 16px;
    color: #555;
    margin: 5px 0;
}

.about-me {
    background: #fffbea; 
    padding: 30px;
    border-radius: 20px;
    margin: 35px 0;
    border-left: 6px solid #ff9a9e;
    font-size: 15px;
    line-height: 1.7;
}

/* ===== НАВЫКИ ===== */
.skills-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 40px 0;
}

.skill-tag {
    background: linear-gradient(145deg, #ff758c 0%, #ff7eb3 100%); 
    color: white;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 5px 15px rgba(255, 118, 140, 0.35);
    transition: all 0.25s ease;
}

.skill-tag:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 22px rgba(255, 118, 140, 0.5);
}

/* ===== ОПЫТ РАБОТЫ ===== */
.experience-section {
    margin-top: 60px;
}

.section-title {
    font-size: 26px;
    color: #1e3c72;
    text-align: center;
    margin-bottom: 25px;
    font-weight: 500;
}

.experience-card {
    background: #ffffff;
    width: 250px;
    padding: 30px;
    margin: 25px auto;
    border-radius: 15px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    border-left: 5px solid #ff7eb3;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.experience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.experience-title {
    font-size: 21px;
    color: #2c3e50;
    margin: 0 0 12px 0;
    font-weight: 700;
}

.experience-desc {
    color: #444;
    line-height: 1.7;
    margin: 0;
}

/* ===== ФУТЕР ===== */
.footer {
    background: linear-gradient(120deg, #721e4c 0%, #982a89 100%);
    color: #f5f5f5;
    text-align: center;
    padding: 25px;
    margin-top: 60px;
    font-size: 14px;
    letter-spacing: 1px;
}
