/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  GeneratePress child theme
 Author:       आपका नाम
 Author URI:   https://yourwebsite.com
 Template:     generatepress
 Version:      1.0.0
*/

/* नीचे दिया गया आपका Footer Stylish Links CSS जोड़ें */

/* पूरी वेबसाइट के लिए हॉरिजॉन्टल स्क्रोल रोकें */
html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    box-sizing: border-box;
    max-width: 100%;
}

/* ===== Footer Stylish Links CSS ===== */

/* डेस्कटॉप के लिए (600px से ऊपर) */
@media(min-width: 600px) {
    .footer-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
        font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        font-size: 16px;
        padding: 10px 0;
        background-color: #f9f9f9;
        border-radius: 8px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        margin: 0 auto 15px;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
        overflow-x: visible;
        white-space: normal;
    }
}

/* मोबाइल के लिए (600px से नीचे) */
@media(max-width: 599px) {
    .footer-links {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        gap: 15px;
        padding: 10px 0;
        justify-content: flex-start;
        font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        font-size: 14px;
        background-color: #f9f9f9;
        border-radius: 8px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        margin: 0 auto 15px;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
        white-space: nowrap;
        scrollbar-width: thin;
        scrollbar-color: #0073e6 transparent;
    }
    .footer-links::-webkit-scrollbar {
        height: 6px;
    }
    .footer-links::-webkit-scrollbar-thumb {
        background-color: #0073e6;
        border-radius: 3px;
    }
}

/* लिंक स्टाइल - डेस्कटॉप और मोबाइल दोनों के लिए */
.footer-links a {
    display: inline-block;
    padding: 8px 16px;
    background-color: #e6f0ff;
    border-radius: 20px;
    color: #0073e6;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 0 8px rgba(0, 115, 230, 0.2);
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.footer-links a:hover,
.footer-links a:focus {
    background-color: #005bb5;
    color: #fff;
    box-shadow: 0 0 12px rgba(0, 91, 181, 0.7);
    text-decoration: none;
    transform: translateY(-2px);
}

.footer-links a:active {
    transform: translateY(0);
    box-shadow: none;
    transition: none;
}

/* Footer credit */
.custom-footer-credit {
    text-align: center;
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 14px;
    color: #777;
    margin-top: 0;
    margin-bottom: 20px;
    font-weight: 500;
}

.custom-footer-credit a {
    color: #0073e6;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.custom-footer-credit a:hover,
.custom-footer-credit a:focus {
    color: #005bb5;
    text-decoration: underline;
}


