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

:root {
    --beige-light: #E5DCD3;
    --beige-medium: #D4C9BE;
    --beige-dark: #C4B8AD;
    --gray-blue: #B8C0C8;
    --text-dark: #3A3230;
    --text-medium: #6B6562;
    --white: #FFFFFF;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--beige-light);
}

h1, h2 {
    font-family: 'Didot', 'Playfair Display', Georgia, serif;
    font-weight: 300;
    letter-spacing: 0.02em;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    height: 100vh;
    background: linear-gradient(to right, #545c5b 0%, #545c5b 20%, #a0aab6 100%);
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.placeholder-hero {
    width: 100%;
    height: 100%;
    background: var(--beige-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-hero::before {
    content: 'Add Hero Image';
    color: var(--text-medium);
    font-size: 1.2rem;
}

.hero-text {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    z-index: 10;
}

.hero-text h1 {
    font-size: 9rem;
    line-height: 1.1;
    color: var(--text-dark);
    text-align: left;
}

/* Work With Me Section */
.work-with-me {
    position: relative;
    min-height: 100vh;
    height: 100vh;
}

.work-with-me::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/about.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.work-text {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 50%;
    z-index: 1;
    padding: 3rem;
    background: transparent;
    color: #000000;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.work-text h2 {
    display: none;
}

.work-text p {
    margin-bottom: 1.5rem;
    font-size: 1.47rem;
    line-height: 1.8;
    color: #000000;
    text-shadow: none;
}

.container-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}


/* Exhibition Section */
.exhibition {
    background-color: #eeddd6;
    padding: 6rem 2rem;
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.exhibition h2 {
    font-size: 3.33rem;
    margin-bottom: 4rem;
    letter-spacing: 0.15em;
    font-weight: 400;
}

.exhibition-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.exhibition-item {
    aspect-ratio: 1;
    width: 100%;
}

.exhibition-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: transparent;
}

/* Photo Gallery */
.photo-gallery {
    background-color: #eeddd6;
    padding: 4rem 2rem;
    position: relative;
    z-index: 0;
    clear: both;
    overflow: hidden;
}

.gallery-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1400px;
    height: 500px;
    margin: 0 auto 2rem;
    position: relative;
}

.gallery-item-large {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-item-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.gallery-grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    height: 350px;
    margin: 0 auto;
    position: relative;
}

.gallery-item-small {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-item-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

/* Story Sections */
.story-section {
    background-color: #eeddd6;
    padding: 4rem 2rem;
}

.story-grid-4col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto 2rem;
}

.story-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 700px;
    margin: 0 auto;
}

.story-item {
    aspect-ratio: 3/4;
}

.story-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.story-section-alt {
    display: none;
}

.container-split-reverse {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.story-text {
    padding: 2rem;
    display: flex;
    align-items: center;
}

.story-content {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-medium);
}


/* Contact Section */
.contact {
    background-color: #eeddd6;
    padding: 6rem 2rem;
}

.contact-left {
    display: flex;
    flex-direction: column;
}

.contact-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    margin-top: 0;
    letter-spacing: 0.15em;
    font-weight: 400;
}

.contact-intro {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    margin-top: 0;
    color: var(--text-medium);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
    padding: 0.5rem 0;
}

.social-link:hover {
    color: var(--text-medium);
}

.social-link i {
    font-size: 1.5rem;
    width: 30px;
}

.contact-image {
    position: relative;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

/* Placeholder Styling */
.placeholder-img {
    width: 100%;
    height: 100%;
    background: var(--beige-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.placeholder-img::before {
    content: 'Add Image';
    color: var(--text-medium);
    font-size: 1rem;
    letter-spacing: 0.1em;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-text h1 {
        font-size: 5rem;
    }

    .work-text {
        width: 60%;
        height: 60%;
        padding: 2rem;
    }

    .work-text p {
        font-size: 1.2rem;
    }

    .container-split,
    .container-split-reverse,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .exhibition-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .exhibition h2 {
        font-size: 2.5rem;
    }

    .gallery-grid-2col,
    .final-gallery {
        grid-template-columns: 1fr;
    }

    .story-grid-4col {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-text {
        right: 5%;
        left: auto;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .work-text {
        width: 80%;
        height: auto;
        max-height: 70%;
        padding: 1.5rem;
        overflow-y: auto;
    }

    .work-text p {
        font-size: 1rem;
        color: #FFFFFF;
    }

    .exhibition h2 {
        font-size: 2rem;
    }

    .contact-left h2 {
        font-size: 2rem;
    }

    .exhibition-grid,
    .gallery-grid-3col,
    .gallery-grid-2col {
        grid-template-columns: 1fr;
        height: auto;
    }

    .gallery-item-small,
    .gallery-item-large {
        aspect-ratio: 3/4;
        height: auto;
    }

    .story-grid-4col {
        grid-template-columns: 1fr;
    }

    .story-grid-2col {
        grid-template-columns: 1fr;
        max-width: 1400px;
    }
}

@media (max-width: 480px) {
    .hero-text {
        right: 5%;
        left: auto;
        text-align: right;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .work-text {
        width: 90%;
        height: auto;
        max-height: 60%;
        padding: 1rem;
        top: 5%;
        right: 5%;
    }

    .work-text p {
        font-size: 0.9rem;
        color: #FFFFFF;
    }

    .exhibition h2 {
        font-size: 1.5rem;
    }

    .contact-left h2 {
        font-size: 1.5rem;
    }

    .gallery-grid-3col,
    .gallery-grid-2col {
        height: auto;
    }

    .gallery-item-small,
    .gallery-item-large {
        aspect-ratio: 3/4;
        height: auto;
    }

    .story-grid-2col {
        grid-template-columns: 1fr;
    }
}
