/* --- મૂળભૂત સેટિંગ્સ --- */
* {
    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", Roboto, 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; }

/* =========================================
   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; }

/* =========================================
   Main Content Layout & Breadcrumbs
========================================= */
.main-content { max-width: 1200px; margin: 40px auto; padding: 0 20px; }
.breadcrumbs { font-size: 14px; color: #475569; margin-bottom: 20px; }
.breadcrumbs a { color: var(--blue-btn); }
.breadcrumbs a:hover { text-decoration: underline; }

.title-section { margin-bottom: 30px; }
.main-page-title { font-size: 32px; color: var(--primary-red); font-weight: 700; }

/* =========================================
   About Us Page Specific Styling
========================================= */
.about-container {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
}

.about-logo {
    margin-bottom: 30px;
}

.about-logo img {
    width: 120px;
    height: 120px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    margin-bottom: 10px;
}

.about-logo p {
    font-size: 18px;
    color: #1e293b;
    margin-bottom: 5px;
}

.stars {
    color: #facc15; /* પીળા સ્ટાર્સ */
    font-size: 16px;
}

.about-text p {
    font-size: 16px;
    color: #334155;
    margin-bottom: 18px;
    line-height: 1.8;
}

.about-text a {
    color: var(--blue-btn);
    font-weight: 600;
}

.about-text a:hover {
    color: var(--primary-red);
    text-decoration: underline;
}

/* હિન્દી લખાણ માટે થોડું અલગ સેટિંગ */
.hindi-text {
    font-size: 18px !important;
    color: var(--primary-red) !important;
    font-weight: 600;
    background-color: #fff1f2;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-red);
}

.divider {
    border: 0;
    height: 1px;
    background: #e2e8f0;
    margin: 30px 0;
}

/* =========================================
   Title Bars (અગાઉ મુજબ જ)
========================================= */
.section-title {
    font-size: 22px; color: #1e293b; font-weight: 700; margin-bottom: 25px; 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%;
}

.sub-title {
    font-size: 18px; color: var(--primary-red); font-weight: 600; margin-top: 25px; margin-bottom: 10px;
    border-bottom: 2px dashed var(--primary-red); padding-bottom: 5px; display: inline-block;
}

/* =========================================
   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; }

/* =========================================
   Responsive Design (Mobile View)
========================================= */
@media screen and (max-width: 900px) {
    .nav-links, .auth-buttons { display: none; }
    .hamburger { display: flex; flex-direction: column; gap: 5px; cursor: pointer; }
    .hamburger span { width: 25px; height: 3px; background: #fff; }
    
    .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);}
    .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%;}
    
    .main-page-title { font-size: 26px; }
    .section-title { font-size: 18px; padding: 10px 15px; }
    .about-container { padding: 20px 15px; }
    .footer-links { flex-direction: column; gap: 10px; }
}

/* =========================================
   Dropdown Menu Settings (About Us)
========================================= */
/* પેરન્ટ લિંકને રિલેટિવ પોઝિશન આપવી */
.nav-links .dropdown {
    position: relative;
}

/* નીચે ખુલતું લિસ્ટ (શરૂઆતમાં છુપાયેલું રહેશે) */
.dropdown-menu {
    position: absolute;
    top: 150%; /* મેનૂ થોડું નીચેથી શરૂ થશે */
    left: 0;
    background-color: #ffffff; /* લિસ્ટનું સફેદ બેકગ્રાઉન્ડ */
    min-width: 200px; /* લિસ્ટની પહોળાઈ */
    list-style: none;
    padding: 10px 0;
    border-radius: 8px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    
    /* સ્મૂથ એનિમેશન માટેની ઇફેક્ટ */
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
}

/* ડ્રોપડાઉનની અંદરની લિંક્સની ડીજાઈન */
.dropdown-menu li a {
    color: #1e293b !important; /* ડાર્ક ગ્રે અક્ષર */
    padding: 12px 20px;
    display: block;
    font-size: 15px;
    font-weight: 500;
    transition: background-color 0.3s, color 0.3s;
}

/* લિસ્ટની લિંક પર માઉસ લઈ જતાં કલર બદલાશે */
.dropdown-menu li a:hover {
    background-color: #f1f5f9; /* આછું ગ્રે બેકગ્રાઉન્ડ */
    color: #d12a2a !important; /* લાલ અક્ષર */
}

/* About Us પર માઉસ લઈ જતાં લિસ્ટ દેખાશે */
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    top: 100%; /* મૂળ જગ્યાએ આવી જશે */
    transform: translateY(0);
}

/* ડ્રોપડાઉન ત્રિકોણનું સેટિંગ */
.drop-arrow {
    font-size: 12px; /* ત્રિકોણની સાઈઝ (તમે ઇચ્છો તો 14px કે 10px કરી શકો છો) */
    margin-left: 5px; /* 'About Us' અને ત્રિકોણ વચ્ચેની જગ્યા */
    vertical-align: middle; /* લખાણની લાઈનમાં બરાબર વચ્ચે લાવવા માટે */
}

/* --- મોબાઈલ વ્યૂ માટે એડજસ્ટમેન્ટ --- */
@media screen and (max-width: 900px) {
    .dropdown-menu {
        position: static; /* મોબાઈલમાં લિસ્ટ એ જ લાઈનમાં ખુલશે */
        box-shadow: none;
        background-color: transparent;
        padding-left: 20px;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none; /* શરૂઆતમાં બંધ રહેશે */
    }
    
    .dropdown:hover .dropdown-menu {
        display: block; /* મોબાઈલમાં હોવર/ક્લિક કરવાથી દેખાશે */
    }

    .dropdown-menu li a {
        color: #ffffff !important; /* મોબાઈલમાં લાલ બેકગ્રાઉન્ડ હોવાથી સફેદ અક્ષર */
        padding: 8px 20px;
    }
}

















/* =========================================
   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;
    }
}