/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background: linear-gradient(135deg, #f8b195 0%, #f67280 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.content-box {
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    width: 100%;
    max-height: 650px;
    aspect-ratio: 3/2;
}

/* Left Content Section */
.info-section {
    padding: 35px 45px;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-y: auto;
}

h1 {
    font-size: 42px;
    color: #333;
    margin-bottom: 15px;
}

.tagline {
    font-size: 22px;
    color: #f67280;
    margin-bottom: 15px;
}

.description {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
}

h2 {
    font-size: 20px;
    color: #f67280;
    margin-bottom: 15px;
}

.features {
    list-style: none;
    margin-bottom: 30px;
}

.features li {
    margin-bottom: 12px;
    color: #666;
    font-size: 16px;
    display: flex;
    align-items: center;
}

#contact-btn {
    background-color: #f8b195;
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 16px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    transition: background-color 0.3s;
    align-self: flex-start;
    box-shadow: 0 3px 10px rgba(248, 177, 149, 0.3);
}

#contact-btn:hover {
    background-color: #f67280;
}

#contact-btn span {
    margin-left: 5px;
}

/* Right Image Section */
.image-section {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f8f8f8;
    padding: 15px;
    overflow: hidden;
}

.doll-image {
    max-width: 95%;
    max-height: 95%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Modal Dialog */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    max-width: 400px;
    width: 90%;
}

.modal-content p {
    color: #333;
    font-size: 18px;
    margin-bottom: 20px;
}

#modal-close-btn {
    background-color: #f67280;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#modal-close-btn:hover {
    background-color: #f8b195;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-box {
        flex-direction: column;
        max-height: none;
        aspect-ratio: auto;
    }
    
    .info-section {
        padding: 30px 35px;
        order: 2;
        width: 100%;
    }
    
    .image-section {
        order: 1;
        width: 100%;
        padding: 20px 20px 10px 20px;
    }
    
    .doll-image {
        max-height: 400px;
        max-width: 95%;
    }
    
    h1 {
        font-size: 36px;
    }
    
    .tagline {
        font-size: 20px;
    }
} 