
* {
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    margin: 0;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
}

.cv-container {
    max-width: 1000px;
    width: 100%;
    background: var(--white);
    display: flex;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-radius: 12px;
    overflow: hidden;
}

.sidebar {
    background-color: var(--sidebar-bg);
    color: #ecf0f1;
    width: 30%;
    padding: 40px 25px;
}

.profile-picture img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--accent-color);
    display: block;
    margin: 0 auto 20px auto;
}

.sidebar h2 {
    color: var(--accent-color);
    font-size: 1.1rem;
    text-transform: uppercase;
    border-bottom: 1px solid #34495e;
    padding-bottom: 8px;
    margin-top: 35px;
}

.sidebar p, .sidebar li {
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.sidebar-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: bold;
}

.soft-skills ul {
    list-style: none;
    padding: 0;
}

.soft-skills li {
    background: rgba(255,255,255,0.05);
    padding: 8px 12px;
    border-radius: 4px;
    border-left: 3px solid var(--accent-color);
}

.main-content {
    flex-grow: 1;
    padding: 60px 10%
}

header {
    margin-bottom: 40px;
}

header h1 {
    font-size: 2.8rem;
    margin: 0;
    color: var(--primary-color);
    letter-spacing: -1px;
}

header h3 {
    font-size: 1.4rem;
    color: var(--accent-color);
    margin: 5px 0 0 0;
    font-weight: 300;
}

.summary-section h2 {
    color: var(--primary-color);
    border-bottom: 2px solid var(--accent-color);
    display: inline-block;
    padding-bottom: 5px;
}


summary {
    list-style: none;
    cursor: pointer;
    outline: none;
}

summary::-webkit-details-marker {
    display: none;
}

summary h2 {
    color: var(--primary-color);
    background: #f8f9fa;
    padding: 15px;
    margin: 10px 0;
    border-radius: 6px;
    font-size: 1.2rem;
    display: flex;
    justify-content: space-between;
    transition: background 0.3s;
}

summary h2:hover {
    background: #edf2f7;
}


summary h2::after {
    content: '+';
    color: var(--accent-color);
    font-weight: bold;
}

details[open] summary h2::after {
    content: '−';
}

.content-box {
    padding: 10px 15px 25px 15px;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

.skills-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.job-header {
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
}

.date {
    background: var(--accent-color);
    color: white;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    height: fit-content;
}

.company {
    font-style: italic;
    color: #7f8c8d;
    margin-top: 0;
}

@media (max-width: 768px) {
    .cv-container {
        flex-direction: column;
    }
    .sidebar, .main-content {
        width: 100%;
    }
    .skills-grid {
        grid-template-columns: 1fr;
    }
}
:root {
    
    --primary-color: #ff2e63;   
    --bg-color: #ffffff; 
    --sidebar-bg: #2d0a1a;        
    --content-bg: #fff5f7;       
    --text-color: #2b2b2b;       
    --white: #ffffff;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: var(--text-color);
    margin: 0;
    padding: 0;
    background-color: var(--white)
    min-height 100vh;
}

.cv-container {
    display: flex;
    min-height: 100vh;
    width: 100%;
    max-width: none;   
    box-shadow: none; 
    border-radius: 0;  

}


.sidebar {
    background-color: var(--sidebar-bg);
    color: #ecf0f1;
    width: 300px; 
    padding: 40px 25px;
    flex-shrink: 0; 
}

.profile-picture img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--accent-color);
    display: block;
    margin: 0 auto 20px auto;
}

.sidebar h2 {
    color: var(--accent-color);
    font-size: 1.1rem;
    text-transform: uppercase;
    border-bottom: 1px solid #34495e;
    padding-bottom: 8px;
    margin-top: 35px; 
}

.sidebar p, .sidebar li {
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.sidebar-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: bold;
}

.soft-skills ul {
    list-style: none;
    padding: 0;
}

.soft-skills li {
    background: rgba(255,255,255,0.05);
    padding: 8px 12px;
    border-radius: 4px;
    border-left: 3px solid var(--accent-color);
}


.main-content {
    width: 70%;
    padding: 50px;
}

header {
    margin-bottom: 40px;
}

header h1 {
    font-size: 2.8rem;
    margin: 0;
    color: var(--primary-color);
    letter-spacing: -1px;
}

header h3 {
    font-size: 1.4rem;
    color: var(--accent-color);
    margin: 5px 0 0 0;
    font-weight: 300;
}


.summary-section h2 {
    color: var(--primary-color);
    border-bottom: 2px solid var(--accent-color);
    display: inline-block;
    padding-bottom: 5px;
}


summary {
    list-style: none;
    cursor: pointer;
    outline: none;
}

summary::-webkit-details-marker {
    display: none;
}

summary h2 {
    color: var(--primary-color);
    background: #f8f9fa;
    padding: 15px;
    margin: 10px 0;
    border-radius: 6px;
    font-size: 1.2rem;
    display: flex;
    justify-content: space-between;
    transition: background 0.3s;
}

summary h2:hover {
    background: #edf2f7;
}

summary h2::after {
    content: '+';
    color: var(--accent-color);
    font-weight: bold;
}

details[open] summary h2::after {
    content: '−';
}

.content-box {
    padding: 10px 15px 25px 15px;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}


.skills-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.job-header {
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
}

.date {
    background: var(--accent-color);
    color: white;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    height: fit-content;
}

.company {
    font-style: italic;
    color: #7f8c8d;
    margin-top: 0;
}



@media (max-width: 768px) {
    .cv-container {
        flex-direction: column;
    }
    .sidebar, .main-content {
        width: 100%;
    }
    .skills-grid {
        grid-template-columns: 1fr;
    }
}