/*
 Theme Name:   AIO DL Sober Child
 Theme URI:    https://techevangelistseo.com
 Description:  Child theme for aiodl-sober with premium UI/UX enhancements
 Author:       TechEvangelistSEO
 Author URI:   https://techevangelistseo.com
 Template:     aiodl-sober
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Text Domain:  aiodl-sober-child
*/

@import url("../aiodl-sober/style.css");

/* ============================================
   PREMIUM UI/UX ENHANCEMENTS
   ============================================ */

/* Large Input Field */
.premium-download-form .form-control {
    font-size: 1.25rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.premium-download-form .form-control:focus {
    border-color: #5e72e4;
    box-shadow: 0 0 0 4px rgba(94, 114, 228, 0.15);
    outline: none;
}

/* Download Button */
.premium-download-form .btn-download {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.premium-download-form .btn-download:not(:disabled) {
    background: linear-gradient(135deg, #5e72e4 0%, #825ee4 100%);
    border: none;
    color: white;
}

.premium-download-form .btn-download:not(:disabled):hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(94, 114, 228, 0.35);
}

.premium-download-form .btn-download:disabled {
    background: #c1c1c1;
    cursor: not-allowed;
    opacity: 0.7;
}

/* Form Container */
.premium-form-container {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.trust-item i {
    color: #10b981;
    font-size: 1.1rem;
}

/* Loading Spinner */
.premium-loader {
    display: none;
    text-align: center;
    padding: 2rem;
}

.premium-loader.active {
    display: block;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #5e72e4;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

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

/* Mobile Optimizations */
@media (max-width: 768px) {
    .premium-form-container {
        padding: 1.5rem;
        border-radius: 15px;
    }
    
    .premium-download-form .form-control {
        font-size: 1rem;
        padding: 0.875rem 1rem;
    }
    
    .premium-download-form .btn-download {
        width: 100%;
        margin-top: 0.5rem;
    }
    
    .trust-indicators {
        gap: 1rem;
    }
    
    .trust-item {
        font-size: 0.8rem;
    }
}
