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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #F7E9DE 0%, #FFFFFF 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    position: relative;
    z-index: 2;
    max-width: 1600px;
    margin: 0 auto;
    padding: 40px 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 900px;
}

.text-section {
    text-align: center;
    z-index: 3;
    position: relative;
}

.main-title {
    font-family: 'Playfair Display', serif;
    font-size: 96px;
    font-weight: 700;
    line-height: 1;
    color: #000000;
    margin-bottom: 30px;
}

.luxury {
    color: #D83E1C;
}

.subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: 300;
    color: #222222;
    line-height: 1.2;
    margin-bottom: 50px;
    opacity: 0.6;
}

.email-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 500px;
    margin: 0 auto;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#email {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 400;
    padding: 20px 30px;
    border: none;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.8);
    color: #000000;
    outline: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

#email::placeholder {
    color: #222222;
    opacity: 0.6;
}

#email:focus {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.cta-button {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #FFFFFF;
    background: #D83E1C;
    border: none;
    padding: 20px 40px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(216, 62, 28, 0.3);
}

.cta-button:hover {
    background: #c23519;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(216, 62, 28, 0.4);
}

.cta-button:active {
    transform: translateY(0);
}

.main-image {
    position: fixed;
    top: 0;
    right: 0;
    height: 60vh;
    width: auto;
    max-width: 35vw;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.secondary-image {
    position: fixed;
    bottom: 0;
    left: 0;
    height: 50vh;
    width: auto;
    max-width: 30vw;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    z-index: 1;
}

@media (max-width: 1024px) {
    .main-title {
        font-size: 72px;
    }
    
    .subtitle {
        font-size: 24px;
    }
    
    .main-image {
        max-width: 40vw;
        height: 50vh;
    }
    
    .secondary-image {
        max-width: 35vw;
        height: 40vh;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 20px;
    }
    
    .main-title {
        font-size: 48px;
    }
    
    .subtitle {
        font-size: 20px;
    }
    
    #email {
        font-size: 18px;
        padding: 16px 24px;
    }
    
    .cta-button {
        font-size: 18px;
        padding: 16px 32px;
    }
    
    .main-image {
        max-width: 45vw;
        height: 40vh;
    }
    
    .secondary-image {
        max-width: 40vw;
        height: 35vh;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 36px;
    }
    
    .subtitle {
        font-size: 18px;
        margin-bottom: 30px;
    }
    
    #email {
        font-size: 16px;
        padding: 14px 20px;
    }
    
    .cta-button {
        font-size: 16px;
        padding: 14px 24px;
    }
    
    .main-image {
        max-width: 50vw;
        height: 35vh;
    }
    
    .secondary-image {
        max-width: 45vw;
        height: 30vh;
    }
}