/* --- 1. Universal Reset --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Arial, sans-serif;
}

/* --- 2. Body Setup (Sticky Footer) --- */
html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #f8f9fa;
}

/* --- 3. Header & Responsive Navbar --- */
.main-header {
    background-color: #FF6433;
    width: 100%;
    position: relative;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar {
    height: 70px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.logo a {
    color: white;
    font-size: 1.5em;
    font-weight: bold;
    text-decoration: none;
}

/* --- Navigation Links --- */
.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin: 0 10px;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    font-size: 1.1em;
    padding: 8px 15px;
    border-radius: 5px;
    transition: background 0.3s;
}

.nav-links li a:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* --- Checkbox Hack (Hidden by default) --- */
#click {
    display: none;
}

.menu-btn {
    color: white;
    font-size: 25px;
    cursor: pointer;
    display: none; /* डेस्कटॉप पर छुपा रहेगा */
}

/* --- 4. Main Content Area --- */
.content-area {
    flex: 1; /* फुटर को नीचे रखने के लिए */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
}

.disclaimer-container {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    max-width: 600px;
}

/* --- 5. Footer Styling --- */
footer {
    background-color: #FF6433;
    color: white;
    padding: 25px;
    text-align: center;
    width: 100%;
}

footer a {
    color: white;
    text-decoration: none;
}

/* --- 6. Responsive Media Query (Mobile) --- */
@media (max-width: 768px) {
    .menu-btn {
        display: block; /* मोबाइल पर हैमबर्गर दिखेगा */
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%; /* स्क्रीन के बाहर */
        background: #FF6433;
        height: 100vh;
        width: 100%;
        flex-direction: column;
        align-items: center;
        padding-top: 30px;
        transition: all 0.4s ease;
        z-index: 999;
    }

    /* जब हैमबर्गर पर क्लिक हो */
    #click:checked ~ .nav-links {
        left: 0;
    }

    .nav-links li {
        margin: 20px 0;
    }

    .nav-links li a {
        font-size: 1.3em;
        display: block;
    }
}