:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-light: #ecf0f1;
    --text-dark: #2c3e50;
    --background-light: #f5f6fa;
    --background-white: #ffffff;
    --card-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --hover-transition: all 0.3s ease;
    --border-color: rgba(255, 255, 255, 0.15);
}

body {
    background-color: var(--background-light);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
}

/* Reset default margin/padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Header styles */
.header {
    background: linear-gradient(135deg, #001F5C, #0066B3);
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.8);
    position: relative;
    overflow: hidden;
    width: 100vw;
    display: flex;
    justify-content: center;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(255, 221, 0, 0.1),
        rgba(246, 117, 7, 0.1),
        rgba(227, 0, 15, 0.1));
    pointer-events: none;
}

.profile-section {
    max-width: 1200px;
    width: 100%;
    padding: 0 2rem;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.profile-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.profile-image {
    width: 200px;
    height: 200px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    object-fit: cover;
    border: none;
}

.profile-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.name-section {
    display: flex;
    flex-direction: column;
    gap: 0rem;
}

.title-container {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.title-container h1 {
    color: white;
    font-size: 2.5rem;
    margin: 0;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.title-container h2 {
    color: rgba(255, 221, 0, 0.9);
    font-size: 1.5rem;
    margin: 0;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.position-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.pipe {
    display: none;
}

.open-to-work {
    color: rgba(255, 221, 0, 0.9);
    font-size: 1.2rem;
    font-weight: 400;
}

/* Content styles */
.main-content {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
}

/* Modern Section styles */
.section {
    background: var(--background-white);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.section h3 {
    color: var(--text-dark);
    margin: 0 0 1.2rem 0;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Job section updates */
.job {
    padding: 2rem;
    margin: 2rem 0;
    border-left: 4px solid var(--secondary-color);
    background: var(--background-white);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.job:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.job h4 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin: 0 0 1rem 0;
}

.job-company {
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.job-period {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.responsibilities {
    margin: 1.5rem 0;
}

.responsibilities p {
    margin: 0.8rem 0;
    line-height: 1.6;
    position: relative;
    padding-left: 1.2rem;
}

.responsibilities p:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

/* Skills styles */
.skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skill {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.skill:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Projects section updates */
.projects {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.project {
    background: var(--background-light);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1rem 0;
}

.project:hover {
    background: rgba(255, 255, 255, 0.1);
}

.project h5 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin: 0 0 1rem 0;
}

.project p {
    margin: 0 0 1rem 0;
    line-height: 1.5;
}

.technologies {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.2rem;
}

.project-toggle {
    margin-top: 1.5rem;
    padding: 0.8rem 1.2rem;
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.project-toggle:hover {
    background: var(--secondary-color);
    color: white;
}

/* Collapsible sections */
.collapsible h3 {
    cursor: pointer;
    user-select: none;
}

.collapsible h3:hover {
    opacity: 0.8;
}

/* Contact info container - special section */
.contact-info-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: auto;
    width: 100%;
    max-width: 450px;
}

.contact-info p {
    margin: 0.7rem 0;
    color: white;
    display: grid;
    grid-template-columns: 24px 1fr;
    align-items: center;
    gap: 1rem;
}

.contact-info i {
    width: 24px;
    color: white;
    opacity: 0.8;
    text-align: center;
}

.contact-info a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    opacity: 0.8;
    transform: translateX(5px);
}

.fake-data {
    color: white;
}

.blur-text {
    color: transparent;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

.contact-info.blurred {
    filter: blur(4px);
}

/* Unlock button styles */
.unlock-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    width: 100%;
    margin-top: 1rem;
}

.unlock-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.unlock-form {
    margin-top: 1rem;
    display: flex;
    gap: 0.5rem;
}

.unlock-form input {
    flex: 1;
    padding: 0.6rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.unlock-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.unlock-form button {
    padding: 0.6rem 1.2rem;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.unlock-form button:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Education section */
.education {
    background: var(--background-white);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.education:last-child {
    margin-bottom: 0;
}

.education:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.education h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin: 0 0 0.5rem 0;
    font-weight: 600;
}

.edu-institution {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.edu-period {
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
}

/* Skills section */
.skills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 1.2rem;
}

.skill-item {
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.95rem;
}

.skill-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* Interests section */
.interests-container {
    display: flex;
    gap: 2rem;
}

.hobbies, .interests {
    flex: 1;
}

.hobbies ul, .interests ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hobbies li, .interests li {
    margin-bottom: 0.8rem;
    padding-left: 1.2rem;
    position: relative;
    color: var(--text-dark);
}

.hobbies li:before, .interests li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.hobbies li:hover, .interests li:hover {
    transform: translateX(5px);
    color: var(--secondary-color);
}

.hobbies h4, .interests h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Language switcher styles - minden régi stílus törlése után */
.language-switcher {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.lang-btn {
    padding: 0.5rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: transparent !important; /* Felülírjuk az esetleges más stílusokat */
    color: white !important;
    border-radius: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    border-color: white !important;
}

.lang-btn.active {
    background: white !important;
    color: var(--primary-color) !important;
    border-color: white !important;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.9) !important;
    color: var(--primary-color) !important;
    transform: translateY(-2px);
}

/* Main content mobile fixes */
@media (max-width: 768px) {
    /* Profile szekció átrendezése mobilon */
    .profile-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 1rem;
        gap: 1rem;
    }

    .profile-left {
        width: 100%;
        order: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact-info-container {
        width: 100%;
        order: 2;
        margin-top: 1rem;
    }

    /* Fő tartalom átrendezése mobilon */
    .main-content {
        display: flex;
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
    }

    .left-column {
        width: 100%;
        order: 3;
    }

    .right-column {
        width: 100%;
        order: 4;
    }

    /* Címek méretezése mobilon */
    h1 { font-size: 2rem !important; }
    h2 { font-size: 1.5rem !important; }
    h3 { font-size: 1.4rem !important; }
    h4 { font-size: 1.2rem !important; }
}

/* Even smaller screens */
@media (max-width: 480px) {
    .main-content {
        padding: 0.8rem;
    }

    .section {
        padding: 1.2rem;
        margin-bottom: 1.2rem;
    }

    .job {
        padding: 1.2rem;
    }

    .job h4 {
        font-size: 1.1rem;
    }

    .responsibilities p {
        font-size: 0.9rem;
    }

    .skill {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }

    .section h3 {
        font-size: 1.2rem;
    }
}

.fake-data {
    color: #888;
    font-family: monospace;
}

.job-title {
    font-weight: bold;
    color: var(--primary-color);
    font-size: 1.1em;
}

.job-date {
    color: #7F8C8D;
    font-style: italic;
}

.skills-container, .items-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.skill-item, .item {
    background: var(--secondary-color);
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.delete-btn.small {
    padding: 0 5px;
    margin: 0;
    background: transparent;
    color: white;
    font-size: 18px;
    line-height: 1;
}

.interests-editor {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.add-form {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.add-form .form-group {
    display: flex;
    gap: 10px;
}

.add-form button[type="submit"] {
    padding: 5px 15px;
}

/* Visszajelző üzenetek stílusai */
.feedback {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    border-radius: 4px;
    color: white;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.feedback.show {
    opacity: 1;
    transform: translateY(0);
}

.feedback.success {
    background-color: var(--secondary-color);
}

.feedback.error {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

/* Lista elemek animációi */
.item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    margin: 5px 0;
    background: #f5f5f5;
    border-radius: 4px;
    animation: fadeIn 0.3s ease;
}

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

/* Készségek lista stílusa */
.skills-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.skill-item {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 8px 16px;
    margin: 5px;
    border-radius: 20px;
    animation: fadeIn 0.3s ease;
}

.add-form {
    margin-bottom: 20px;
}

.add-form input {
    padding: 8px;
    margin-right: 10px;
    border: 1px solid var(--secondary-color);
    border-radius: 4px;
}

.add-form button {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
}

.add-form button:hover {
    background: var(--highlight-color);
}

.items-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 15px 0;
}

.item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--secondary-color);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9em;
    animation: fadeIn 0.3s ease;
}

.item:hover {
    background: var(--highlight-color);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

.delete-btn.small {
    background: transparent;
    color: white;
    padding: 0;
    margin: 0;
    font-size: 18px;
    line-height: 1;
    border: none;
}

.delete-btn.small:hover {
    color: var(--accent-color);
    background: transparent;
}

.add-form {
    margin-bottom: 15px;
}

.add-form input {
    padding: 8px 15px;
    border: 1px solid var(--secondary-color);
    border-radius: 20px;
    margin-right: 10px;
}

.add-form button {
    background: var(--secondary-color);
    color: white;
    padding: 8px 20px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-form button:hover {
    background: var(--highlight-color);
}

/* Hobbik és érdeklődési körök */
.interests-container {
    display: flex;
    gap: 30px;
}

.hobbies, .interests {
    flex: 1;
}

.hobbies ul, .interests ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hobbies li, .interests li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.hobbies li:before, .interests li:before {
    content: "•";
    color: var(--secondary-color);
    position: absolute;
    left: 0;
}

.project-toggle {
    margin-top: 10px;
    font-size: 0.9em;
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 5px 15px;
    border-radius: 15px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.project-toggle:hover {
    background: var(--primary-color);
}

/* Admin felület új stílusok */
.profile-preview {
    max-width: 200px;
    margin: 10px 0;
    border-radius: 5px;
}

.skills-container, .items-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.skill-item, .item {
    background: var(--secondary-color);
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.delete-btn.small {
    padding: 0 5px;
    margin: 0;
    background: transparent;
    color: white;
    font-size: 18px;
    line-height: 1;
}

.interests-editor {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.add-form {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.add-form .form-group {
    display: flex;
    gap: 10px;
}

.add-form button[type="submit"] {
    padding: 5px 15px;
}

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

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

/* Reszponzív beállítások */
@media (max-width: 768px) {
    .main-content {
        flex-direction: column;
    }
    
    .interests-container {
        flex-direction: column;
    }
    
    .left-column, .right-column {
        flex: 1;
    }
    
    .profile-section {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-info-container {
        width: 100%;
    }
}

/* Kétoszlopos elrendezés */
.left-column {
    flex: 1.5;
}

.right-column {
    flex: 1;
}

/* Lenyitható szekciók */
.collapsible h3 {
    cursor: pointer;
    user-select: none;
}

.collapsible h3:hover {
    opacity: 0.8;
}

/* Social media linkek stílusa */
.social-links {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.social-links a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #fefefe;
    margin: 2% auto;  /* Csökkentettük a margót fentről és lentről */
    padding: 20px;
    border: 1px solid #888;
    border-radius: 8px;
    width: 90%;      /* Növeltük a szélességet 90%-ra */
    max-width: 1400px;  /* Növeltük a maximum szélességet */
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.close-modal {
    position: absolute;
    right: -15px;
    top: -15px;
    color: var(--text-dark);
    background: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    line-height: 0;
    padding-bottom: 3px;
}

.close-modal:hover {
    transform: scale(1.1);
    color: var(--accent-color);
}

#map-iframe {
    width: 100%;
    height: 80vh;    /* Viewport height 80%-a */
    min-height: 600px;  /* Minimum magasság */
    border-radius: 4px;
}

/* Alap címstílusok */
h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 1.8rem;
}

h3 {
    font-size: 1.6rem;
    font-weight: 700;
}

h4 {
    font-size: 1.4rem;
}

/* Main content grid */
.main-content {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
}

@media (max-width: 768px) {
    /* Header elemek mobilon */
    .header {
        padding: 1rem;
    }

    .profile-section {
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 0;
    }

    .profile-left {
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin: 0;
    }

    /* Címek méretei mobilon */
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.8rem !important;  /* Nagyobb címek mobilon */
        margin-bottom: 1.5rem !important;
    }

    h4 {
        font-size: 1.4rem !important;
    }

    /* Oszlopok egymás alá mobilon */
    .main-content {
        grid-template-columns: 1fr !important;  /* Egy oszlop mobilon */
        width: 100%;
        padding: 1rem;
        gap: 2rem;
    }

    .left-column,
    .right-column {
        width: 100%;
    }

    /* Szekció tartalom méretezése */
    .section {
        width: 100%;
        margin-bottom: 2rem;
        padding: 1.5rem;
    }

    /* Szöveg méretezése */
    p, li, .job-company, .edu-institution {
        font-size: 1rem !important;
        line-height: 1.5;
    }

    .job-period, .edu-period {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    h3 {
        font-size: 1.6rem !important;
    }

    h4 {
        font-size: 1.3rem !important;
    }

    .main-content {
        padding: 0.8rem;
    }

    .profile-section {
        padding: 0.8rem;
        gap: 1rem;
    }
    
    .profile-image {
        width: 150px;  /* Kisebb profilkép */
        height: 150px;
    }
    
    .title-container h1 {
        font-size: 1.8rem;
    }
    
    .title-container h2 {
        font-size: 1.2rem;
    }
    
    .contact-info-container {
        padding: 0.8rem;
        margin: 0.5rem 0;
    }
    
    .contact-info p {
        font-size: 0.9rem;
        gap: 0.5rem;
    }
    
    .section {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .job {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .skill {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .main-content {
        padding: 0.8rem;
        gap: 1rem;
    }
}

/* Alap reszponzív beállítások */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Alap konténer stílusok */
.header {
    width: 100%;
    background: linear-gradient(135deg, #001F5C, #0066B3);
    padding: 2rem;
    display: flex;
    justify-content: center;
}

.profile-section {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.main-content {
    width: 100%;
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
}

/* Mobil nézet */
@media only screen and (max-width: 768px) {
    /* Header átrendezése mobilon */
    .header {
        padding: 1rem;
    }
    
    .profile-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 1rem;
        gap: 1rem;
    }
    
    .profile-left {
        width: 100%;
        margin-bottom: 1.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .contact-info-container {
        width: calc(100% - 2rem);
        margin: 1rem auto;
    }
    
    /* Fő tartalom átrendezése mobilon */
    .main-content {
        display: flex;
        flex-direction: column;
        padding: 1rem;
    }
    
    .left-column {
        width: 100%;
        margin-bottom: 2rem;
    }
    
    .right-column {
        width: 100%;
    }
}

/* Még kisebb képernyők */
@media screen and (max-width: 480px) {
    .header {
        padding: 0.8rem;
    }

    .profile-section {
        gap: 1rem;
    }

    .main-content {
        padding: 0.8rem;
        gap: 1.5rem;
    }

    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.3rem; }
    h3 { font-size: 1.2rem; }
    h4 { font-size: 1.1rem; }
}

/* iPhone SE, iPhone 8 és hasonló méretű készülékek (375px széles) */
@media only screen 
and (device-width: 375px) 
and (device-height: 667px) 
and (-webkit-device-pixel-ratio: 2) {
    .profile-section {
        padding: 0.6rem;
    }
    
    .profile-image {
        width: 120px;
        height: 120px;
    }
    
    .title-container h1 {
        font-size: 1.6rem;
    }
    
    .title-container h2 {
        font-size: 1.1rem;
    }
}

/* iPhone X, XS, 11 Pro, 12 mini (375px széles) */
@media only screen 
and (device-width: 375px) 
and (device-height: 812px) 
and (-webkit-device-pixel-ratio: 3) {
    .profile-section {
        padding: 0.7rem;
    }
    
    .profile-image {
        width: 130px;
        height: 130px;
    }
}

/* iPhone XR, XS Max, 11, 11 Pro Max (414px széles) */
@media only screen 
and (device-width: 414px) 
and (device-height: 896px) 
and (-webkit-device-pixel-ratio: 2) {
    .profile-section {
        padding: 0.8rem;
    }
    
    .profile-image {
        width: 140px;
        height: 140px;
    }
}

/* iPhone 12, 12 Pro (390px széles) */
@media only screen 
and (device-width: 390px) 
and (device-height: 844px) 
and (-webkit-device-pixel-ratio: 3) {
    .profile-section {
        padding: 0.7rem;
    }
    
    .profile-image {
        width: 135px;
        height: 135px;
    }
}

/* iPhone 12 Pro Max (428px széles) */
@media only screen 
and (device-width: 428px) 
and (device-height: 926px) 
and (-webkit-device-pixel-ratio: 3) {
    .profile-section {
        padding: 0.8rem;
    }
    
    .profile-image {
        width: 145px;
        height: 145px;
    }
}

.skills-progression {
    margin-top: 2rem;
    padding-top: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.skills-progression h3 {
    margin-bottom: 0;
}
.skills-progression .skills {
    margin-top: 0;
}

.chart-controls {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
    align-items: center;
}

.chart-toggle {
    padding: 0.5rem 1rem;
    border: 2px solid var(--secondary-color);
    background: transparent;
    color: var(--secondary-color);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chart-toggle.active {
    background: var(--secondary-color);
    color: white;
}

.chart-toggle:hover {
    transform: translateY(-2px);
}