/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    line-height: 1.6;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
/* Navbar */
/* Navbar */
.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff7675;
    display: flex;
    align-items: center;
}

.navbar-brand img {
    margin-right: 10px;
}

.nav-link {
    font-size: 1rem;
    color: #6c757d;
}

.nav-link:hover {
    color: #ff7675;
    text-decoration: none;
}

/* Responsive Navbar */
@media (max-width: 992px) { /* tablets and below */
    .menu-toggle {
        display: block;
        background: none;
        border: none;
        color: #ff7675;
        font-size: 1.5rem;
        cursor: pointer;
    }

    .nav-bar {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #fff; /* optional: matches navbar bg */
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 999;
    }

    .nav-bar.active {
        display: flex;
    }

    .nav-link {
        padding: 10px 20px;
        border-bottom: 1px solid #eee;
    }
}

/* Mobile adjustments */
@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.25rem;
    }

    .nav-link {
        font-size: 0.95rem;
    }
}

.brand-name {
    color: #ff7675;

}
.carousel-image {
    height: 500px; /* Set a fixed height for the carousel images */
    object-fit: cover; /* Ensure the images cover the entire area */
}
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-slide {
    height: 100vh;
    background-size: cover;
    background-position: center;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    z-index: 10;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero-btn {
    background: #ff7675;
    color: white;
    padding: 10px 20px;
    font-size: 1.1rem;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.hero-btn:hover {
    background: #d63031;
    text-decoration: none;
}

/* Dark overlay for better text visibility */
.carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}


/* Products */
.products {
    padding: 2rem 0;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}
.product-card {
   
    width: 250px;            /* Fixed width for all cards */
    margin: 10px;            /* Spacing between cards */
    text-align: center;      /* Center-align text and buttons */
    border: 1px solid #ddd;  /* Optional: Adds a subtle border */
    border-radius: 10px;     /* Matches image rounding */
    overflow: hidden;        /* Ensures no content overflows */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Adds a subtle shadow */
}

.product-card img {
    width: 100%;          /* Makes the image responsive to its container */
    height: 200px;        /* Fixed height for consistency */
    object-fit: cover;    /* Ensures the image scales and crops nicely */
    border-radius: 10px;  /* Optional: Adds rounded corners for aesthetics */
}

.product-card h3 {
    text-align: center;
    margin: 1rem 0;
    
}
.product-grid {
    display: flex;
    flex-wrap: wrap;        /* Wrap cards to the next row if needed */
    justify-content: center; /* Center cards within the grid */
}

@media (max-width: 768px) {
    .product-card {
        width: 90%;         /* Make cards take up more space on smaller screens */
    }
}

/* Footer */
.footer h5 {
    color: #ff7675;
    margin-bottom: 15px;
}

.footer a {
    color: #6c757d;
}

.footer a:hover {
    color: #ff7675;
}

.footer .bi {
    font-size: 1.5rem;
    color: #6c757d;
}

.footer .bi:hover {
    color: #ff7675;
}
.cart {
    margin: 20px 0;
}

.cart h2 {
    text-align: center;
    margin-bottom: 20px;
}

.cart-items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.cart-item {
    flex: 1 1 calc(33.333% - 20px);
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
}

.cart-item img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.cart-item .details {
    font-size: 1rem;
}
.navbar .badge {
    font-size: 0.75rem;
    position: relative;
    top: -2px;
    margin-left: 5px;
}


.shop {
    background-color: #f9f9f9;
    padding: 20px 0;
}

.product-card {
    border: none;
    margin-bottom: 20px;
}

.product-card img {
    max-height: 200px;
    object-fit: cover;
}

.product-card .card-title {
    font-size: 1.2rem;
    font-weight: bold;
}

.product-card .price {
    font-size: 1rem;
    color: #e74c3c;
}

.product-card .btn {
    background-color: #ec6ead;
    border: none;
}

.product-card .btn:hover {
    background-color: #d6539f;
}



