/* ========================================
   Pūjā O Pūjārī - Home Page Styles
   ======================================== */

:root {
    --saffron: #FF9933;
    --gold: #FFD700;
    --maroon: #800020;
    --dark-maroon: #5C0015;
    --white: #FFFFFF;
    --light-gold: #F5E6D3;
    --text-dark: #2C2C2C;
}

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

body {
    font-family: 'Segoe UI', 'Noto Sans Devanagari', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    background-color: #F8F9FA;
}

/* ========================================
   TOP HEADER (LOGO + TITLE + LOGIN)
   ======================================== */

.top-header {
    background: linear-gradient(135deg, var(--saffron) 0%, #E68A2E 100%);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-logo {
    display: flex;
    align-items: center;
}

.header-logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.site-title-section {
    text-align: center;
    color: var(--white);
}

.site-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.site-tagline {
    font-size: 1rem;
    margin: 5px 0 0;
    opacity: 0.95;
    font-weight: 400;
}

.header-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
}

.btn-login {
    background: var(--maroon);
    color: var(--white);
    border: none;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background: var(--dark-maroon);
    color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(128, 0, 32, 0.3);
}

/* ========================================
   MENU BAR (MAIN MENU + CART)
   ======================================== */

.menu-bar {
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 15px 0;
    gap: 5px;
}

.main-menu li a {
    color: var(--text-dark);
    text-decoration: none;
    padding: 10px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 5px;
    display: block;
}

.main-menu li a:hover,
.main-menu li a.active {
    background: var(--saffron);
    color: var(--white);
}

.cart-section {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

.header-icon {
    position: relative;
    color: var(--maroon);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.header-icon:hover {
    color: var(--saffron);
    transform: scale(1.1);
}

.header-icon .badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--maroon);
    color: var(--white);
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 10px;
}

/* ========================================
   MAIN CONTENT LAYOUT (3 COLUMNS)
   ======================================== */

.main-content-wrapper {
    padding: 30px 0;
}

/* SIDE MENU (LEFT) */
.side-menu {
    background: var(--white);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 120px;
}

.side-menu-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--maroon);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--saffron);
}

.side-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.side-menu-list li {
    margin-bottom: 5px;
}

.side-menu-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.side-menu-list li a:hover,
.side-menu-list li a.active {
    background: linear-gradient(135deg, var(--saffron), #E68A2E);
    color: var(--white);
}

.side-menu-list li a i {
    width: 20px;
    text-align: center;
}

/* PAGE CONTENT AREA (CENTER) */
.page-content {
    min-height: 600px;
}

/* OFFERS SIDEBAR (RIGHT) */
.offers-sidebar {
    position: sticky;
    top: 120px;
}

.offer-card {
    background: var(--white);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--gold);
}

.offer-badge {
    background: linear-gradient(135deg, var(--saffron), #E68A2E);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 10px;
}

.offer-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--maroon);
    margin: 10px 0;
}

.offer-description {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

.btn-offer {
    width: 100%;
    background: var(--maroon);
    color: var(--white);
    border: none;
    padding: 10px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-offer:hover {
    background: var(--dark-maroon);
    transform: scale(1.02);
}

/* ========================================
   CONTENT SECTIONS
   ======================================== */

.content-section {
    background: var(--white);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--maroon);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--saffron);
}

/* Product/Pujari Cards in Content Area */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.item-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 153, 51, 0.25);
    border-color: var(--saffron);
}

.item-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-info {
    padding: 15px;
}

.item-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--maroon);
    margin-bottom: 10px;
}

.item-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--saffron);
    margin-bottom: 10px;
}

.btn-action {
    width: 100%;
    background: linear-gradient(135deg, var(--saffron), #E68A2E);
    color: var(--white);
    border: none;
    padding: 10px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-action:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(255, 153, 51, 0.4);
}

/* ========================================
   HEADER / NAVBAR
   ======================================== */

.navbar-custom {
    background: linear-gradient(135deg, var(--saffron) 0%, #E68A2E 100%);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar-logo {
    height: 45px;
    width: auto;
    object-fit: contain;
    max-width: 180px;
}

.navbar-custom .navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 600;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-custom .navbar-nav .nav-link:hover {
    color: var(--gold) !important;
}

.navbar-custom .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.navbar-custom .navbar-nav .nav-link:hover::after,
.navbar-custom .navbar-nav .nav-link.active::after {
    width: 80%;
}

.navbar-icons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.navbar-icon {
    color: var(--white);
    font-size: 1.3rem;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-icon:hover {
    color: var(--gold);
    transform: scale(1.1);
}

.navbar-icon .badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--maroon);
    font-size: 0.7rem;
}

.btn-login-register {
    background: var(--maroon);
    color: var(--white);
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-login-register:hover {
    background: var(--dark-maroon);
    color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(128, 0, 32, 0.3);
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(255, 153, 51, 0.85), rgba(128, 0, 32, 0.85)),
                url('/assets/images/home/temple-texture.jpg') center/cover;
    background-attachment: fixed;
    color: var(--white);
    padding: 100px 0;135deg, rgba(255, 153, 51, 0.9) 0%, rgba(128, 0, 32, 0.85) 100%),
                radial-gradient(circle at 30% 50%, rgba(255, 215, 0, 0.1), transparent),
                url('https://images.unsplash.com/photo-1604608672516-2b00e1286d8f?w=1920') center/cover;
    background-attachment: fixed;
    color: var(--white);
    padding: 100px 0;
    z-index: 1;
}

/* Hero Logo Watermark */
.hero-section::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background-image: url('/assets/images/logo/logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.04;
    z-index: 0;
    pointer-events: none: center;
    z-index: 2;
}

.hero-heading {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero-subheading {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-hero-primary {
    background: var(--maroon);
    color: var(--white);
    border-color: var(--maroon);
}

.btn-hero-primary:hover {
    background: var(--dark-maroon);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(128, 0, 32, 0.4);
}

.btn-hero-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}
ॐ';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 500px;
    font-weight: bold;
    color: var(--gold);
    opacity: 0.08;
    z-index: 0;
    pointer-events: none;
    font-family: 'Noto Sans Devanagari', serifrelative;
    padding: 80px 0;
    background: linear-gradient(to bottom, #FFF9F0, #FFEFD5);
    z-index: 1;
}

.history-section::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background-image: url('/assets/images/home/heading-watermark.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.08;
    z-index: 0;
}

.section-heading {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--maroon);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, var(--saffron), var(--gold));
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-top: 1.5rem;
}

.history-content {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.history-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    text-align: justify;
}

/* ========================================
   FEATURED SECTIONS
   ======================================== */

.featured-section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.featured-section.bg-light {
    background: #F8F9FA;
}

.feature-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 153, 51, 0.25);
    border-color: var(--saffron);
}

/* Pujari Cards */
.pujari-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.pujari-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.feature-card:hover .pujari-image img {
    transform: scale(1.05);
}

.verified-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #28A745;
    color: var(--white);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pujari-info {
    padding: 1.5rem;
}

.pujari-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--maroon);
    margin-bottom: 0.5rem;
}

.pujari-specialty {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.pujari-rating {
    color: var(--gold);
    margin-bottom: 1rem;
}

.btn-book-pujari {
    width: 100%;
    background: linear-gradient(135deg, var(--saffron), #E68A2E);
    color: var(--white);
    border: none;
    padding: 0.75rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-book-pujari:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(255, 153, 51, 0.4);
}

/* Product Cards */
.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.feature-card:hover .product-image img {
    transform: scale(1.05);
}

.wishlist-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.wishlist-icon:hover {
    background: var(--maroon);
    color: var(--white);
    transform: scale(1.1);
}

.product-info {
    padding: 1.5rem;
}

.product-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--maroon);
    margin-bottom: 0.75rem;
    min-height: 50px;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--saffron);
    margin-bottom: 1rem;
}

.product-price small {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
    margin-left: 0.5rem;
}
WHY CHOOSE US
   ======================================== */

.why-choose-section {
    padding: 80px 0;
    background: #FFF9F0;
    position: relative;
    z-index: 1;
}

.why-card {
    background: var(--white);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 153, 51, 0.25);
    border-color: var(--saffron);
}

.why-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--light-saffron) 0%, #FFE5CC 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 3rem;
    color: var(--saffron);
}

.why-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--maroon);
    margin-bottom: 15px;
}

.why-card p {
    color: #666;
    line-height: 1.8;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: linear-gradient(135deg, var(--dark-maroon), var(--maroon));
    color: var(--light-gold);
    padding: 60px 0 20px;
    position: relative;
    z-index: 1;
}

.footer-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    margin-bottom: 15px;
}

.footer-about {
    margin-bottom: 2rem;
}

.footer-about p {
    line-height: 1.8;
    color: var(--light-gold)t: 600;
    transition: all 0.3s ease;
}

.btn-add-cart:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(128, 0, 32, 0.4);
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: linear-gradient(135deg, var(--dark-maroon), var(--maroon));
    color: var(--light-gold);
    padding: 60px 0 20px;
    position: relative;
    z-index: 1;
}

.footer-heading {
    color: var(--gold);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--light-gold);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

    
    .navbar-logo {
        height: 35px;
    }
    
    .hero-section::before {
        width: 200px;
        height: 200px;
    }
.footer-contact p {
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

.footer-contact i {
    color: var(--gold);
    margin-right: 10px;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 215, 0, 0.3);
    margin-top: 3rem;
    padding-top: 1.5rem;
    text-align: center;
    color: var(--light-gold);
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 991px) {
    .hero-heading {
        font-size: 2.5rem;
    }
    
    .hero-subheading {
        font-size: 1.2rem;
    }
    
    .navbar-custom .navbar-nav {
        background: rgba(255, 153, 51, 0.98);
        padding: 1rem;
        border-radius: 10px;
        margin-top: 1rem;
    }
    
    .navbar-icons {
        margin-top: 1rem;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .hero-heading {
        font-size: 2rem;
    }
    
    .hero-subheading {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .history-content {
        padding: 1.5rem;
    }
    
    .page-wrapper::before {
        width: 250px;
        height: 250px;
        left: 5%;
    }
    
    .page-wrapper::after {
        width: 200px;
        height: 200px;
        right: 2%;
    }
}

@media (max-width: 575px) {
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-hero {
        width: 100%;
    }
    
    .footer-heading {
        margin-top: 2rem;
    }
}
