/* Reset and Base Styles */
:root {
    --text-color: #0a0a0c;
    --deep-lavender: #7b61ff;
    --crisp-lilac: #a08cff;
    --soft-lavender: #f5f5ff;
    --deep-indigo: #4f46e5;
    --green-status: #09e589;
    --white: #ffffff;
    --bg-gray: #f8f9fa;
    --border-radius-large: 24px;
    --border-radius-medium: 20px;
    --font-heading: 'Montserrat', 'Inter', sans-serif; /* Fallback for AOK Buenos Aires */
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--white);
    line-height: 1.5;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
            position: relative;
        }

/* Header */
        .header {
            position: sticky;
            top: 0;
            background-color: var(--white);
            z-index: 100;
            transition: box-shadow 0.3s ease;
            box-shadow: none;
            width: 100vw;
            margin-left: calc(-50vw + 50%);
        }

        .header-content {
                display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 60px;
            max-width: 1200px;
            width: 100%;
            margin: 0 auto;
        }

        .header.scrolled {
            background-color: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        }

        .logo-container {
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0;
            padding: 0;
        }

        .logo {
            height: 44px;
            width: 40px;
            display: block;
            margin: 0;
            padding: 0;
        }

        .nav {
            display: flex;
            gap: 22px;
        }

        .nav-link {
    font-family: var(--font-heading);
            font-size: 20px;
            font-weight: 400;
    color: var(--text-color);
    transition: color 0.3s;
            position: relative;
    text-decoration: none;
        }

        .nav-link::after {
            content: '';
            position: absolute;
    bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
    background-color: var(--deep-lavender);
            transition: width 0.3s ease;
        }

        .nav-link.active::after {
            width: 100%;
        }

        .nav-link:hover {
    color: var(--deep-lavender);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
            position: relative;
        }

.menu-toggle span {
    width: 30px;
    height: 2px;
    background-color: var(--text-color);
    transition: all 0.3s ease;
    transform-origin: center;
    position: relative;
}

.menu-toggle span:nth-child(3) {
    display: none;
}

.menu-toggle.active {
    gap: 0;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(2px);
}

.menu-toggle.active span:nth-child(2) {
    transform: rotate(-45deg) translateY(-2px);
        }

        /* Hero Section */
        .hero {
            position: relative;
    padding: 60px;
    min-height: 700px;
            display: flex;
            align-items: center;
            justify-content: center;
        }


        .hero-wrapper {
            display: flex;
    justify-content: space-between;
            align-items: center;
            width: 100%;
    max-width: 1012px;
    gap: 55px;
        }

        .hero-content {
                flex: 1;
            display: flex;
            flex-direction: column;
            gap: 36px;
    min-width: 0; /* Allows flex items to shrink below content size if needed */
        }

.hero-status {
            display: flex;
}

.status-badge {
            display: flex;
            align-items: center;
    gap: 10px;
            background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
        }

        .status-dot {
    width: 14px;
    height: 14px;
    background-color: var(--green-status);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(9, 229, 137, 0.7);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(9, 229, 137, 0.7);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(9, 229, 137, 0);
        transform: scale(1.1);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(9, 229, 137, 0);
        transform: scale(1);
    }
}

.status-badge span {
    font-size: 18px;
    color: var(--text-color);
}

.hero-text h1 {
            font-family: 'Buenos Aires', 'Montserrat', 'Inter', sans-serif;
    font-size: 50px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 12px;
    white-space: nowrap;
}

.hero-text .tagline {
    font-size: 28px;
            font-weight: 300;
    color: var(--text-color);
            white-space: nowrap;
}

.highlight {
    font-weight: 500;
}

.hero-actions {
            display: flex;
    gap: 12px;
    margin-top: 28px; /* Ideal spacing between paragraph and CTA buttons */
}

.btn {
    padding: 14px 32px;
    border-radius: 100px;
    font-family: var(--font-heading);
    font-weight: 600;
                font-size: 18px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
            display: inline-flex;
            align-items: center;
            justify-content: center;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}

.btn-primary-gradient {
    background: linear-gradient(to right, var(--deep-lavender), var(--crisp-lilac));
    color: var(--white);
    border: none;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-primary-gradient:hover {
    background: linear-gradient(to right, #6b4fff, #8d6fff);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}

.btn-secondary-outline {
            background: transparent;
    color: var(--deep-lavender);
    border: 1.5px solid var(--deep-lavender);
    border-radius: 100px;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-secondary-outline:hover {
    background: var(--soft-lavender); /* light purple like tag background */
    color: var(--deep-lavender);
    border-color: var(--deep-lavender);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}

.btn-secondary-outline.small {
    padding: 14px 32px;
    font-size: 18px;
    border-radius: 100px;
}

.btn-primary-solid {
    background: linear-gradient(to right, var(--deep-lavender), var(--crisp-lilac));
    color: var(--white);
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-primary-solid:hover {
    background: linear-gradient(to right, #6b4fff, #8d6fff);
            transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}

/* Pulsing animation for Get in touch button */
@keyframes pulse-shadow {
    0% {
        box-shadow: 
            0 0 0 0 rgba(160, 140, 255, 0.5),
            0 0 0 0 rgba(160, 140, 255, 0.4),
            0 0 0 0 rgba(160, 140, 255, 0.3),
            0 0 0 0 rgba(160, 140, 255, 0.2);
    }
    50% {
        box-shadow: 
            0 0 0 8px rgba(160, 140, 255, 0),
            0 0 0 18px rgba(160, 140, 255, 0),
            0 0 0 28px rgba(160, 140, 255, 0),
            0 0 0 38px rgba(160, 140, 255, 0);
    }
    100% {
        box-shadow: 
            0 0 0 0 rgba(160, 140, 255, 0.5),
            0 0 0 0 rgba(160, 140, 255, 0.4),
            0 0 0 0 rgba(160, 140, 255, 0.3),
            0 0 0 0 rgba(160, 140, 255, 0.2);
    }
}

#get-in-touch-btn.pulsing {
    animation: pulse-shadow 2s ease-in-out infinite;
    position: relative;
}

.hero-image-container {
                flex: 1;
            display: flex;
    justify-content: flex-end;
}

.hero-image-wrapper {
    width: 320px;
    height: 320px;
            border-radius: 24px;
            overflow: hidden;
            position: relative;
            animation: fluid-shape 5s ease-in-out infinite;
        }

@keyframes fluid-shape {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    25% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
    50% {
        border-radius: 50% 50% 60% 40% / 70% 50% 50% 60%;
    }
    75% {
        border-radius: 40% 70% 50% 50% / 40% 50% 70% 50%;
    }
    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

.hero-image-wrapper img {
            width: 100%;
                height: 100%;
            object-fit: cover;
}

/* Projects Section */
.projects-section {
    padding: 60px;
            display: flex;
            flex-direction: column;
    gap: 48px;
    max-width: 1200px;
    scroll-margin-top: 100px;
    margin: 0 auto;
}

.section-header {
            display: flex;
            flex-direction: column;
                gap: 10px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 500;
    color: var(--text-color);
    margin: 0;
            padding: 0;
    line-height: 1.0;
}

.section-header h2,
.section-header .section-title {
    font-family: var(--font-heading);
            font-size: 36px;
    font-weight: 500;
    color: var(--text-color);
            margin: 0;
    padding: 0;
            line-height: 1.0;
        }

.light-slash {
            font-weight: 300;
    color: var(--text-color);
            opacity: 1;
        }

.section-header p {
    font-size: 18px;
    color: var(--text-color);
    max-width: none;
    font-weight: 300;
    margin: 0;
}

.projects-list {
            display: flex;
            flex-direction: column;
    gap: 48px;
            }

            .project-card {
    background: var(--white);
    border-radius: var(--border-radius-large);
            overflow: hidden;
    box-shadow: 2px 2px 42px 0px rgba(0,0,0,0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: block;
            text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.project-card:hover {
    transform: translateY(-4px);
    box-shadow: 2px 8px 60px 0px rgba(0,0,0,0.2);
}

/* When hovering on project card, make the button look like primary button */
.project-card:hover .btn-secondary-outline,
.project-card:hover .btn-secondary-outline:hover {
    background: linear-gradient(to right, var(--deep-lavender), var(--crisp-lilac));
    color: var(--white);
    border: none;
    transform: translateY(-2px);
    box-shadow: none !important; /* Remove shadow for button when card is hovered */
    transition: color 0.08s ease, background 0.08s ease, border 0.08s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card.horizontal {
            display: flex;
            height: 524px;
        }

        .project-info {
                flex: 1;
    padding: 52px 54px 52px 52px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: flex-start;
        }

.project-info-content {
            display: flex;
            flex-direction: column;
            gap: 16px;
    align-items: flex-start;
                width: 100%;
        }

.project-info-actions {
            display: flex;
            flex-direction: column;
            gap: 20px;
            align-items: flex-start;
                width: 100%;
        }

.project-info-content h3 {
    font-family: var(--font-heading);
    font-size: 28px;
            font-weight: 600;
            margin: 0;
        }

.project-tags {
            display: flex;
            gap: 12px;
            margin: 0;
        }

.tag {
    background-color: var(--soft-lavender);
    color: var(--deep-lavender);
    font-family: var(--font-body);
            font-size: 12px;
    padding: 8px 10px;
            border-radius: 20px;
    text-transform: uppercase;
        }

.project-description {
    font-size: 16px;
    line-height: 1.5;
            margin: 0;
    max-width: none;
    font-weight: 300;
        }

.project-image {
            flex: 1;
    padding: 24px 24px 52px 0;
            display: flex;
    overflow: visible;
}

.project-image img {
                width: 100%;
            height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: var(--border-radius-medium);
    transition: transform 0.5s ease;
    transform-origin: center;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

/* Creative Voice Section */
.creative-voice-section {
    padding: 60px;
    max-width: 1200px;
    margin: 0 auto;
            display: flex;
                flex-direction: column;
    gap: 48px;
        }

.creative-grid {
                display: flex;
    gap: 48px;
            }

.project-card.vertical {
            flex: 1;
                display: flex;
                flex-direction: column;
    height: 612px;
}

.project-card.vertical .project-image {
    padding: 26px;
    height: 60%;
                flex: none;
    overflow: visible;
}

.project-card.vertical .project-image img {
    border-radius: var(--border-radius-medium);
                width: 100%;
                height: 100%;
                object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
    transform-origin: center;
}

.project-card.vertical:hover .project-image img {
    transform: scale(1.05);
}

.project-card.vertical .project-info {
    height: 40%;
    padding: 20px 32px;
    justify-content: center;
    gap: 16px;
}

.category-label {
    background-color: #f5f5ff; /* Indigo light */
    color: var(--deep-indigo);
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 12px;
    align-self: flex-start;
        }

        /* Footer */
            .footer {
    background-color: #000000;
    padding: 70px 0 20px;
    margin: 18px;
    width: calc(100vw - 36px);
    margin-left: calc(-50vw + 50% + 18px);
    color: var(--white);
    border-radius: 22px;
        }

        .footer-content {
            max-width: 1200px;
            width: 100%;
            margin: 0 auto;
    padding: 0 60px;
            display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
            gap: 50px;
        }

.connect-section {
                flex: 1;
            display: flex;
                flex-direction: column;
    gap: 100px;
            align-items: flex-start;
            }

.connect-text {
            display: flex;
                flex-direction: column;
    gap: 12px;
}

.connect-text h2 {
    font-family: var(--font-heading);
    font-size: 38px;
            font-weight: 600;
    line-height: 1;
            margin: 0;
    color: var(--white);
        }

.connect-text p {
                font-size: 24px;
    font-weight: 300;
    line-height: 1.3;
            margin: 0;
    color: var(--white);
        }

.contact-info-section {
            display: flex;
    gap: 50px;
        }

.contact-column {
            display: flex;
            flex-direction: column;
    gap: 12px;
            text-align: left;
        }

.contact-column h3 {
    font-family: var(--font-heading);
            font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
            margin: 0;
    color: var(--white);
        }

.contact-column p, .contact-column a {
            font-size: 18px;
    font-weight: 300;
    line-height: 1.4;
            margin: 0;
            color: var(--white);
            position: relative;
    transition: color 0.3s ease;
        }

.contact-column a::after {
            content: '';
            position: absolute;
    bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
    background-color: var(--deep-lavender);
            transition: width 0.3s ease;
        }

.contact-column a:hover {
    color: rgba(255, 255, 255, 0.7);
        }

.contact-column a:hover::after {
            width: 100%;
        }

        .footer-bottom {
            max-width: 1200px;
            width: 100%;
            margin: 0 auto;
    padding: 0 60px;
            text-align: center;
            font-size: 12px;
            color: var(--white);
    padding-top: 0;
}

/* About Page */
.about-hero {
            padding: 60px 0;
            display: flex;
            justify-content: center;
        }

.about-hero-wrapper {
            display: flex;
            gap: 4rem; /* more breathing room between text and photo */
            align-items: flex-start;
            max-width: 1200px;
            width: 100%;
            padding: 0 60px;
        }

.about-hero-content {
            flex: 0 0 61.8%; /* Golden ratio: text area */
    max-width: 61.8%;
            display: flex;
            flex-direction: column;
            gap: 16px;
            padding: 26px 0;
        }

.about-hero-title {
    font-family: var(--font-heading);
    font-size: 35px;
            font-weight: 400;
            line-height: 1;
    color: var(--text-color);
            margin: 0;
        }

.about-hero-title-new {
    font-family: 'Buenos Aires', var(--font-heading);
    font-size: 30px;
            font-weight: 400;
            line-height: 1.2;
    color: var(--text-color);
            margin: 0;
}

.about-hero-description {
            display: flex;
            flex-direction: column;
}

.about-hero-description p {
    font-family: var(--font-body);
    font-size: 18px;
            font-weight: 300;
            line-height: 1.29;
    color: var(--text-color);
    margin: 0 0 8px 0;
}

.about-hero-description p:last-child {
            margin-bottom: 0;
        }

.about-section {
            display: flex;
            flex-direction: column;
    gap: 7px;
        }

.about-section-title {
    font-family: var(--font-heading);
    font-size: 25px;
            font-weight: 400;
            line-height: normal;
    color: var(--text-color);
            margin: 0;
        }

.about-section-text {
    font-family: var(--font-body);
            font-size: 18px;
            font-weight: 400;
            line-height: 1.29;
    color: var(--text-color);
            margin: 0;
        }

.about-hero-actions {
            display: flex;
            gap: 12px;
            margin-top: 28px; /* Ideal spacing between paragraph and CTA buttons */
        }

.about-hero-image-container {
            flex: 0 0 38.2%; /* Golden ratio: photo area */
    max-width: 38.2%;
            position: relative;
    height: 424px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
        }


.about-hero-image-wrapper {
            position: relative;
    width: 320px;
    height: 320px;
    border-radius: 37px;
    overflow: hidden;
    z-index: 1;
    animation: fluid-shape 5s ease-in-out infinite;
    margin: 0 auto;
}

.about-hero-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center center;
            display: block;
        }

/* Experience Section */
.about-experience {
        padding: 0 60px 60px;
            max-width: 1200px;
            margin: 0 auto;
        }

.about-experience-header {
            display: flex;
            flex-direction: column;
            gap: 5px;
    margin-bottom: 22px;
        }

.about-experience-title-wrapper {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

/* Removed - now using .section-title */

.about-experience-subtitle {
    font-family: var(--font-body);
            font-size: 18px;
            font-weight: 300;
    color: var(--text-color);
            margin: 0;
        }

.about-experience-subtitle a {
    text-decoration: none;
    color: var(--deep-lavender);
            position: relative;
    transition: color 0.3s ease;
}

.about-experience-subtitle a::after {
    content: '';
            position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--deep-lavender);
    transition: width 0.3s ease;
}

.about-experience-subtitle a:hover {
    color: rgba(10, 10, 12, 0.7);
}

.about-experience-subtitle a:hover::after {
            width: 100%;
}

.experience-list-new {
            display: flex;
            flex-direction: column;
    gap: 27px;
    background: var(--white);
    border-radius: var(--border-radius-large);
    padding: 10px 0;
        }

.experience-item-new {
            display: flex;
    gap: 98px;
        }

.experience-company-info {
            display: flex;
            flex-direction: column;
            gap: 8px;
    flex: 0 0 38.2%; /* Golden ratio: smaller part */
    max-width: 38.2%;
        }

.experience-company {
    font-family: var(--font-heading);
            font-size: 20px;
            font-weight: 600;
    color: var(--text-color);
            margin: 0;
    line-height: normal;
}

.experience-date {
    font-family: var(--font-heading);
            font-size: 16px;
            font-weight: 400;
    color: var(--text-color);
            margin: 0;
            line-height: normal;
        }

.experience-job-info {
            flex: 0 0 61.8%; /* Golden ratio: larger part */
    max-width: 61.8%;
            display: flex;
            flex-direction: column;
    gap: 8px;
}

.experience-job-title-new {
    font-family: var(--font-heading);
                font-size: 20px;
            font-weight: 600;
    color: var(--text-color);
            margin: 0;
            line-height: normal;
        }

.experience-description {
    font-family: var(--font-body);
            font-size: 18px;
            font-weight: 300;
            line-height: 1.29;
    color: var(--text-color);
            margin: 0;
}

/* Education & Trainings Section */
.about-education-trainings {
        padding: 0 60px 60px;
            max-width: 1200px;
            margin: 0 auto;
        }

.education-trainings-card {
    background: var(--white);
    border-radius: var(--border-radius-large);
            display: flex;
            flex-direction: column;
            gap: 22px;
        }

/* Removed - now using .section-title */

.education-trainings-list {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

.education-training-item {
            display: flex;
    gap: 98px;
            align-items: center;
            margin-bottom: 0.75rem;
        }

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

.education-year {
    width: 174px;
            flex-shrink: 0;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

.education-year p {
    font-family: var(--font-heading);
            font-size: 18px;
            font-weight: 400;
    color: var(--text-color);
            margin: 0;
            line-height: normal;
}

.education-name {
                flex: 1;
}

.education-name p {
    font-family: var(--font-body);
            font-size: 20px;
    font-weight: 500;
            line-height: 1.29;
    color: var(--text-color);
            margin: 0;
        }

/* My Skills Section */
.about-skills-section {
        padding: 0 60px 80px;
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
    gap: 22px;
}

/* Removed - now using .section-title */

.skills-tags {
            display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    row-gap: 1rem;
}

.skill-tag {
    background-color: var(--soft-lavender);
    color: var(--deep-lavender);
    font-family: var(--font-body);
            font-size: 14px;
            font-weight: 400;
    padding: 8px 10px;
    border-radius: 20px;
            line-height: 1;
    text-transform: uppercase;
        }

/* Responsive */
        @media (max-width: 1024px) {
    .hero-wrapper {
        flex-direction: column-reverse;
            text-align: center;
    }
    
    .hero-content {
            align-items: center;
    }
    
    .hero-image-container {
            justify-content: center;
            }


    .creative-grid {
            flex-direction: column;
        }

        .footer-content {
            flex-direction: column;
        gap: 40px;
    }
    
    .contact-info-section {
            justify-content: center;
            }
        }

        @media (max-width: 768px) {
            .container {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 12px;
        padding: 0 20px;
    }

            .header {
        padding: 0;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        background-color: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .header.hide {
        transform: translateY(-100%);
    }

    .header-content {
        padding: 15px 20px;
                max-width: 100%;
        width: 100%;
        justify-content: space-between;
    }

    .logo-container {
        order: 1;
        justify-content: flex-start;
            margin: 0;
        }

        .menu-toggle {
                display: flex;
        z-index: 101;
        order: 2;
        margin: 0;
            }

            .nav {
        order: 3;
                position: fixed;
                top: 0;
                right: -100%;
        width: 100%;
                height: 100vh;
        background: var(--white);
                flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 30vh; /* Move menu items higher up */
                transition: right 0.3s ease;
        z-index: 100;
        touch-action: none;
        overscroll-behavior: none;
        -webkit-overflow-scrolling: touch;
            }

            .nav.active {
                right: 0;
            }
            
            .nav-link {
                font-size: 24px; /* Larger font for mobile menu */
            }

    .header {
        grid-column: 1 / -1;
    }

    .hero {
        grid-column: 1 / -1;
        padding: 40px 0;
    }

    .hero-text {
        grid-column: 1 / -1;
        padding: 0 20px;
    }

    .hero-text h1 {
        font-size: 28px;
        white-space: normal;
                width: 100%;
        word-wrap: break-word;
    }

    @media (max-width: 375px) {
        .hero-text h1 {
                font-size: 24px;
            }
    }

    .hero-text .tagline {
            font-size: 18px;
        }

    .hero-actions {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 12px;
        margin-top: 0; /* Remove desktop margin-top on mobile */
    }

        .hero-actions .btn {
            grid-column: span 3;
        }

    .projects-section, .creative-voice-section {
        grid-column: 1 / -1;
        padding: 40px 0;
        }

        .section-header {
        grid-column: 1 / -1;
    }

    .projects-list {
        grid-column: 1 / -1;
            gap: 20px;
        }

    .section-title,
    .section-header h2,
    .section-header .section-title {
            font-size: 28px;
            }

    .project-card.horizontal {
            flex-direction: column;
        height: auto;
    }
    
    .project-card.horizontal .project-image {
        order: -1;
        padding: 0;
        height: 450px !important;
        width: 100%;
        flex: none !important;
            flex-shrink: 0;
    }

    .project-card.horizontal .project-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        border-radius: var(--border-radius-large) var(--border-radius-large) 0 0;
    }

    .project-card.horizontal .project-info {
        order: 1;
        padding: 24px 20px;
        height: auto;
        min-height: auto;
        flex: 0 0 auto;
        justify-content: flex-start;
        gap: 16px;
        flex: 0 0 auto;
    }

    .project-info-content {
        gap: 12px;
    }

    .project-info-content h3 {
        font-size: 20px;
    }

    .project-description {
        font-size: 14px;
    }

    .project-info-actions {
        margin-top: 0;
            width: 100%;
    }

    .project-info-actions .btn {
        width: 100%;
        padding: 12px 26px;
            font-size: 16px;
    }

    .connect-text h2 {
                font-size: 36px;
            }

    .connect-text p {
                font-size: 20px;
        }

        .footer-content {
        padding: 0 30px;
        }

        .footer-bottom {
        padding: 0 30px;
    }

    .connect-section {
        width: 100%;
        gap: 36px;
    }

    .connect-section .btn {
            width: 100%;
        }

    .contact-info-section {
        flex-direction: row;
        align-items: flex-start;
        gap: 30px;
            width: 100%;
        justify-content: space-between;
    }

    .contact-column h3 {
        font-size: 16px;
    }

    .contact-column p, .contact-column a {
        font-size: 14px;
    }

    .about-hero-wrapper {
            flex-direction: column;
            gap: 0; /* Remove desktop gap: 4rem */
    }
    
    .about-hero-content {
        flex: 1; /* Remove desktop flex: 0 0 58% */
        max-width: 100%; /* Remove desktop max-width: 58% */
    }
    
    .about-hero-image-container {
        order: -1;
        flex: 1; /* Remove desktop flex: 0 0 42% */
        max-width: 100%; /* Remove desktop max-width: 42% */
    }

    .about-hero-title-new {
                font-size: 24px;
        line-height: 1.2;
    }

    .about-hero-description p {
        font-size: 16px;
        line-height: 1.5;
    }

    .about-hero-actions {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 12px;
        margin-top: 0; /* Remove desktop margin-top on mobile */
    }

        .about-hero-actions .btn {
            grid-column: span 3;
        }

        /* Restore more compact button padding on mobile */
        .hero-actions .btn,
        .about-hero-actions .btn,
        .connect-section .btn {
            padding: 12px 26px;
        }

    .about-hero-image-container {
                height: auto;
        min-height: 300px;
    }

    .hero-image-wrapper img {
        object-position: center 20%;
        transform: scale(1.1);
    }

    .about-hero-image-wrapper img {
        object-position: center 20%;
        transform: scale(1.1);
    }

    .about-trainings-skills {
                flex-direction: column;
    }

    .about-hero {
        grid-column: 1 / -1;
        padding: 20px 0 0; /* Override desktop padding: 60px 2rem 60px */
    }

    .about-experience {
        grid-column: 1 / -1;
        padding: 0;
    }

    .about-experience-header {
        margin-bottom: 20px;
    }

    .about-experience-subtitle {
        font-size: 16px;
    }

    .experience-list-new {
        padding: 0 0 20px 0;
        gap: 20px;
    }

    .experience-item-new {
                flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 0;
            }

    .experience-company-info {
                width: 100%;
    }

    .experience-company {
        font-size: 18px;
    }

    .experience-date {
        font-size: 16px;
    }

    .experience-job-title-new {
        font-size: 18px;
    }

    .experience-description {
        font-size: 16px;
    }

    .about-education-trainings {
        grid-column: 1 / -1;
        padding: 0;
    }

    .education-trainings-card {
        padding: 20px 0;
        gap: 20px;
    }

    .education-trainings-list {
        gap: 20px;
    }

    .education-training-item {
                flex-direction: column;
                align-items: flex-start;
        gap: 12px;
        padding: 0;
        margin-bottom: 0; /* Remove desktop margin-bottom on mobile */
    }

    .education-year {
                width: 100%;
    }

    .education-year p {
        font-size: 18px;
    }

    .education-name p {
        font-size: 18px;
    }

    .about-skills-section {
        grid-column: 1 / -1;
        padding: 0 0 32px;
        gap: 20px;
    }

    .skills-tags {
        gap: 10px;
    }

    .skill-tag {
        font-size: 14px;
        padding: 6px 10px;
    }

    .footer {
        grid-column: 1 / -1;
    }

    .about-trainings-skills {
        padding: 0 20px 60px;
    }

    .trainings-card,
    .skills-card {
        padding: 40px 30px;
    }
}
