/* --- મૂળભૂત સેટિંગ્સ --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
    background-color: #f1ebd9;
}

a {
    text-decoration: none;
    transition: color 0.3s ease;
}

/* --- હેડર ડિઝાઇન --- */
.site-header {
    background-color: #d12a2a;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* લોગો */
.logo a {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
}
.logo p {
    color: #fff;
    font-size: 13px;
    opacity: 0.9;
}

/* ડેસ્કટોપ નેવિગેશન લિંક્સ */
.nav-menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-links li a {
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    padding: 10px 0;
}

.nav-links li a:hover, 
.nav-links li a.active {
    color: #ffd700;
}

/* --- ડ્રોપડાઉન (Desktop) --- */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 200px;
    list-style: none;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    color: #1e293b !important;
    padding: 10px 20px;
    display: block;
    font-size: 15px;
}

.dropdown-menu li a:hover {
    background-color: #f1f5f9;
    color: #d12a2a !important;
}

/* બટન્સ */
.auth-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.login-btn {
    color: #fff;
    font-weight: 600;
}

.signup-btn {
    background-color: #046bd2;
    color: #fff;
    padding: 8px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.signup-btn:hover {
    background-color: #045cb4;
}

.mobile-auth {
    display: none;
}

/* હેમબર્ગર આઈકોન */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    border-radius: 3px;
    transition: 0.3s;
}

/* =========================================
   મોબાઇલ રિસ્પોન્સિવ ડિઝાઇન (Mobile View)
========================================= */
@media screen and (max-width: 900px) {
    .auth-buttons {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #d12a2a;
        flex-direction: column;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-out;
    }

    .nav-menu.active {
        max-height: 1000px !important;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        text-align: center;
    }

    /* --- મોબાઈલમાં ડ્રોપડાઉન હંમેશાં ખુલ્લું રાખવા માટે --- */
    .dropdown-menu {
        position: static !important;
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        background-color: #d12a2a !important;
        width: 100% !important;
        padding: 5px 0 !important;
        margin-top: 5px !important;
        border-radius: 0 !important;
    }

    .dropdown-toggle {
        pointer-events: none; 
    }
    
    .drop-arrow {
        display: none !important; 
    }

    .dropdown-menu li a {
        color: #fff !important;
        padding: 10px 20px !important;
        font-size: 15px;
        text-align: center;
    }

    .dropdown-menu li a:hover {
        background-color: transparent !important;
        color: #ffd700 !important;
    }

    .mobile-auth {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid rgba(255,255,255,0.2);
        align-items: center;
        width: 100%;
    }

    /* Hamburger Animation */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }
}

/* =========================================
   Global Variables & Reset
========================================= */
:root {
    --primary-red: #2c0406;
    --text-dark: #1e293b;
    --text-gray: #334155;
    --bg-color: #f1ebd9;
    --blue-btn: #046bd2;
    --blue-btn-hover: #045cb4;
    --footer-bg: #c2e31d;
    --font-stack: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-stack); background-color: var(--bg-color); color: var(--text-dark); line-height: 1.6; }
a { text-decoration: none; transition: 0.3s; }
.text-center { text-align: center; }

/* =========================================
   1. Header Section (ઓરિજિનલ નાની સાઈઝ)
========================================= */
.site-header { background-color: var(--primary-red); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.header-container { max-width: 1200px; margin: 0 auto; padding: 10px 20px; display: flex; justify-content: space-between; align-items: center; }
.logo a { color: #fff; font-size: 24px; font-weight: 700; }
.logo p { color: #fff; font-size: 12px; opacity: 0.9; }
.nav-links { list-style: none; display: flex; gap: 25px; }
.nav-links li a { color: #fff; font-weight: 500; font-size: 16px; }
.nav-links li a.active, .nav-links li a:hover { color: #ffd700; }
.auth-buttons { display: flex; gap: 15px; align-items: center;}
.login-btn { color: #fff; font-weight: 600; }
.signup-btn { background-color:  #ef0a0a; color: #fff; padding: 8px 25px; border-radius: 25px; font-weight: 600; }
.signup-btn:hover { background-color: #ff4000; }
.mobile-auth, .hamburger { display: none; }

/* =========================================
   Dropdown Menu (હેડરની સાઈઝ વધાર્યા વિના)
========================================= */
.nav-links .dropdown { position: relative; padding: 10px 0; }
.drop-arrow { font-size: 11px; margin-left: 4px; vertical-align: middle; }

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    min-width: 180px;
    list-style: none;
    padding: 8px 0;
    border-radius: 6px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.dropdown-menu li a {
    color: #1e293b !important;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 500;
    transition: 0.2s;
}

.dropdown-menu li a:hover, .dropdown-menu li a.active {
    background-color: #f1f5f9;
    color: var(--primary-red) !important;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* =========================================
   2. Main Content & Breadcrumbs
========================================= */
.main-content { max-width: 1200px; margin: 40px auto; padding: 0 20px; color: #334155; line-height: 1.8; }
.breadcrumbs { font-size: 14px; color: #475569; margin-bottom: 20px; }
.breadcrumbs a { color: var(--blue-btn); font-weight: 600; }
.breadcrumbs a:hover { text-decoration: underline; }

.title-section { margin-bottom: 40px; }
.main-page-title { font-size: 32px; color: var(--primary-red); font-weight: 700; }

/* Content Blocks & Title Bars */
.content-block { margin-bottom: 40px; }
.content-block p { font-size: 16px; margin-bottom: 15px; }
.content-block a { color: var(--blue-btn); font-weight: 600; }
.content-block a:hover { color: var(--primary-red); text-decoration: underline; }

.section-title {
    font-size: 22px; color: #1e293b; font-weight: 700; margin-bottom: 20px; margin-top: 10px;
    background-color: #ffffff; border: 1px solid #e2e8f0; border-left: 6px solid var(--primary-red);
    padding: 12px 20px; border-radius: 6px; box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    display: flex; align-items: center; width: 100%;
}

/* Custom Lists */
.custom-list { margin-left: 20px; margin-bottom: 25px; background-color: #ffffff; padding: 20px 20px 20px 40px; border-radius: 8px; border: 1px solid #e2e8f0; box-shadow: 0 2px 5px rgba(0,0,0,0.02); }
.custom-list li { margin-bottom: 12px; font-size: 16px; color: #1e293b; list-style-type: disc; }
.custom-list li::marker { color: var(--primary-red); }

/* Hindi Text Box & Alerts */
.hindi-text { background-color: #fff1f2; padding: 20px; border-radius: 8px; border-left: 4px solid var(--primary-red); box-shadow: 0 2px 5px rgba(0,0,0,0.05); }
.hindi-text p { font-size: 18px !important; color: var(--primary-red) !important; font-weight: 600; margin-bottom: 0; }

.notice-box { background-color: #f8fafc; padding: 25px; border-radius: 8px; border: 1px solid #e2e8f0; }
.highlight-alert { background-color: var(--primary-red); color: #ffffff !important; padding: 10px 15px; border-radius: 5px; display: inline-block; margin-top: 10px; }

/* =========================================
   3. Footer Section
========================================= */
.site-footer { background-color: var(--footer-bg); border-top: 1px solid #080000; padding: 40px 20px; text-align: center; }
.footer-container { max-width: 1000px; margin: 0 auto; }
.copyright-info p { color: #000; font-size: 16px; margin-bottom: 20px; }
.age-warning { margin-bottom: 30px; }
.notice-title { color: #000; font-size: 18px; margin-bottom: 5px; }
.notice-text { color: #ff0000; font-size: 16px; max-width: 800px; margin: 0 auto; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px 25px; margin-top: 20px; }
.footer-links a { color: #0000ff; font-size: 16px; font-weight: bold; }
.footer-links a:hover { color: var(--primary-red); text-decoration: underline; }

/* =========================================
   4. Mobile Responsive Design
========================================= */
@media screen and (max-width: 900px) {
    .nav-links, .auth-buttons { display: none; }
    .hamburger { display: flex; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
    .hamburger span { width: 28px; height: 3px; background-color: #fff; border-radius: 2px; }
    
    .nav-menu.active { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; width: 100%; background: var(--primary-red); padding: 20px 0; box-shadow: 0 5px 10px rgba(0,0,0,0.1); border-top: 1px solid rgba(255,255,255,0.1); }
    .nav-menu.active .nav-links { display: flex; flex-direction: column; align-items: center; width: 100%; gap: 15px; }
    .nav-menu.active .mobile-auth { display: flex; flex-direction: column; align-items: center; gap: 15px; margin-top: 20px; width: 100%; }

    /* Mobile Dropdown Fix */
    .nav-links .dropdown { padding: 0; text-align: center; }
    .dropdown-menu { position: static; box-shadow: none; background-color: transparent; padding: 10px 0; opacity: 1; visibility: visible; transform: none; display: none; }
    .dropdown:hover .dropdown-menu { display: block; }
    .dropdown-menu li a { color: #ffffff !important; padding: 8px 20px; }
    .dropdown-menu li a:hover { background-color: rgba(255,255,255,0.1); color: #ffd700 !important; }

    .main-page-title { font-size: 26px; }
    .section-title { font-size: 20px; padding: 10px 15px; }
}

@media screen and (max-width: 600px) {
    .footer-links { flex-direction: column; gap: 10px; }
}





















/* =========================================
   Footer Section Settings
========================================= */
.site-footer {
    background-color: #2c0406;
    border-top: 1px solid #080000;
    padding: 40px 20px;
    text-align: center;
    margin-top: 50px;
}

.footer-container {
    max-width: 1000px;
    margin: 0 auto;
}

.copyright-info p {
    color: #b1b6ca;
    font-size: 16px;
    margin-bottom: 25px;
}

.age-warning {
    margin-bottom: 35px;
}

.notice-title {
    color: #f2a90c;
    font-size: 18px;
    margin-bottom: 8px;
}

.notice-text {
    color: #ff0000;
    font-size: 16px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 30px;
    margin-top: 20px;
}

.footer-links a {
    color: #f2a90c;
    font-size: 16px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #d12a2a;
    text-decoration: underline;
}

@media screen and (max-width: 768px) {
    .site-footer {
        padding: 30px 15px;
    }
    .notice-text {
        font-size: 14px;
    }
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}