/* Home Page Styles */
.home-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.page-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #30363d;
}

.page-header h1 {
    font-size: 2.5rem;
    color: #f0f6fc;
    margin-bottom: 10px;
}

.page-header p {
    color: #8b949e;
    font-size: 1.2rem;
}

.home-content {
    line-height: 1.7;
}

.intro-section {
    margin-bottom: 40px;
}

.intro-section p {
    font-size: 1.1rem;
    color: #8b949e;
    text-align: center;
    font-style: italic;
}

.experience-section,
.passions-section,
.technologies-section,
.professional-experience,
.education-section,
.contact-section {
    margin-bottom: 40px;
}

h2 {
    color: #f0f6fc;
    font-size: 1.8rem;
    margin-bottom: 20px;
    border-left: 4px solid #4a7c9a;
    padding-left: 15px;
}

h3 {
    color: #f0f6fc;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

h4 {
    color: #4a7c9a;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

ul {
    color: #8b949e;
    margin-left: 20px;
}

li {
    margin-bottom: 8px;
}

.tech-category {
    margin-bottom: 25px;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.tech-tag {
    background-color: #161b22;
    color: #f0f6fc;
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid #30363d;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.tech-tag:hover {
    background-color: #4a7c9a;
    border-color: #4a7c9a;
}

.principles-section {
    margin-top: 20px;
    padding: 15px;
    background-color: #161b22;
    border-radius: 8px;
    border-left: 4px solid #c85a4a;
}

.principles-section p {
    color: #8b949e;
    margin-bottom: 5px;
}

.job {
    background-color: #161b22;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #4a7c9a;
}

.job-period {
    color: #8b949e;
    font-style: italic;
    margin-bottom: 15px;
}

.education-item {
    background-color: #161b22;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #2d7a3d;
}

.education-period {
    color: #8b949e;
    font-style: italic;
    margin-bottom: 10px;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-link {
    color: #4a7c9a;
    text-decoration: none;
    padding: 12px 20px;
    background-color: #161b22;
    border-radius: 8px;
    border: 1px solid #30363d;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-link:hover {
    background-color: #21262d;
    border-color: #4a7c9a;
    transform: translateY(-2px);
}

.contact-link i {
    font-size: 1.2rem;
    width: 20px;
}

@media (max-width: 768px) {
    .home-page {
        padding: 15px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .tech-tags {
        justify-content: center;
    }

    .contact-links {
        gap: 10px;
    }
}
