/* ============================================
   COMING SOON PAGE STYLES
   ============================================ */

/* Coming Soon Page - Italian Vibe Colors */
.coming-soon-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #C41E3A 0%, #B91C1C 50%, #8B1538 100%);
    position: relative;
    overflow: hidden;
    padding: 2rem;
}

.coming-soon-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(107, 142, 35, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.coming-soon-container {
    max-width: 700px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 1;
}

.coming-soon-card {
    background: rgba(255, 248, 231, 0.98);
    border-radius: 24px;
    padding: 4rem 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(10px);
}

.pizza-icon {
    font-size: 6rem;
    color: #C41E3A;
    margin-bottom: 1.5rem;
    animation: rotate 20s linear infinite;
    display: inline-block;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.coming-soon-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #8B1538;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    line-height: 1.2;
}

.coming-soon-subtitle {
    font-size: 1.5rem;
    color: #6B8E23;
    margin-bottom: 2rem;
    font-weight: 600;
}

.coming-soon-message {
    font-size: 1.2rem;
    color: #2C2C2C;
    line-height: 1.8;
    margin-top: 2rem;
    margin-bottom: 2.5rem;
    padding: 0 1rem;
}

.coming-soon-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 0;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.feature-icon {
    font-size: 2rem;
    color: #C41E3A;
    margin-bottom: 0.5rem;
}

.feature-text {
    font-size: 0.95rem;
    color: #555;
    font-weight: 500;
}

.italian-flag-decoration {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 2rem auto;
}

.coming-soon-message + .italian-flag-decoration {
    margin-top: 0;
    margin-bottom: 2.5rem;
}

.flag-stripe {
    width: 30px;
    height: 8px;
    border-radius: 2px;
}

.flag-stripe.green {
    background: #6B8E23;
}

.flag-stripe.white {
    background: #FFF8E7;
}

.flag-stripe.red {
    background: #C41E3A;
}

.coming-soon-wrapper .logo-container {
    margin-bottom: 2rem;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.coming-soon-wrapper .logo-container:hover {
    opacity: 0.8;
}

.coming-soon-wrapper .logo-container img {
    max-width: 346px;
    max-height: 259px;
    object-fit: contain;
}

.coming-soon-wrapper a .coming-soon-title {
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.coming-soon-wrapper a:hover .coming-soon-title {
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .coming-soon-card {
        padding: 3rem 2rem;
    }

    .coming-soon-title {
        font-size: 2.5rem;
    }

    .coming-soon-subtitle {
        font-size: 1.2rem;
    }

    .coming-soon-message {
        font-size: 1rem;
    }

    .pizza-icon {
        font-size: 4rem;
    }

    .coming-soon-features {
        gap: 1.5rem;
    }
}

/* Language Switcher */
.coming-soon-language-switcher {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(212, 175, 55, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.language-label {
    font-size: 1rem;
    color: #555;
    font-weight: 600;
}

.language-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.language-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    color: #2C2C2C;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.language-option:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.language-option.active {
    background: rgba(107, 142, 35, 0.2);
    border-color: #6B8E23;
    color: #6B8E23;
    font-weight: 600;
}

.flag-icon-small {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    display: inline-block;
}

@media (max-width: 768px) {
    .coming-soon-language-switcher {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }

    .language-option {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .flag-icon-small {
        width: 20px;
        height: 20px;
    }
}

