body {
    font-family: 'Poppins', sans-serif;
}

.navbar {
    transition: background-color 0.3s ease;
}
.navbar img {
    height: 65px;
}

.navbar.scrolled {
    background-color: white !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 80vh;
    overflow: hidden;
}

.hero-section .carousel-item img {
  object-fit: cover;
  height: 80vh;
}

.carousel-caption {
  z-index: 2;
  text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Product Section */
.section-heading {
    font-size: 2.5rem;
}

.product-card {
    position: relative;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: scale(1.03);
}

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
}

.product-overlay a {
    color: #fff;
    text-decoration: none;
}

.product-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.product-icon img {
    width: 65%;
}

.combo-title {
    font-size: 2.2rem;
    font-weight: 600;
}
.combo-price {
    font-size: 1.2rem;
    font-weight: 300;
}
.dropdown-menu {
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* About Section */
.about-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0');
    background-size: cover;
    background-position: center;
    min-height: 56vh;
    position: relative;
}

.content-box {
    background-color: rgba(33, 37, 41, 0.9);
    padding: 2rem;
    color: white;
    border-radius: 8px;
}

/* CTA Banner for Chef */
.service-card {
    position: relative;
    overflow: hidden;
    height: 400px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    color: white;
    padding: 80px;
}

.service-overlay a {
    color: #fff;
    text-decoration: none;
}

/* Footer */
.footer {
    background-color: #212529;
    color: white;
    padding: 2rem 0;
}

.footer a {
    color: white;
    text-decoration: none;
    margin: 0 1rem;
    font-size: 1rem;
}

.footer a:hover {
    color: #adb5bd;
}

.copyright p {
    font-size: 0.75rem;
    font-weight: 200;
}

.whatsapp-float {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background-color: #25d366;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    font-size: 24px;
    z-index: 1000;
    transition: all 0.3s;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .content-box {
        margin: 2rem auto;
    }

    .download-buttons {
        flex-direction: row;
        gap: 1rem;
    }
    .download-container {
        padding: 2rem 1rem;
        align-items: center;
    }
    
}
