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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background-color: #FDEDE6;
}

/* Container */
.container {
    display: flex;
    min-height: 100vh;
}

/* Left Column - Image */
.image-column {
    flex: 1;
    position: relative;
}

.image-container {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    border-radius: 0 0 24px 0;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    width: auto;
    height: auto;
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    border-radius: 8px;
    background: white;
    padding: 20px 20px 60px 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Right Column - Content */
.content-column {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Social Icons */
.social-icons {
    position: absolute;
    top: 32px;
    right: 32px;
    display: flex;
    gap: 16px;
    z-index: 10;
}

.social-icon {
    color: #666;
    font-size: 20px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #333;
}

/* Main Content */
.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    max-width: 500px;
}

.headline {
    font-size: 3.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 24px;
    line-height: 1.1;
}

.subtext {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Email Form */
.email-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 60px;
}

.email-input {
    padding: 16px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    background: white;
    transition: border-color 0.3s ease;
}

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

.email-input::placeholder {
    color: #999;
}

.signup-button {
    padding: 16px 32px;
    background: transparent;
    border: 2px solid #ff6b35;
    border-radius: 12px;
    color: #ff6b35;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
}

.signup-button:hover {
    background: #ff6b35;
    color: white;
}

/* Info Blocks */
.info-blocks {
    display: flex;
    gap: 40px;
}

.info-block h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.info-block p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }
    
    .image-column {
        flex: none;
        height: 50vh;
    }
    
    .image-container {
        height: 50vh;
        border-radius: 0 0 16px 16px;
        padding: 20px;
    }
    
    .content-column {
        flex: 1;
    }
    
    .content {
        padding: 40px 24px;
        max-width: none;
    }
    
    .headline {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .subtext {
        font-size: 1rem;
        margin-bottom: 32px;
    }
    
    .email-form {
        margin-bottom: 40px;
    }
    
    .info-blocks {
        flex-direction: column;
        gap: 24px;
    }
    
    .social-icons {
        top: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .content {
        padding: 32px 20px;
    }
    
    .headline {
        font-size: 2rem;
    }
    
    .subtext {
        font-size: 0.95rem;
    }
    
    .email-input,
    .signup-button {
        padding: 14px 16px;
    }
}

/* Second Section Responsive */
@media (max-width: 768px) {
    .second-section {
        padding: 60px 0;
    }
    
    .second-content {
        flex-direction: column;
        gap: 40px;
        padding: 0 24px;
    }
    
    .second-text {
        max-width: none;
        text-align: center;
    }
    
    .second-headline {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .second-subtext {
        font-size: 1rem;
        margin-bottom: 32px;
    }
    
    .second-photo {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .second-section {
        padding: 40px 0;
    }
    
    .second-content {
        padding: 0 20px;
    }
    
    .second-headline {
        font-size: 2rem;
    }
    
    .second-subtext {
        font-size: 0.95rem;
    }
    
    .learn-more-button {
        padding: 14px 24px;
    }
}

/* Third Section - Banner */
.banner-section {
    width: 100%;
    position: relative;
}

.banner-image {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    position: relative;
    overflow: hidden;
}

.banner-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 40px;
}

.banner-headline {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.banner-subtext {
    font-size: 1.3rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Banner Responsive */
@media (max-width: 768px) {
    .banner-headline {
        font-size: 2.5rem;
        margin-bottom: 16px;
    }
    
    .banner-subtext {
        font-size: 1.1rem;
    }
    
    .banner-content {
        padding: 0 24px;
    }
}

@media (max-width: 480px) {
    .banner-headline {
        font-size: 2rem;
    }
    
    .banner-subtext {
        font-size: 1rem;
    }
    
    .banner-content {
        padding: 0 20px;
    }
}

/* Second Section */
.second-section {
    background-color: white;
    padding: 80px 0;
}

.second-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 0 60px;
}

.second-text {
    flex: 1;
    max-width: 500px;
}

.second-headline {
    font-size: 3.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 24px;
    line-height: 1.1;
}

.second-subtext {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.learn-more-button {
    padding: 16px 32px;
    background: #333;
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.learn-more-button:hover {
    background: #555;
}

.second-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.second-photo {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content > * {
    animation: fadeInUp 0.6s ease forwards;
}

.content > *:nth-child(1) { animation-delay: 0.1s; }
.content > *:nth-child(2) { animation-delay: 0.2s; }
.content > *:nth-child(3) { animation-delay: 0.3s; }
.content > *:nth-child(4) { animation-delay: 0.4s; } 