/* Coming Soon Page Styles */

/* Hero Section for Coming Soon */
.coming-soon-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
}

.coming-soon-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1523240798131-1cda3f934048?w=1200&h=800&fit=crop') center/cover;
    z-index: 1;
}

.coming-soon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2;
}

.coming-soon-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                      radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    z-index: 3;
}

.coming-soon-content {
    position: relative;
    z-index: 4;
    color: white;
    padding: 2rem 0;
}

/* Logo Section */
.coming-soon-logo {
    margin-bottom: 3rem;
}

.coming-soon-logo img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.coming-soon-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Message Section */
.coming-soon-message {
    margin-bottom: 3rem;
}

.main-heading {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.sub-heading {
    font-size: 1.3rem;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Countdown Section */
.countdown-section {
    margin-bottom: 3rem;
}

.countdown-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: white;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.countdown-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 120px;
    transition: all 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.countdown-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ffd700;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.countdown-label {
    font-size: 1rem;
    font-weight: 500;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Newsletter Section */
.newsletter-section {
    margin-bottom: 3rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.newsletter-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form .input-group {
    max-width: 500px;
    margin: 0 auto 1.5rem;
}

.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50px 0 0 50px;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    color: #333;
}

.newsletter-form .form-control:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25);
    background: white;
}

.newsletter-form .btn {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    border: none;
    border-radius: 0 50px 50px 0;
    padding: 1rem 2rem;
    font-weight: 600;
    color: #333;
    transition: all 0.3s ease;
}

.newsletter-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    color: #333;
}

.newsletter-form .form-check-label {
    color: white;
    font-size: 0.9rem;
    opacity: 0.9;
}

.newsletter-form .form-check-input:checked {
    background-color: #ffd700;
    border-color: #ffd700;
}

/* Progress Section */
.progress-section {
    margin-bottom: 3rem;
}

.progress-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}

.progress-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.progress {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    height: 30px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.progress-bar {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    border-radius: 25px;
    position: relative;
    transition: width 1s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.progress-text {
    color: #333;
    font-weight: 600;
    font-size: 0.9rem;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

/* Social Section */
.social-section {
    margin-bottom: 2rem;
}

.social-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-link {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    color: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Contact Section */
.contact-section {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item:hover {
    color: #ffd700;
    transform: translateY(-2px);
}

.contact-item i {
    font-size: 1.2rem;
    width: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-heading {
        font-size: 2.5rem;
    }
    
    .sub-heading {
        font-size: 1.1rem;
    }
    
    .countdown-timer {
        gap: 1rem;
    }
    
    .countdown-item {
        min-width: 100px;
        padding: 1.5rem 1rem;
    }
    
    .countdown-number {
        font-size: 2.5rem;
    }
    
    .newsletter-section {
        padding: 2rem 1.5rem;
    }
    
    .newsletter-form .input-group {
        flex-direction: column;
    }
    
    .newsletter-form .form-control {
        border-radius: 25px;
        margin-bottom: 1rem;
    }
    
    .newsletter-form .btn {
        border-radius: 25px;
        width: 100%;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .main-heading {
        font-size: 2rem;
    }
    
    .coming-soon-title {
        font-size: 2rem;
    }
    
    .countdown-item {
        min-width: 80px;
        padding: 1rem 0.5rem;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .countdown-label {
        font-size: 0.8rem;
    }
    
    .newsletter-section {
        padding: 1.5rem 1rem;
    }
    
    .social-links {
        gap: 1rem;
    }
    
    .social-link {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Newsletter Form Alert Styles */
.newsletter-form .alert {
    border-radius: 10px;
    border: none;
    padding: 1rem 1.5rem;
    margin-top: 1rem;
    font-weight: 500;
}

.newsletter-form .alert-success {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border-left: 4px solid #28a745;
}

.newsletter-form .alert-danger {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border-left: 4px solid #dc3545;
}

.newsletter-form .btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.newsletter-form .btn:disabled:hover {
    transform: none;
    box-shadow: none;
}

/* Checkbox Alignment Fix */
.newsletter-form .form-check {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-form .form-check-input {
    margin-top: 0.125rem;
    margin-right: 0;
    flex-shrink: 0;
}

.newsletter-form .form-check-label {
    margin-bottom: 0;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    cursor: pointer;
}

.newsletter-form .form-check-input:checked {
    background-color: var(--primary-gold);
    border-color: var(--primary-gold);
}

.newsletter-form .form-check-input:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
    border-color: var(--primary-gold);
}

/* Mobile Responsive Checkbox */
@media (max-width: 768px) {
    .newsletter-form .form-check {
        gap: 0.75rem;
    }
    
    .newsletter-form .form-check-label {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .newsletter-form .form-check-input {
        width: 18px;
        height: 18px;
        margin-top: 0.1rem;
    }
}
