* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Times New Roman', Times, serif;
    font-style: italic;
    font-weight: bold;
    color: #DB4044;
    height: 100vh;
    overflow: hidden;
}

.container {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.left-section {
    position: fixed;
    left: 0;
    top: 0;
    width: 65%;
    height: 100vh;
    padding: 5px;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    z-index: 1;
}

.title {
    font-size: 14vw;
    line-height: 0.75;
    text-align: left;
    margin-bottom: 30px;
    letter-spacing: -0.06em;
}

.description {
    font-size: 1.1rem;
    text-align: left;
    line-height: 1.6;
    margin-bottom: 20px;
    width: 80%;
}

.credits {
    font-size: 1rem;
    text-align: left;
    margin-top: 10px;
}

.credits a {
    color: #DB4044;
    text-decoration: underline;
}

.credits a:hover {
    opacity: 0.7;
}

.right-section {
    position: fixed;
    right: 0;
    top: 0;
    width: 60%;
    height: 100vh;
    padding: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.image-carousel {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin-bottom: 30px;
}

.carousel-image {
    width: 100%;
    height: auto;
    display: none;
    position: relative;
}

.carousel-image.active {
    display: block;
}

.spiral-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.newsletter-container {
    display: flex;
    gap: 15px;
    align-items: center;
    position: relative;
}

.email-input {
    font-family: 'Times New Roman', Times, serif;
    font-style: italic;
    font-weight: bold;
    font-size: 1.2rem;
    padding: 15px 20px;
    border: 2px solid #DB4044;
    color: #DB4044;
    background-color: white;
    min-width: 250px;
}

.email-input::placeholder {
    color: #DB4044;
    opacity: 0.6;
}

.email-input:focus {
    outline: none;
    border-color: #DB4044;
}

.checkmark {
    display: none;
    font-size: 3rem;
    color: #DB4044;
    font-style: normal;
    position: absolute;
    right: 0;
}

.btn {
    background-color: #DB4044;
    color: white;
    font-family: 'Times New Roman', Times, serif;
    font-style: italic;
    font-weight: bold;
    font-size: 1.2rem;
    padding: 15px 30px;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.btn:hover {
    opacity: 0.8;
}

/* Hide mobile elements on desktop */
.mobile-only {
    display: none;
}

.desktop-only {
    display: block;
}

/* Mobile and Tablet Responsive Styles */
@media screen and (max-width: 1024px) {
    /* Show mobile, hide desktop */
    .mobile-only {
        display: block;
    }

    .desktop-only {
        display: none;
    }
    body {
        height: auto;
        overflow-y: auto;
        overflow-x: hidden;
    }

    .container {
        display: flex;
        flex-direction: column;
        height: auto;
        overflow: visible;
    }

    .left-section {
        position: static;
        width: 100%;
        height: auto;
        padding: 10px;
        order: 1;
    }

    .title {
        font-size: 20vw;
        line-height: 0.95;
        margin-bottom: 20px;
    }

    .description {
        width: 100%;
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .credits {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .right-section {
        position: static;
        width: 100%;
        height: auto;
        padding: 10px;
        order: 2;
    }

    .image-carousel {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .newsletter-container {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        margin-top: 20px;
    }

    .mobile-only.newsletter-container {
        display: flex;
    }

    .email-input {
        width: 100%;
        min-width: auto;
        font-size: 1rem;
        padding: 12px 15px;
    }

    .btn {
        width: 100%;
        font-size: 1rem;
        padding: 12px 20px;
    }

    .checkmark {
        position: static;
        margin-top: 10px;
    }
}
