/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    margin: 5px;
    padding: 5px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a2e;
    background-color: #364BA8;
    overflow-x: hidden;
}

.container {
    height: calc(100vh - 20px);
    position: relative;
}

/* Left Column Styles */
.left-column {
    background-color: #F2EFE9;
    padding: 30px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-height: 100%;
    box-sizing: border-box;
    width: 100%;
}

.main-header {
    margin-bottom: 150px;
}

.sub-headline {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #0066FF;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.main-headline {
    font-size: 64px;
    font-weight: 500;
    color: #0066FF;
    line-height: 64px;
    letter-spacing: -3px;
}

.content-section {
    display: grid;
    grid-template-columns: .5fr 1fr 1fr;
    gap: 10px;
    margin-top: auto;
    margin-bottom: 20px;
    position: relative;
    align-items: start;
}

.section-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.past-list,
.projects-list {
    list-style: none;
}

.past-list li {
    font-size: 14px;
    color: #1a1a2e;
    margin-bottom: 12px;
    line-height: 1.6;
}

.project-link {
    font-size: 14px;
    color: #1a1a2e;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.project-link:hover {
    color: #2563eb;
}

.projects-list li {
    margin-bottom: 12px;
}

.main-footer {
    margin-top: auto;
    padding-top: 20px;
    padding-bottom: 50px;
}

.footer-nav {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-link {
    font-size: 14px;
    color: #364BA8;
    text-decoration: underline;
    transition: color 0.3s ease;
    font-family: 'Geist Mono',Geist, sans-serif;
}

.footer-link:hover {
    color: #2563eb;
}


/* Right Column Styles */
.right-column {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    box-sizing: border-box;
    position: relative;
}

.image-carousel {
    width: 100%;
    height: 350px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.carousel-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: none;
    border-radius: 8px;
}

.carousel-image.active {
    display: block;
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        height: auto;
        min-height: calc(100vh - 20px);
    }

    .left-column {
        padding: 40px 50px;
        height: auto;
        min-height: 100%;
        width: 100%;
    }

    .content-section {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 0;
        margin-bottom: 40px;
    }

    .right-column {
        display: none;
    }
}

@media (max-width: 768px) {
    html, body {
        height: auto;
        min-height: 100%;
    }

    .container {
        height: auto;
        min-height: 100vh;
    }

    .left-column {
        padding: 30px 30px;
        height: auto;
        min-height: 100vh;
        justify-content: flex-start;
        width: 100%;
    }

    .right-column {
        display: none;
    }

    .main-header {
        margin-bottom: 50px;
    }

    .main-headline {
        font-size: 36px;
    }

    .footer-nav {
        gap: 20px;
    }

    .content-section {
        grid-template-columns: 1fr;
        margin-top: 0;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .left-column {
        padding: 20px 20px;
        min-height: 100vh;
    }

    .main-headline {
        font-size: 28px;
    }

    .sub-headline {
        font-size: 10px;
    }
}

