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

body {
    font-family: 'Mulish', sans-serif;
    background-color: #f8f8f8;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    display: flex;
    min-height: 100vh;
    align-items: center;
}

.content-section {
    flex: 1;
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 50%;
}

.main-title {
    font-family: 'Philosopher', serif;
    font-weight: 700;
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 40px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.message-box {
    background-color: #ffffff;
    border: 3px solid #c8a8e9;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.maintenance-message {
    font-family: 'Mulish', sans-serif;
    font-weight: 600;
    font-size: 24px;
    color: #2c3e50;
    line-height: 1.4;
    margin-bottom: 32px;
}

.contact-intro {
    font-family: 'Mulish', sans-serif;
    font-weight: 600;
    font-size: 24px;
    color: #2c3e50;
    line-height: 1.4;
    margin-bottom: 24px;
}

.social-icons {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
    align-items: center;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: #2c3e50;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.social-icon:hover {
    color: #8e44ad;
    transform: translateY(-2px);
}

.social-icon svg {
    width: 48px;
    height: 48px;
}

.email-contact {
    font-family: 'Mulish', sans-serif;
    font-weight: 600;
    font-size: 24px;
    color: #2c3e50;
    line-height: 1.4;
}

.email-link {
    color: #8e44ad;
    text-decoration: none;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: #732d91;
    text-decoration: underline;
}

.image-section {
    flex: 1;
    height: 100vh;
    overflow: hidden;
}

.kitchen-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        flex-direction: column;
    }
    
    .content-section {
        max-width: 100%;
        padding: 40px;
        order: 1;
    }
    
    .image-section {
        height: 50vh;
        order: 2;
    }
    
    .main-title {
        font-size: 32px;
        margin-bottom: 30px;
    }
    
    .maintenance-message,
    .contact-intro,
    .email-contact {
        font-size: 22px;
    }
    
    .message-box {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .content-section {
        padding: 30px 20px;
    }
    
    .main-title {
        font-size: 28px;
        margin-bottom: 25px;
    }
    
    .maintenance-message,
    .contact-intro,
    .email-contact {
        font-size: 20px;
    }
    
    .message-box {
        padding: 25px;
        border-radius: 12px;
    }
    
    .social-icons {
        gap: 15px;
        margin-bottom: 25px;
    }
    
    .social-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .content-section {
        padding: 20px 15px;
    }
    
    .main-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .maintenance-message,
    .contact-intro,
    .email-contact {
        font-size: 18px;
    }
    
    .message-box {
        padding: 20px;
        border-radius: 10px;
    }
    
    .social-icons {
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .social-icon svg {
        width: 36px;
        height: 36px;
    }
    
    .social-icon {
        width: 36px;
        height: 36px;
    }
}
