/* Main Styles for Trivia Mail Under Construction Page */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: #333;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.construction-container {
    width: 100%;
    padding: 20px;
}

.construction-content {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 50px 30px;
    margin: 20px 0;
    transition: all 0.3s ease;
}

.construction-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

h1 {
    color: #3a7bd5;
    font-weight: 700;
    font-size: 3rem;
}

.slogan {
    color: #ff6b6b;
    font-style: italic;
    font-weight: 500;
}

.construction-icon {
    color: #3a7bd5;
    margin: 20px 0;
}

.under-construction-text h3 {
    color: #f39c12;
    margin-bottom: 15px;
    font-weight: 600;
}

.progress {
    height: 10px;
    border-radius: 5px;
}

.progress-bar {
    background-color: #3a7bd5;
}

.description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}

.contact-info {
    background-color: rgba(58, 123, 213, 0.1);
    padding: 15px;
    border-radius: 10px;
    margin: 20px 0;
}

.contact-info p {
    margin-bottom: 8px;
}

.contact-info i {
    color: #3a7bd5;
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.contact-info a {
    color: #3a7bd5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #ff6b6b;
    text-decoration: underline;
}

.contact-form-container {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form-container h3 {
    color: #3a7bd5;
    font-weight: 600;
}

.form-control {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 12px 15px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #3a7bd5;
    box-shadow: 0 0 0 0.2rem rgba(58, 123, 213, 0.25);
}

.btn-primary {
    background-color: #3a7bd5;
    border-color: #3a7bd5;
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #2a6ac0;
    border-color: #2a6ac0;
    transform: translateY(-2px);
}

.social-icons {
    margin-top: 30px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #3a7bd5;
    color: white;
    border-radius: 50%;
    margin: 0 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #ff6b6b;
    transform: translateY(-3px);
}

.alert {
    padding: 15px;
    border-radius: 5px;
    margin-top: 15px;
}

.alert-success {
    background-color: rgba(40, 167, 69, 0.2);
    border: 1px solid rgba(40, 167, 69, 0.3);
    color: #28a745;
}

.alert-danger {
    background-color: rgba(220, 53, 69, 0.2);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: #dc3545;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    .construction-content {
        padding: 30px 20px;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
        margin: 0 5px;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    .slogan {
        font-size: 1.3rem;
    }
    
    .description {
        font-size: 1rem;
    }
}
