/* color scheme: #2E1110, #94979A, #858A91, #F2EBEC */
html {
    height: 100%;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f5f5f5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.intro {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
 }
 
 header {
    background: linear-gradient(135deg, #00297f     0%, #0058ab    100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
    margin-bottom: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.tagline {
    font-size: 1.2em;
    opacity: 0.9;
    margin-bottom: 20px;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.contact-links a {
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    background: rgba(255,255,255,0.2);
    border-radius: 5px;
    transition: background 0.3s;
    min-width: 100px;
    text-align: center;
}

.contact-links a:hover {
    background: rgba(255,255,255,0.3);
}

section {
    background: white;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

h2 {
    color: #0c264d;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.skills-subtitle {
    color: #000000;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.1em;
    font-weight: 600;
}

.education-item{
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #f0f0f0;
}

.education-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.job-title {
    font-size: 1.2em;
    font-weight: bold;
    color: #333;
}

.course-name {
    font-size: 1em;
    color: #333;
    font-weight: 600;
    font-style: italic;
    margin-top: 2px;
    margin-bottom: 4px;
}

.company {
    color: #0058ab;
    font-weight: 600;
}

.date {
    color: #666;
    font-size: 0.9em;
    margin-bottom: 10px;
}

.skills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.skill-tag {
    background: #0058ab ;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9em;
}

.language-tag {
    background: #0058ab;
}

ul {
    margin-left: 20px;
    margin-top: 10px;
}

li {
    margin-bottom: 8px;
}


@media (max-width: 768px) {
    h1 {
        font-size: 2em;
    }
    
    .tagline {
        font-size: 1em;
    }
    
    .container {
        padding: 10px;
    }
    
    header {
        padding: 40px 20px;
    }
    
    section {
        padding: 20px;
    }
    
    .contact-links {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-links a {
        width: 200px;
        text-align: center;
    }
    
    .skills {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.6em;
    }
    
    /* .job-title {
        font-size: 1.1em;
    } */
    
    header {
        padding: 30px 15px;
    }
    
    section {
        padding: 15px;
    }
}
/* #title {
    word-wrap: break-word;
    color:blanchedalmond;
    /* text-shadow:1px 1px 2px black; */
    /* font-size:400%; */
    /* 0 0 1em blue, */
    /* 0 0 0.2em black; */
    
/* } */ 
/* #description {
    font-weight: 100;
    color: #DDD5D0;
}
.tabs {
    background-color: #586f6b;
    border-radius: 8px;
    width: 80%;
    max-width: 600px;
    padding: 20px;
}
.tab_list {
    display: flex;
    justify-content: space-around;
    cursor: pointer;
    border-bottom: 2px solid #ddd;
}
.tab_list > div {
    padding: 10px 20px;
    border-radius: 4px 4px 0 0;
    transition: background-color 0.3s;
}
.tab_list > div:hover {
    background-color: #7f9183;
}
.tab_content > div {
    display: none;
    padding: 20px;
    background: #b8b8aa;
    border-radius: 4px;
} */