@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:wght@100,200,300,400;700&display=swap');

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

body {
    font-family: 'Gaegu', sans-serif;
    background: linear-gradient(to bottom, #fff, #f8f8f8);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Container */
.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 1200px;
    gap: 2rem;
    padding: 2rem;
    width: 80vh;
}

/* Header Styles */
.header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo h1 {
    font-family: 'Cedarville Cursive', cursive;
    font-size: 36px;
    color: #B03B3F;
    font-weight: 400;
}

.logo-text {
    text-decoration: none;
}

/* Navigation */
.navigation {
    display: flex;
    gap: 3.5rem;
    align-items: center;
}

.nav-link {
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-link:hover {
    transform: scale(1.1);
    font-weight: bold;
}

.nav-link-pink {
    color: #DC488A;
}

.nav-link-green {
    color: #129D00;
}

.nav-link-orange {
    color: #F8A523;
}

.divider {
    width: 100%;
    border: 0;
    /*border-top: 1px solid rgba(0, 0, 0, 0.1);*/
    margin: 0;
    align-self: center;
}

/* Content Styles */
.content {
    width: 100%;
    margin: 0 auto;
}

.content p {
    font-size: 1.25rem;
    color: rgba(0, 0, 0, 0.75);
    margin-bottom: 1.25rem;
    line-height: 1.35;
}

.content a {
    text-decoration: none;
    color: #000000;
    transition: all 0.3s ease;
}

/* Artwork Styles */
.artwork-w-caption {
    margin: 1.75rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    border-radius: 0.25rem;
    box-shadow:
        -1px -1px 2px rgba(0, 0, 0, 0.04),
        2px 2px 4px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    /*border: #fff solid 2px;*/
    padding: 0.125rem;
    padding-bottom: 0.6rem;
}

.artwork-wo-caption {
    margin: 1.75rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    border-radius: 0.25rem;
    box-shadow:
        -1px -1px 2px rgba(0, 0, 0, 0.04),
        2px 2px 4px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    border: #fff solid 2px;
}

.content-image {
    width: 100%;
    height: auto;
    border-radius: 0.25rem;
    transition: transform 0.3s ease;
}

.content-image-w-caption {
    width: 100%;
    height: auto;
    border-radius: 0.25rem 0.25rem 0.065rem 0.065rem;
    transition: transform 0.3s ease;
    display: block;
}

.artwork-w-caption:hover {
    transform: scale(1.01);
}

.artwork-wo-caption:hover {
    transform: scale(1.01);
}

.image-caption {
    font-family: sans-serif;
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.50);
    padding-left: 0.3rem;
    line-height: 1.5;
}

.artwork-w-caption p {
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 0;
}

.games-section a {
    text-decoration: none;
    color: #000000;
    transition: all 0.3s ease;
}

.games-section a:hover {
    transform: scale(1.5);
    font-weight: bold;
}

.footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    border-top: #00000020 1px solid;
    margin-top: 4rem;
    padding-top: 2rem;
    margin-bottom: 0.5rem;
    gap: 1.5rem;
}

.footer span {
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.50);
    line-height: 1.5;
}


/* Responsive Design */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        text-align: center;
    }

    .navigation {
        width: 100%;
        justify-content: center;
        gap: 20px;
    }

    .content {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 16px;
    }

    .logo h1 {
        font-size: 28px;
    }

    .navigation {
        gap: 15px;
    }

    .nav-link {
        font-size: 16px;
    }

    .content p {
        font-size: 18px;
    }
}