
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #EAD9A8;
    padding: 0.8rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}


.top-bar .back-link {
    font-size: 1rem;
    color: #3a2f1c;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.top-bar .back-link:hover {
    transform: translateX(-3px);
    color: #000;
}


.top-bar .lang-toggle {
    background: transparent;
    border: 2px solid #EAD9A8 ;
    color: #3a2f1c;
    padding: 0.4rem 0.9rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.top-bar .lang-toggle:hover {
    background: #3a2f1c;
    color: #fff;
}

body {
    padding-top: 60px; 
}


.profile {
    padding: 60px 2rem;
    background: linear-gradient(to bottom, var(--white), var(--light-gray));
    min-height: calc(100vh - 300px);
}

.profile-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.profile-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
    border: 4px solid #EAD9A8 ;
    transition: transform 0.3s ease;
}

.profile-image:hover img {
    transform: scale(1.02);
}

.profile-name {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
}

.profile-role {
    font-size: 1.5rem;
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: 2rem;
}

.profile-details {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--primary-gold);
}

.skills li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: var(--primary-gold);
    font-weight: bold;
    font-size: 1.2rem;
}


@media (max-width: 768px) {
    .profile-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .profile-name {
        font-size: 2rem;
    }

    .profile-role {
        font-size: 1.2rem;
    }

    .profile-details {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    body { padding-top: 50px; }
    .profile-name { font-size: 1.5rem; }
    .profile-role { font-size: 1rem; }
    .profile-image img { border-width: 3px; }
    .lang-toggle { padding: 0.35rem 0.7rem; font-size: 0.85rem; }
}
