﻿body {
   
}
/* Sky Navbar */
.sky-navbar {
    background-color: #87CEFA;
}
/* Coral Navbar */
.cornsilk-navbar {
    background-color:cornsilk;
}
/* Dark Navbar */
.dark-navbar {
    background-color: #87CEFA;
}
/* Centered title */
.site-title {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    padding: 10px 0;
}
.text-gold {
    color: #d4af37; /* Metallic gold */
    font-weight: 900;
    /*font-size: 5rem;*/
    font-size: 40px;
    /*text-shadow: 2px 2px 4px #b8860b;*/ /* darker gold shadow */
}
.site-body {
    background-color: #f0f8ff; /* light sky / alice blue */
}
/* Horizontal spacing for nav items */
/*.navbar-nav .nav-item {
    margin: 0 15px;
}*/
/* Normal text color */
/*.navbar-nav .nav-link {
    color: #000000;
}*/

    /* Hover effect */
    /*.navbar-nav .nav-link:hover {
        color: #ffffff !important;
        background-color: #007bff;
        border-radius: 5px;
    }
.navbar-nav .nav-link {
    transition: all 0.3s ease;
}*/
.navbar-nav .nav-link:hover {
    color: red !important;
}
.site-body {
    background-color:azure; /* light sky / alice blue / #f0f8ff */
}
/* Drop down effect */
.dropdown-menu {
    display: block;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    transition: all 0.4s cubic-bezier(.17,.67,.83,.67);
    visibility: hidden;
}

    .dropdown-menu.show {
        opacity: 1;
        transform: translateY(0) scale(1);
        visibility: visible;
    }

.product-card {
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    transition: 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }

.product-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.product-body {
    padding: 15px;
}

.product-title {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 8px;
}

.product-info {
    font-size: 13px;
    color: #666;
}

.product-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.product-price {
    font-weight: bold;
    color: #28a745;
    font-size: 16px;
}

.btn-cart {
    background: #007bff;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 5px;
    font-size: 13px;
}

    .btn-cart:hover {
        background: #0056b3;
    }

/* Smooth dropdown animation */
/*.dropdown-menu {
    display: block;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s ease-in-out;
    visibility: hidden;
}

    .dropdown-menu.show {
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
    }*/