/* hello, hello */
/* good morning, good morning */
/* papabears was here april 13, 2025 */

/* CSS for the front-end of the website */


/* Import fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Poppins:wght@300;400;500;600&display=swap');

/* Reset and base styles */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

/* Access Gate Styles */
.access-gate {
    background: #f8f8f8;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.access-container {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 400px;
    width: 90%;
}

.access-container h1 {
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.access-form {
    margin-top: 1rem;
}

.access-form input {
    width: 100%;
    padding: 0.8rem;
    margin: 1rem 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.access-form button {
    width: 100%;
    padding: 0.8rem;
    background: #1a1a1a;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.access-form button:hover {
    background: #333;
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 1rem 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/*
.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: bold;
}
*/

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: bold;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.8rem; /* Increased spacing between Jhela's and Gold */
}

.brand-name {
    color: #1a1a1a;
    letter-spacing: 1px;
    text-shadow: 0 1px 1px rgba(0,0,0,0.1);
}

.brand-gold {
    position: relative;
    font-weight: 800;
    letter-spacing: 1px;
    background: linear-gradient(45deg, #FFD700, #FFC300, #FFB700, #FF8C00);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 2px rgba(0,0,0,0.15);
    overflow: hidden;
}

.brand-gold::after {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    animation: shine 2.5s infinite;
}

@keyframes shine {
    0% {
        left: -75%;
    }
    100% {
        left: 125%;
    }
}


.navbar-nav {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #1a1a1a;
}

.nav-item.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border-radius: 4px;
    padding: 0.5rem 0;
    z-index: 1000;
    list-style: none;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    color: #333;
    text-decoration: none;
    display: block;
    transition: color 0.3s;
    padding: 0.5rem 1rem;
}

.dropdown-menu a:hover {
    color: #1a1a1a;
}

.text-gold {
    color: #FFD700; /* or use goldenrod for a brighter gold */
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-button {
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .hero {
        height: 60vh;
        margin-top: 60px;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-content p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .product-grid, .products-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0.5rem;
        gap: 0.5rem;
        margin-bottom: 0;
    }
    
    .section-heading {
        margin: 2rem 0 1rem;
    }
    
    .footer {
        margin-top: 2rem;
    }
}

/* Product Grid Styles */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
    padding: 1rem;
}

.modal-content {
    position: relative;
    background-color: white;
    margin: auto;
    padding: 2rem;
    width: 90%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.modal-image-container {
    position: relative;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1;
    background: #000;
}

.modal-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.modal-product-id {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.4);
    padding: 4px 8px;
    border-radius: 4px;
    z-index: 1;
    font-size: 0.875rem;
    font-weight: 500;
    color: #000000;
    backdrop-filter: blur(.5px);
}

.modal-actions {
    width: 100%;
    text-align: center;
    margin-top: 1rem;
    position: relative;
    padding: .7rem 1rem 0.5rem;
}

.modal-actions::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255,215,0,0.3), transparent);
}

.modal-order-btn {
    display: inline-block;
    background: linear-gradient(45deg, #1a1a1a, #333);
    color: #FFD700;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 1px;
    padding: 14px 32px;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,215,0,0.3);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    min-width: 200px;
}

.modal-order-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255,215,0,0.2) 0%, rgba(255,215,0,0) 100%);
    transform: skewX(-25deg);
    animation: orderButtonShine 2.5s infinite;
}

.modal-order-btn:hover {
    background: linear-gradient(45deg, #333, #1a1a1a);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    color: #FFC300;
    border-color: rgba(255,215,0,0.5);
}

@keyframes orderButtonShine {
    0% {
        left: -75%;
    }
    100% {
        left: 125%;
    }
}

/* Product Cards */
.product-card {
    position: relative;
    aspect-ratio: 1;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.product-info {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(255, 255, 255, 0.8);
    padding: 4px 8px;
    border-radius: 4px;
    z-index: 2;
}

.product-id {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 500;
    color: #333;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    overflow: auto;
    align-items: center;
    justify-content: center;
}

.close-modal {
    position: absolute;
    right: 15px;
    top: 5px;
    font-size: 28px;
    font-weight: bold;
    color: black;
    cursor: pointer;
    z-index: 2;
}

/* Filter Styles */
.filters {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.filter-group {
    display: flex;
    flex-direction: column;
}

.filter-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.filter-group select,
.filter-group input {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.9rem;
    background: #fff;
}

.filter-group input[type="number"] {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.9rem;
}

.filter-group input[type="number"]::-webkit-inner-spin-button,
.filter-group input[type="number"]::-webkit-outer-spin-button {
    opacity: 1;
    height: 20px;
}

.filter-group select:focus,
.filter-group input:focus {
    outline: none;
    border-color: #1a1a1a;
}

.filter-buttons {
    display: flex;
    gap: 0.5rem;
    align-items: flex-end;
    grid-column: 1 / -1;
}

@media (max-width: 768px) {
    .filters {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
    
    .filter-buttons {
        flex-direction: column;
    }
    
    .filter-buttons .btn {
        width: 100%;
    }
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: #1a1a1a;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1rem;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #333;
}

.btn-outline {
    background: transparent;
    border: 1px solid #1a1a1a;
    color: #1a1a1a;
}

.btn-outline:hover {
    background: #1a1a1a;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        background: white;
    }
    
    .navbar-nav {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: white;
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        z-index: 9998;
    }
    
    .navbar-nav.active {
        display: flex;
    }
    
    .menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        margin-left: 1rem;
        z-index: 9999;
    }

    .menu-toggle .fas {
        display: block;
        font-size: 24px;
    }
    
    .dropdown-menu {
        position: static;
        box-shadow: none;
        width: 100%;
        background: #f8f8f8;
        margin: 0.5rem 0;
        display: none;
    }
    
    .nav-item.dropdown {
        width: 100%;
    }
    
    .nav-item.dropdown > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    
    .nav-item.dropdown > a:after {
        content: '▼';
        display: inline-block;
        margin-left: 0.5rem;
        font-size: 0.8em;
    }

    .product-grid, .products-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0.5rem;
        gap: 0.5rem;
    }
    
    .modal-content {
        margin: 10% 15px;
        width: 90%;
    }
    
    .section-heading h2 {
        font-size: 1.8rem;
    }
    
    .section-heading p {
        font-size: 1rem;
    }
}

@media (min-width: 769px) {
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
    }
}

/* Menu Toggle Button Styles */
.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #333;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle .fas {
    display: block;
    font-size: 24px;
}

/* Alert Messages */
.alert {
    padding: 0.75rem 1rem;
    margin: 1rem 0;
    border-radius: 4px;
    font-size: 0.9rem;
}

.alert-error {
    background: #ffe6e6;
    color: #cc0000;
    border: 1px solid #ffcccc;
}

.alert-success {
    background: #e6ffe6;
    color: #006600;
    border: 1px solid #ccffcc;
}

/* Footer Styles */
.footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 40px 0 20px;
    margin-top: 50px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 0 20px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin: 20px;
}

.footer-section h3 {
    color: #fff;
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffd700;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #333;
}

@media (max-width: 768px) {
    .footer-section {
        min-width: 100%;
        text-align: left;
        margin: 20px 0;
        padding: 0 20px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        padding: 0;
    }

    .footer-section h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .footer-section p, 
    .footer-section ul li {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }

    .footer-bottom {
        margin-top: 20px;
        padding: 15px 20px;
        font-size: 0.9rem;
    }
}

/* Container and Section Heading Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-heading {
    text-align: center;
    margin: 3rem 0 2rem;
    font-family: 'Playfair Display', serif;
    color: #1a1a1a;
}

.section-heading h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.section-heading p {
    color: #666;
    font-size: 1.1rem;
}

.pricing-details {
    margin: .2rem 0;
    padding: .1rem;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 8px;
    text-align: center;
}

.pricing-details p {
    margin: 0.5rem 0;
    font-size: 1.1rem;
    color: #333;
}

.pricing-details .calculated-price {
    margin-top: .5rem;
    font-size: 1rem;
    color: #1a1a1a;
    font-weight: bold;
    text-shadow: 1px 1px 1px rgba(255, 215, 0, 0.2);
}