body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.studio-section {
    flex-grow: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    box-sizing: border-box;
    overflow: hidden;
    background-color: #e6c7a9;
}

.studio-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-color: #ffffff;
    z-index: 1;
}

.content-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    align-items: center;
    min-width: 600px;
    max-width: 1100px;
    width: 100%;
    margin-top: -15%;
    
}

.image-wrapper.left {
    grid-column: 1 / span 5;
    grid-row: 1;
}

.image-wrapper.right {
    grid-column: 8 / span 12;
    grid-row: 1;
}

.text-wrapper {
    grid-column: 5 / span 4;
    grid-row: 1;
    background-color: #111111;
    color: #ffffff;
    padding: 60px 40px;
    z-index: 3;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    object-fit: cover;
    max-width: 100%;
    height: auto;
}


.image-wrapper img {
    width: 100%;
    display: block;
}

.text-wrapper h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    margin: 0 0 20px 0;
    line-height: 1.1;
}

.text-wrapper p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 5%;
    width: 50%;
    height: 65%;
}

.image-credit {
    display: block;
    color: #fff;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 25px;
    text-decoration: underline;
}

.cta-button {
    display: inline-block;
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 12px 30px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-top: 30px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #ffffff;
    color: #111111;
}

.logo {
    width: 200%;
    margin-left: -40%;
    z-index: 999;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #f5e9de;
    color: #111111;
    font-size: 0.9rem;
    width: 100%;
    box-sizing: border-box;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 1000;
}

.image-left,
.image-right {
    width: 50%;
    height: 65%;
    border-radius: 14px;
    object-fit: cover;
    max-width: 100%;
    box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.25),
    0 8px 20px rgba(0, 0, 0, 0.25);
}