.banner-bg {
    /* background-image: url('../uploads/frontend_images/fastFood1.jpg'); */
    background-position: 100% center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 80vh; /* 80% of the viewport height */
    display: flex;
    align-items: flex-end; /* Align items at the bottom */
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
}

.banner-text {
    background: rgba(0, 0, 0, 0.5); /* Black background with transparency */
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.banner-text h2 {
    color: white;
}

.menu-section {
    /* padding: 20px 0; */
    /* background-color:rgb(250, 243, 228); */
    background: linear-gradient(to right, rgb(128, 127, 126, 0.3), rgb(218, 243, 195, 0.3));
    opacity: 0.9;
}

.menu-cards {
    display: flex;
    flex-wrap: wrap;
}

.menu {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* padding: 40px 20px; */
    color: white;
    text-align: center;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    height: 100%; /* Ensures all cards are the same height */
}

#breakfast-hover:hover, #lunch-hover:hover, #dinner-hover:hover{
    /* background-color: white; */
    opacity: 0.5;
}

.breakfast {
    background-image: url('../uploads/frontend_images/breakfast.jpg');
}

.breakfast h3{
    color: rgb(247, 174, 37);
}

.lunch h3{
    color: rgb(72, 247, 37);
}

.dinner h3{
    color: rgb(83, 37, 247);
}


.lunch {
    background-image: url('../uploads/frontend_images/lunch.jpg');
}

.dinner {
    background-image: url('../uploads/frontend_images/dinner.jpg');
}
.menu h3 {
    margin-top: 0;
    font-size: 24px;
}

.menu p {
    font-size: 16px;
}

.stats-section {
    padding: 40px 0;
    background-color: #e5eee5;
}

.stats-item {
    padding: 20px;
    text-align: center;
    color: #fff; /* Adjust text color for contrast */
    margin-bottom: 30px;
}

.stats-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.stats-number {
    font-size: 30px;
    font-weight: bold;
}

.stats-title {
    font-size: 16px;
}

#subscribe-sec{
    background-color: rgb(2, 155, 2, 0.9);
}

/* Media Queries */
@media (max-width: 768px) {
    .banner-bg {
        height: 60vh; /* Adjust height for smaller screens */
    }
    .banner-text {
        padding: 15px;
        margin-bottom: 15px;
    }

    .menu-section .row {
        flex-direction: column;
    }
    .col-md-4 {
        width: 100%;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .banner-bg {
        height: 50vh; /* Adjust height for very small screens */
        background-position: center; /* Adjust background position */
    }
    .banner-text {
        padding: 10px;
        margin-bottom: 10px;
    }
    .banner-text h2 {
        font-size: 1.5em; 
    }
    .banner-text p {
        font-size: 1em; 
    }

    .menu h3 {
        font-size: 20px; 
    }
    .menu p {
        font-size: 14px; 
    }
    .ml-1 {
        margin-left: 0.5rem !important; 
    }
}