/* Custom CSS for DIYLegal Coming Soon Page */

* {
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* Hero Section with Background */
.hero-section {
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.9), rgba(108, 117, 125, 0.8)), 
                url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.hero-content h1 {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content .lead {
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Form Container Styling */
.form-container {
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    max-width: 500px;
    margin: 0 auto;
}

/* Form Styling */
.form-control, .form-select {
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    padding: 12px 16px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.15);
}

/* Button Styling */
.btn-primary {
    background: linear-gradient(45deg, #0d6efd, #6610f2);
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #0b5ed7, #520dc2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
}

/* Feature Cards */
.feature-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
}

.feature-icon i {
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon i {
    transform: scale(1.1);
}

/* Alert Styling */
.alert {
    border-radius: 8px;
    border: none;
}

.alert-success {
    background: linear-gradient(45deg, #d1e7dd, #a3cfbb);
    color: #0f5132;
}

.alert-danger {
    background: linear-gradient(45deg, #f8d7da, #f5c2c7);
    color: #842029;
}

/* Loading Animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text .fa-spinner {
    animation: spin 1s linear infinite;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-section {
        background-attachment: scroll;
        padding: 2rem 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .feature-highlights .col-6 {
        margin-bottom: 1rem;
    }
    
    .feature-highlights span {
        font-size: 0.9rem;
    }
    
    .form-container {
        margin: 2rem 1rem;
        padding: 2rem 1.5rem !important;
    }
    
    .btn-lg {
        padding: 14px 20px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content .lead {
        font-size: 1rem;
    }
    
    .feature-highlights .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .form-container {
        margin: 1rem 0.5rem;
        padding: 1.5rem 1rem !important;
    }
    
    .col-md-6 {
        margin-bottom: 1rem;
    }
}

/* Background for About Section */
.bg-light {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef) !important;
}

/* Footer Styling */
footer {
    background: linear-gradient(135deg, #212529, #495057) !important;
}

footer a:hover {
    color: #ffc107 !important;
    transition: color 0.3s ease;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #0d6efd;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0b5ed7;
}

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

.hero-content, .form-container {
    animation: fadeInUp 1s ease-out;
}

/* Logo Icon Styling */
.logo-section i {
    margin-right: 0.5rem;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
}

/* Success/Error Message Animations */
.alert {
    animation: fadeInUp 0.5s ease-out;
}

/* Professional color scheme */
:root {
    --primary-color: #0d6efd;
    --secondary-color: #6610f2;
    --success-color: #198754;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --dark-color: #212529;
    --light-color: #f8f9fa;
} 