/* Artwork Page Styles - Following main style.css design system */

/* Import design tokens from main style */
:root {
    --white: #ffffff;
    --black: #111111;
    --red: #D91A21;
    --light: #f9f9f9;
}

/* Smooth Scroll */
html.lenis {
    height: auto;
}

.lenis-smooth {
    scroll-behavior: auto !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--white);
    color: var(--black);
    line-height: 1.4;
    overflow-x: hidden;
}

/* Navigation - Consistent with main site */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logomascot {
    height: 3rem;
    transition: transform 0.4s ease, filter 0.4s ease;
    filter: drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.1));
}

.logotype {
    transition: opacity 0.5s ease, transform 0.5s ease;
    opacity: 1;
    height: 3rem;
}

.mascot-eye {
    transform-origin: center;
    transform-box: fill-box;
    animation: blink-animation 4s infinite;
}

@keyframes blink-animation {

    0%,
    90%,
    100% {
        transform: scaleY(1);
        opacity: 1;
    }

    94% {
        transform: scaleY(0.05);
    }
}

@media (min-width: 768px) {
    nav {
        padding: 25px 5%;
    }

    .logotype,
    .logomascot {
        height: 50px;
    }
}

@media (min-width: 1024px) {

    .logotype,
    .logomascot {
        height: 60px;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    overflow: hidden;
}

.hero img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero .overlay {
    position: relative;
    z-index: 2;
    padding: 40px 5%;
    color: var(--white);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
    width: 100%;
}

.hero h1 {
    font-size: clamp(2.5rem, 10vw, 6rem);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 0.9;
    letter-spacing: -2px;
    margin-bottom: 15px;
}

.hero p {
    font-size: clamp(0.8rem, 2vw, 1.2rem);
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
}

@media (min-width: 768px) {
    .hero {
        min-height: 80vh;
        height: 80vh;
    }

    .hero .overlay {
        padding: 60px 8%;
    }

    .hero h1 {
        letter-spacing: -3px;
    }

    .hero p {
        letter-spacing: 5px;
    }
}

@media (min-width: 1024px) {
    .hero {
        min-height: 100vh;
        height: 100vh;
    }

    .hero .overlay {
        padding: 80px 10%;
    }

    .hero h1 {
        letter-spacing: -5px;
    }

    .hero p {
        letter-spacing: 8px;
    }
}

/* Info Section */
.info {
    padding: 60px 5%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: flex-start;
}

.info .left h2 {
    font-size: clamp(2rem, 6vw, 2.5rem);
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 900;
}

.info .left p {
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    color: #444;
    line-height: 1.7;
}

.info .right ul {
    list-style: none;
    padding: 0;
}

.info .right li {
    font-size: clamp(0.9rem, 2vw, 1rem);
    padding: 12px 0;
    border-bottom: 1px solid #ddd;
}

.info .right li:last-child {
    border-bottom: none;
}

.info .right li strong {
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    margin-right: 10px;
    color: var(--black);
}

.info .right li span {
    color: #666;
}

@media (min-width: 768px) {
    .info {
        grid-template-columns: 1.5fr 1fr;
        gap: 60px;
        padding: 80px 8%;
    }

    .info .right li {
        padding: 15px 0;
    }
}

@media (min-width: 1024px) {
    .info {
        grid-template-columns: 2fr 1fr;
        gap: 80px;
        padding: 100px 10%;
    }
}

/* Gallery Section */
.gallery {
    padding: 40px 5%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.gallery img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery img:hover {
    transform: scale(0.98);
}

@media (min-width: 640px) {
    .gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        padding: 50px 5%;
    }
}

@media (min-width: 768px) {
    .gallery {
        padding: 60px 8%;
        gap: 30px;
    }
}

@media (min-width: 1024px) {
    .gallery {
        padding: 80px 10%;
        gap: 40px;
    }
}

/* Process Section */
.process {
    padding: 40px 5%;
    background: var(--light);
}

.process::before {
    content: "Process";
    display: block;
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.process img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 4px;
    display: block;
}

.process img:last-child {
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .process {
        padding: 60px 8%;
    }

    .process::before {
        margin-bottom: 40px;
    }

    .process img {
        margin-bottom: 30px;
    }
}

@media (min-width: 1024px) {
    .process {
        padding: 80px 10%;
    }

    .process::before {
        margin-bottom: 50px;
    }

    .process img {
        margin-bottom: 40px;
    }
}

/* Credits Section */
.credits {
    padding: 60px 5%;
    border-top: 1px solid #ddd;
}

.credits::before {
    content: "Credits";
    display: block;
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.credits p {
    font-size: clamp(0.9rem, 2vw, 1rem);
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.credits p:last-child {
    border-bottom: none;
}

.credits strong {
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    margin-right: 10px;
    color: var(--black);
}

@media (min-width: 768px) {
    .credits {
        padding: 80px 8%;
    }

    .credits::before {
        margin-bottom: 40px;
    }

    .credits p {
        padding: 15px 0;
    }
}

@media (min-width: 1024px) {
    .credits {
        padding: 100px 10%;
    }

    .credits::before {
        margin-bottom: 50px;
    }
}