/* * Project: Bookroz (2026-27 Advanced Standard)
 * Logic: Deep Dark Gradients, Flex-Grid Hybrid, and Mobile Optimization
 * Standard: Pure CSS3 (No Frameworks)
 */

/* 1. फुटर मुख्य कंटेनर सुधार */
#main-footer {
    background: linear-gradient(180deg, #000428 0%, #000000 100%);
    color: #f8f9fa;
    padding: 80px 0 30px 0; /* बेहतर स्पेसिंग */
    font-family: 'Segoe UI', Roboto, -apple-system, sans-serif;
    border-top: 2px solid rgba(255, 182, 193, 0.1);
    position: relative;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: grid; /* सुधार: Flex की जगह Grid ताकि अलाइनमेंट बेहतर हो */
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

/* 2. फुटर कॉलम्स और हेडिंग्स */
.footer-column h3 {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: var(--accent-pink, #ffb6c1);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
}

/* 3. लिंक्स स्टाइलिंग (Interaction Logic) */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-pink, #ffb6c1);
    transform: translateX(8px); /* आधुनिक 'Hover Move' इफेक्ट */
}

/* 4. न्यूज़लेटर बॉक्स (Secure & Professional UI) */
.newsletter .input-group {
    display: flex;
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.03);
    padding: 6px;
    border-radius: 50px; /* कैप्सूल डिज़ाइन */
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: border-color 0.3s ease;
}

.newsletter .input-group:focus-within {
    border-color: var(--accent-pink, #ffb6c1);
}

#subscriber-email {
    background: transparent;
    border: none;
    padding: 12px 20px;
    color: white;
    flex-grow: 1;
    outline: none;
    font-size: 0.9rem;
}

.btn-subscribe {
    background: #ffb6c1;
    color: #000428;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-subscribe:hover {
    transform: scale(1.05);
    background: #ffffff;
}

/* 5. फुटर बॉटम (Compliance Bar) */
.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    opacity: 0.6;
}

/* 6. मोबाइल रिस्पॉन्सिव (Android App Optimized) */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .newsletter .input-group {
        flex-direction: column;
        background: transparent;
        border: none;
        padding: 0;
    }
    
    #subscriber-email {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 50px;
        margin-bottom: 10px;
        width: 100%;
    }
    
    .footer-links a:hover {
        transform: none; /* मोबाइल पर ट्रांसलेट हटा दिया गया */
    }
}