/* Limited Editions Page Styles - Professional Art Studio Theme */

/* Main container with max-width for better readability */
.limited-editions-section {
    padding: 60px 20px;
    max-width: 800px;
    margin: 0 auto;
    background: transparent;
    border-radius: 0;
    margin-top: 20px;
    margin-bottom: 40px;
}

.limited-editions-content {
    display: block;
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
}

.limited-editions-text {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    border: none;
    max-width: 100%;
}

/* Typography - Professional and readable */
.page-heading {
    font-family: 'Playfair Display', serif;
    text-align: center;
    font-size: 3.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    position: relative;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border-radius: 2px;
}

/* Coming Soon Content */
.coming-soon-content {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.05) 0%, rgba(79, 172, 254, 0.05) 0.1);
    border-radius: 20px;
}

.coming-soon-icon {
    font-size: 4rem;
    color: #4facfe;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

.coming-soon-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.coming-soon-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info p {
    font-size: 1rem;
    line-height: 1.6;
    color: #2c3e50;
    margin-bottom: 10px;
}

.contact-info strong {
    color: #4facfe;
    font-weight: 600;
}

/* Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .limited-editions-section {
        padding: 40px 15px;
        margin-top: 15px;
    }
    
    .coming-soon-content {
        padding: 40px 20px;
    }
    
    .coming-soon-icon {
        font-size: 3rem;
    }
    
    .coming-soon-title {
        font-size: 2rem;
    }
    
    .coming-soon-description {
        font-size: 1rem;
    }
    
    .contact-info {
        padding: 20px;
        max-width: 400px;
    }
    
    .page-heading {
        font-size: 2rem;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .limited-editions-section {
        padding: 30px 10px;
        margin-top: 10px;
    }
    
    .coming-soon-content {
        padding: 30px 20px;
    }
    
    .coming-soon-icon {
        font-size: 2.5rem;
    }
    
    .coming-soon-title {
        font-size: 1.8rem;
    }
    
    .coming-soon-description {
        font-size: 1rem;
    }
    
    .contact-info {
        padding: 15px;
        max-width: 300px;
    }
}
