/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Old Standard TT', serif;
    line-height: 1.6;
    min-height: 100vh;
    background-color: #111111;
    color: #fff;
    overflow: hidden;
}

.container {
    display: flex;
    width: 100%;
    height: 100vh;
    position: relative;
}

/* Left content section */
.content-section {
    width: 75%;
    display: flex;
    align-items: center;
    padding-left: 8%;
    position: relative;
    z-index: 2;
}

.text-content {
    max-width: 600px;
}

h1 {
    font-size: 6rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    font-weight: 400;
    letter-spacing: -0.02em;
}

/* Right image section */
.image-section {
    position: absolute;
    right: 0;
    top: 120px;
    width: 75%;
    height: calc(100vh - 120px);
    overflow: hidden;
    z-index: 1;
}

.image-container {
    width: 100%;
    height: 100%;
    position: relative;
    background: #111111;
}

.image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(17,17,17,0.8) 0%, rgba(17,17,17,0.6) 20%, rgba(17,17,17,0) 50%);
    z-index: 2;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .image-container::before {
        background: rgba(17,17,17,0.7);
    }
}

@media screen and (max-width: 768px) {
    .container {
        flex-direction: column;
    }
    
    .content-section {
        width: 100%;
        padding: 2rem;
        height: auto;
        min-height: 50vh;
        display: flex;
        align-items: flex-start;
        padding-top: 25vh;
    }
    
    .image-section {
        width: 100%;
        height: 100vh;
        position: fixed;
        top: 0;
        right: 0;
    }
    
    .image-container::before {
        background: rgba(17,17,17,0.5);
    }

    h1 {
        line-height: 0.9;
    }
}

@media screen and (max-width: 480px) {
    .content-section {
        padding: 1.5rem;
        padding-top: 25vh;
    }
    
    h1 {
        font-size: 4.6rem;
        line-height: 1;
    }
} 