/* =========================================
   1. MASTER THEME & VARIABLES
   ========================================= */
:root {
    --gold: #f5c542;
    --dark-bg: #05050a; 
    --card-bg: rgba(255, 255, 255, 0.03);
    --gold-shadow: 0 0 15px rgba(245, 197, 66, 0.3);
    --transition: 0.4s ease-in-out;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: var(--dark-bg);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
    overflow-x: hidden; /* Screen hilne se rokne ke liye */
}

/* =========================================
   2. TYPOGRAPHY (Fonts & Styles)
   ========================================= */
.gold-text {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    text-align: center;
    text-shadow: var(--gold-shadow);
}

/* =========================================
   3. NAVIGATION (Header & Brand Name)
   ========================================= */
.main-header {
    background: rgba(10, 10, 20, 0.95);
    padding: 0 20px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(245, 197, 66, 0.2);
    height: 75px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    height: 100%;
}

.nav-logo-text {
    font-family: 'Cinzel';
    color: var(--gold);
    font-size: 1.1rem;
    font-weight: bold;
    letter-spacing: 1px;
    text-decoration: none;
}

/* =========================================
   4. MOBILE MENU BUTTON (Hamburger Icon)
   ========================================= */
#mobile-menu {
    cursor: pointer;
    font-size: 1.8rem;
    color: var(--gold);
    z-index: 1100;
}

/* =========================================
   5. SIDEBAR DRAWER (Right Side Navigation)
   ========================================= */
.nav-menu {
    position: fixed;
    top: 0;
    right: -300px; /* Initially hidden */
    width: 280px;
    height: 100vh;
    background: #0a0a15;
    transition: var(--transition);
    z-index: 1050;
    padding: 40px 25px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.8);
    border-left: 1px solid rgba(245, 197, 66, 0.3);
}

.nav-menu.active {
    right: 0; /* Sliding in */
}

.nav-menu ul {
    list-style: none;
    margin-top: 50px;
}

.nav-menu ul li a {
    color: #fff;
    text-decoration: none;
    font-family: 'Cinzel';
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: 0.3s;
    font-size: 1rem;
}

.nav-menu ul li a:hover {
    color: var(--gold);
    padding-left: 10px;
}

/* =========================================
   6. APPOINTMENT FORM & BUTTONS
   ========================================= */
.form-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(245,197,66,0.15);
    max-width: 500px;
    margin: 120px auto 40px; /* Adjusted for fixed header */
}

.input-field {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    background: rgba(0,0,0,0.5);
    border: 1px solid #333;
    color: #fff;
    border-radius: 5px;
    font-family: 'Poppins';
}

.input-field:focus {
    border-color: var(--gold);
    outline: none;
}

.gold-btn {
    background: var(--gold);
    color: #000;
    padding: 15px;
    border: none;
    width: 100%;
    font-weight: bold;
    cursor: pointer;
    font-family: 'Cinzel';
    margin-top: 15px;
    border-radius: 5px;
    transition: 0.3s;
}

.gold-btn:hover {
    background: #fff;
    box-shadow: 0 0 20px var(--gold);
}

/* =========================================
   7. PANCHANG & HOROSCOPE GRIDS
   ========================================= */
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    margin-top: 20px;
}

.calendar-day {
    aspect-ratio: 1/1;
    background: var(--card-bg);
    border: 1px solid rgba(245, 197, 66, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    border-radius: 4px;
    transition: 0.3s;
}

.day-purnima { background: radial-gradient(circle, #fff, var(--gold)) !important; color: #000; font-weight: bold; }
.day-amavasya { background: #1a1a1a !important; border: 1px dashed var(--gold); }
.day-ekadashi { border: 1px solid var(--gold); box-shadow: inset 0 0 10px var(--gold); }

/* =========================================
   8. RESPONSIVE MEDIA QUERIES
   ========================================= */
@media (max-width: 768px) {
    .nav-logo-text { font-size: 0.9rem; }
    .calendar-grid { gap: 4px; }
    .calendar-day { font-size: 0.75rem; }
}
/* ==========================================
   PRICE CARDS HOVER EFFECT
   ========================================== */
.price-card {
    transition: all 0.3s ease-in-out;
}

.price-card:hover {
    border-color: var(--gold) !important; /* Golden border on hover */
    background: rgba(245, 197, 66, 0.08) !important; /* Halki golden chamak */
    transform: translateY(-8px); /* Card thoda upar uthega */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3); /* Niche shadow aayegi */
} 