/**
 * Coming Soon Page Styles
 */

 .coming-soon-page {
    min-height: 70vh; /* Takes up most of the screen */
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fdfbf7 0%, #f4f1ea 100%); /* Warm paper tone */
    padding: 80px 20px;
    text-align: center;
}

.coming-soon-container {
    max-width: 600px;
    width: 100%;
    background: #ffffff;
    padding: 60px 40px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(45, 27, 61, 0.08); /* Subtle purple shadow */
    border: 1px solid rgba(122, 62, 163, 0.1);
}

.coming-soon-icon {
    color: #7A3EA3; /* TPPL Purple */
    margin-bottom: 32px;
    animation: pulse 3s infinite ease-in-out;
}

.coming-soon-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 16px;
    line-height: 1.1;
}

.coming-soon-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    color: #7A3EA3;
    font-weight: 500;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.coming-soon-message {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 40px;
}

.coming-soon-actions .btn-primary {
    display: inline-block;
    background: #7A3EA3;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(122, 62, 163, 0.3);
}

.coming-soon-actions .btn-primary:hover {
    background: #5A5FA3;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(122, 62, 163, 0.4);
}

@keyframes pulse {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(0.95); }
    100% { opacity: 1; transform: scale(1); }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .coming-soon-container {
        padding: 40px 24px;
    }
    .coming-soon-title {
        font-size: 2.25rem;
    }
}