/* General Styles */
body, html {
    height: 100%;
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: #333;
    background-color: #f8f9fe;
}

.container {
    max-width: 1200px;
    padding: 0 15px;
}

/* Header Styles */
.site-header {
    padding: 20px 0;
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.logo {
    font-weight: 600;
    font-size: 1.25rem;
    color: #333;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.logo:hover {
    color: #4361ee;
}

.logo-icon {
    color: #4361ee;
    margin-right: 8px;
    font-size: 1.1em;
}

/* Main Container Styles */
.main-container {
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
}

.coming-soon-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 60px 40px;
    max-width: 600px;
    width: 100%;
    position: relative;
    margin: 0 auto;
}

/* Notification Icon */
.notification-icon {
    width: 50px;
    height: 50px;
    background-color: #f0f4ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.notification-icon i {
    color: #4361ee;
    font-size: 20px;
}

/* Content Styles */
.card-content {
    text-align: center;
}

.title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.subtitle {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Subscribe Form Styles */
.subscribe-form {
    margin-bottom: 30px;
}

.input-group {
    display: flex;
    margin-bottom: 20px;
}

.form-control {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid #e1e5eb;
    border-radius: 6px 0 0 6px;
    font-size: 0.9rem;
    color: #333;
}

.form-control:focus {
    outline: none;
    border-color: #4361ee;
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.1);
}

.btn-primary {
    background-color: #4361ee;
    border-color: #4361ee;
    color: #fff;
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 0 6px 6px 0;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background-color: #3a56d4;
    border-color: #3a56d4;
}

/* Social Icons Styles */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icons a {
    color: #666;
    font-size: 1rem;
    transition: color 0.2s ease;
}

.social-icons a:hover {
    color: #4361ee;
}

/* Footer Styles */
.site-footer {
    background-color: #fff;
    padding: 20px 0;
    border-top: 1px solid #eaeaea;
}

.footer-logo {
    font-size: 1.1rem;
}

.copyright {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}

/* Error Styles */
.error-message {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 5px;
    text-align: left;
}

.form-control.is-invalid {
    border-color: #dc3545;
}

/* Success Message */
.success-message {
    display: none;
    background-color: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 6px;
    margin-top: 15px;
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .coming-soon-card {
        padding: 40px 20px;
    }
    
    .title {
        font-size: 1.75rem;
    }
    
    .subtitle {
        font-size: 0.9rem;
    }
    
    .copyright {
        margin-top: 10px;
    }
}

@media (max-width: 576px) {
    .coming-soon-card {
        padding: 40px 15px; /* Slightly reduced padding */
    }
    
    .input-group {
        /* Remove flex-direction: column to keep horizontal layout */
        flex-wrap: nowrap; /* Prevent wrapping */
        width: 100%; /* Ensure full width */
    }
    
    .form-control {
        flex: 1;
        min-width: 150px; /* Set a minimum width to prevent extreme shrinking */
        width: 100%; /* Ensure it takes available space */
        font-size: 0.85rem; /* Slightly smaller font for mobile */
    }
    
    .btn-primary {
        padding: 12px 15px; /* Smaller padding on button */
        font-size: 0.85rem;
        white-space: nowrap;
        flex-shrink: 0; /* Prevent button from shrinking */
    }
}