/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fffbf0; /* Light yellowish for spiritual vibe */
    color: #333;
}

/* Navbar */
nav {
    background-color: #ff9933; /* Saffron Color */
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    flex-wrap: wrap;
}

nav .logo {
    font-size: 24px;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.social-strip {
    background: transparent;
    padding: 8px 50px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    padding: 4px 0;
    width: 44px;
    height: 44px;
}

.social-link i {
    font-size: 22px;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    box-shadow:
        0 10px 18px rgba(0,0,0,0.25),
        inset 0 2px 4px rgba(255,255,255,0.7),
        inset 0 -4px 8px rgba(0,0,0,0.25);
}

.social-link span {
    display: none;
}

.social-whatsapp {
    color: #25d366;
}

.social-whatsapp i {
    background: radial-gradient(circle at 30% 30%, #57ef98, #1fa855);
}

.social-instagram {
    color: #c13584;
}

.social-instagram i {
    background: linear-gradient(135deg, #f9ce34 0%, #ee2a7b 50%, #6228d7 100%);
}

.social-facebook {
    color: #1877f2;
}

.social-facebook i {
    background: radial-gradient(circle at 30% 30%, #4a9bff, #145fd3);
}

.social-youtube {
    color: #ff0000;
}

.social-youtube i {
    background: radial-gradient(circle at 30% 30%, #ff4d4d, #c40000);
}

.cart-icon {
    position: relative;
    cursor: pointer;
}

#cart-count {
    background: red;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 12px;
    position: absolute;
    top: -5px;
    right: -10px;
}

/* Hero Section */
header {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://source.unsplash.com/1600x900/?temple,puja');
    background-size: cover;
    min-height: 400px;
    padding: 60px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 40px;
}

.hero-layout {
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 1100px;
    padding: 0 20px;
}

.hero-media {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero-text-wrap {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex-direction: row-reverse;
}

.hero-social {
    padding: 0;
}

.hero-text-wrap .social-strip {
    padding: 0;
}

.hero-photo img {
    width: 100%;
    width: 400px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.hero-text {
    text-align: left;
}

.hero-text p {
    line-height: 1.6;
}

.page-with-icons {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px 0;
}

.page-main {
    flex: 1;
    min-width: 0;
}

.page-social {
    padding: 0;
}

@media (max-width: 900px) {
    .hero-layout {
        flex-direction: column;
        text-align: center;
    }

    .hero-media {
        flex-direction: column;
    }

    .hero-social {
        flex-direction: row;
        justify-content: center;
    }

    .hero-text-wrap {
        flex-direction: column;
        align-items: center;
    }

    .hero-text {
        text-align: center;
    }

    .page-with-icons {
        flex-direction: column;
        align-items: center;
    }

    .page-social {
        flex-direction: row;
        justify-content: center;
    }

    nav {
        padding: 12px 20px;
        gap: 12px;
        justify-content: center;
    }

    nav ul {
        justify-content: center;
    }
}

.btn {
    background-color: #b30000; /* Maroon */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
}

.btn:hover {
    background-color: #800000;
}

/* Sections */
.container {
    padding: 40px 20px;
    max-width: 1000px;
    margin: auto;
    text-align: center;
}

h2 {
    color: #b30000;
    margin-bottom: 30px;
}

/* Home Gallery */
.home-gallery {
    padding-top: 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.gallery-card {
    background: #ffffff;
    padding: 12px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.08);
    text-align: center;
}

.gallery-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
}

.gallery-card p {
    margin-top: 10px;
    font-weight: 600;
    color: #333;
}

.gallery-card video {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    background: #000;
}


/* Booking Form */
form {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    max-width: 500px;
    margin: auto;
    text-align: left;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* Shop Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.product-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    text-align: center;
}

.item-image {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

.item-icon {
    font-size: 40px;
    color: #ff9933;
    margin-bottom: 10px;
}

.price {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}
/* ===== Puja Samagri Order Section ===== */

.order-section {
    padding: 50px 10%;
    background: #ffffff;
}

.order-section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #8B0000;
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f5f0;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.05);
}

.order-item label {
    font-weight: 600;
}

.order-item input {
    width: 70px;
    padding: 8px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.order-btn {
    display: inline-block;
    padding: 12px 25px;
    margin-top: 15px;
    background: #8B0000;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
}

.order-btn:hover {
    background: #a50000;
}

.whatsapp-btn {
    background: green;
}

.whatsapp-btn:hover {
    background: darkgreen;
}

.total-amount {
    margin-top: 20px;
    font-size: 20px;
    font-weight: bold;
    color: #333;
}

/* Cart Page */
.cart-list {
    margin-top: 20px;
}

.cart-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 10px;
    align-items: center;
    background: #ffffff;
    padding: 12px 10px;
    border-radius: 8px;
    box-shadow: 0 0 8px rgba(0,0,0,0.05);
    margin-bottom: 10px;
}

.booking-cart .cart-row {
    grid-template-columns: 2fr 1fr 1fr 1fr;
}

.cart-head {
    background: #ffe7c2;
    font-weight: bold;
}

.cart-col {
    text-align: left;
}

.item-qty {
    display: flex;
    align-items: center;
    gap: 8px;
}

.qty-btn {
    width: 28px;
    height: 28px;
    border: 1px solid #ccc;
    background: #ffffff;
    border-radius: 4px;
    cursor: pointer;
}

.remove-btn {
    background: #b30000;
    color: #ffffff;
    border: none;
    padding: 6px 10px;
    border-radius: 4px;
    cursor: pointer;
}

.remove-btn:hover {
    background: #800000;
}

.cart-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    font-size: 18px;
    font-weight: bold;
}

.cart-actions {
    margin-top: 20px;
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.empty-cart {
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 8px rgba(0,0,0,0.05);
}

@media (max-width: 700px) {
    nav {
        flex-direction: column;
        align-items: center;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-text p {
        font-size: 15px;
    }

    .hero-photo img {
        width: 100%;
        max-width: 340px;
    }

    .container {
        padding: 30px 16px;
    }

    .gallery-card img {
        height: 160px;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    }

    .item-image {
        height: 140px;
    }

    .cart-row {
        grid-template-columns: 1fr;
    }

    .cart-head {
        display: none;
    }

    .cart-col {
        text-align: left;
    }
}
