/* About Page Styles */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background: linear-gradient(110deg, rgba(60,60,60,1) 0%, rgba(255,255,255,1) 100%);
    color: #a9b4b4;
    font-size: 20px;
    line-height: 1.6;
    overflow-x: hidden;
}

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


/* Header */
.header-section {
    background-color: #161414;
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 72px;
}

.logo {
    font-size: 30px;
    font-weight: bold;
    color: #d1e3e3;
    text-decoration: none;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: #d1e3e3;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #f8a5b3 !important;
}

.nav-link.active {
    color: #d1e3e3;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #a9b4b4;
    transition: 0.3s;
}

.mobile-menu {
    display: none;
    background-color: #a9b4b4;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    list-style: none;
    padding: 20px;
}

.mobile-menu a {
    display: block;
    color: #161414;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    padding: 15px 0;
    border-bottom: 1px solid #161414;
}

.mobile-menu a:last-child {
    border-bottom: none;
}

/* Main Content */
.main-container {
    min-height: 100vh;
    background-color: #161414;
    padding-bottom: 20px;
}

/* About Section */
.about-section {
    padding: 40px 0;
}

.about-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

.about-title {
    font-size: 30px;
    color: #a9b4b4;
    margin: 0;
    line-height: 1.4;
}

.cv-button {
    background-color: transparent;
    color: #d1e3e3;
    border: 2px solid #d1e3e3;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
    width: 170px;
}

.cv-button:hover {
    background-color: #d1e3e3;
    color: #232323;
}

/* Content Section */
.content-section {
    padding: 47px 0;
}

/* Introduction Text */
.intro-text {
    margin-bottom: 40px;
}

.intro-text p {
    text-align: justify;
    margin-bottom: 15px;
    color: #a9b4b4;
}

.intro-text strong {
    color: #a9b4b4;
}

.intro-list {
    list-style: none;
    padding-left: 0;
    margin: 15px 0;
}

.intro-list li {
    color: #a9b4b4;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.intro-list li::before {
    content: "•";
    color: #d1e3e3;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.intro-list strong {
    color: #a9b4b4;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Story Text */
.story-text {
    margin-bottom: 40px;
}

.story-text p {
    text-align: justify;
    margin-bottom: 15px;
    color: #a9b4b4;
}

.story-text strong {
    color: #a9b4b4;
}

/* Education Section */
.education-section {
    margin: 60px 0;
}

.section-title {
    font-size: 32px;
    font-weight: bold;
    color: #d1e3e3;
    margin-bottom: 30px;
    text-align: left;
}

.education-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.education-item {
    background-color: rgba(35, 35, 35, 0.6);
    padding: 30px;
    border-radius: 10px;
}

.education-institution {
    font-size: 20px;
    font-weight: bold;
    color: #d1e3e3;
    margin-bottom: 10px;
}

.education-period {
    font-size: 16px;
    color: #a9b4b4;
    margin-bottom: 5px;
}

.education-location {
    font-size: 14px;
    color: #a9b4b4;
    font-style: italic;
    margin-bottom: 15px;
}

.education-degree {
    font-size: 16px;
    font-weight: bold;
    color: #d1e3e3;
    margin-bottom: 5px;
}

/* Skills Section */
.skills-section {
    margin: 60px 0 0 0;
}

.skills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.skill-button {
    background-color: rgba(35, 35, 35, 0.8);
    color: #d1e3e3;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 500;
    font-size: 16px;
    border: 2px solid #d1e3e3;
    transition: all 0.3s ease;
    cursor: default;
}

.skill-button:hover {
    background-color: #d1e3e3;
    color: #232323;
}

/* Career Text */
.career-text {
    padding-top: 0;
}

/* Footer */
.footer {
    background-color: #a9b4b4;
    padding: 60px 20px;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-title {
    font-size: 32px;
    font-weight: bold;
    color: #121212;
    margin-bottom: 30px;
}

.contact-info {
    margin-bottom: 30px;
}

.contact-item {
    margin-bottom: 15px;
}

.contact-label {
    display: block;
    font-weight: bold;
    font-size: 20px;
    color: #121212;
    margin-bottom: 5px;
}

.contact-link {
    font-size: 20px;
    color: #121212;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #ffffff;
}

.footer-social-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 30px;
}

.footer-social-links a {
    display: block;
    width: 36px;
    height: 36px;
    filter: brightness(0);
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-social-links a:hover {
    filter: brightness(0) invert(1);
    transform: scale(1.1);
}

.footer-social-links img {
    width: 100%;
    height: 100%;
}

.footer-bottom {
    border-top: 1px solid rgba(18, 18, 18, 0.2);
    padding-top: 20px;
}

.copyright,
.privacy-notice {
    font-size: 14px;
    color: #121212;
    margin-bottom: 5px;
}

.privacy-notice a {
    color: #121212;
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-notice a:hover {
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .about-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .about-title {
        font-size: 32px;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .education-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .skills-container {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .header-container {
        padding: 0 15px;
    }
    
    .footer-content {
        padding: 0 15px;
    }
    
    .about-title {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .skills-container {
        gap: 8px;
    }
    
    .skill-button {
        font-size: 12px;
        padding: 6px 12px;
    }
}
