/**
 * Layout: COMING SOON
 * For placeholder/under construction pages
 * Centered content, minimal design
 */

/* Coming Soon Section */
.coming-soon {
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
    background: white;
}

/* Animated Background Blobs */
.blob {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: blobFloat 20s ease-in-out infinite;
    pointer-events: none;
}

.blob1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #FAE5E8 0%, #E8F5D6 100%);
    top: -100px;
    right: 10%;
}

.blob2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #E8F5D6 0%, #FAE5E8 100%);
    bottom: -50px;
    left: 15%;
    animation-delay: -10s;
}

@keyframes blobFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* Content Container */
.coming-soon-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 600px;
    animation: fadeInUp 0.8s ease;
}

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

/* Icon */
.coming-soon-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.coming-soon-icon svg {
    width: 100%;
    height: 100%;
}

/* Typography */
.coming-soon h1 {
    font-size: 48px;
    color: var(--coral);
    margin-bottom: 20px;
    font-family: var(--font-display);
    line-height: 1.2;
}

.coming-soon h2 {
    font-size: 32px;
    color: var(--coral);
    margin-bottom: 30px;
    font-weight: 600;
}

.coming-soon-text {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Action Buttons */
.coming-soon-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.coming-soon-actions .btn {
    font-size: 16px;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.coming-soon-actions .btn-primary {
    background: var(--coral);
    color: white;
    border: 2px solid var(--coral);
}

.coming-soon-actions .btn-primary:hover {
    background: var(--dark-coral);
    border-color: var(--dark-coral);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 113, 125, 0.3);
}

.coming-soon-actions .btn-outline {
    background: transparent;
    color: var(--coral);
    border: 2px solid var(--coral);
}

.coming-soon-actions .btn-outline:hover {
    background: var(--coral);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 113, 125, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .coming-soon {
        padding: 60px 20px;
        min-height: calc(100vh - 100px);
    }
    
    .coming-soon h1 {
        font-size: 36px;
    }
    
    .coming-soon h2 {
        font-size: 24px;
    }
    
    .coming-soon-text {
        font-size: 16px;
    }
    
    .coming-soon-icon {
        width: 100px;
        height: 100px;
    }
    
    .coming-soon-actions {
        flex-direction: column;
    }
    
    .coming-soon-actions .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .blob1,
    .blob2 {
        opacity: 0.05;
    }
}

@media (max-width: 480px) {
    .coming-soon h1 {
        font-size: 28px;
    }
    
    .coming-soon h2 {
        font-size: 20px;
    }
}
