
/* Custom CSS styles */
/* Reset CSS */
html, body {
    margin: 0;
    padding: 0;
}

body {
/* Adjust if your navbar height changes */
    font-family: 'Roboto', sans-serif;
}


/* Centering the content */
.menu-section {
    position: relative;
    background-image: url('../images/menubg.png');
    /* background: linear-gradient(to bottom, #f0f0f0, #d9d9d9, #c4c4c4); */
    background-size: cover;
    background-position: center;
    min-height: 400px;  /* Keep the same height */
    max-height: 600px;  /* Keep the same height */
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-section .container {
    text-align: center;
}

.hero-title, .hero-text {
    margin: 10px 0;  /* Space between title and text */
}

.menu-section .btn {
    margin-top: 20px; /* Add spacing between buttons and text */
}

.navbar-brand {
    font-weight: bold;
}

.card-title {
    font-size: 1.25rem;
}

.footer {
    background-color: #343a40;
    color: #ffffff;
    padding: 20px 0;
}

.footer a {
    color: #ffffff;
}

/* Top */
.hero-section {
    position: relative;
    background-image: url('<?= BASE_URL; ?>images/thebullger.png');
    background: linear-gradient(to bottom, #f0f0f0, #d9d9d9, #c4c4c4);
    background-size: cover;
    background-position: center;
    min-height: 400px;  /* Minimum height */
    max-height: 600px;  /* Maximum height */
}

/* Image hover effect */
.burgerImage {
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transform-origin: center center;
    opacity: 0.9; /* Slightly reduce the opacity for a subtle effect */
}

.burgerImage:hover {
    transform: scale(1.1); /* Zooms in the image */
    opacity: 1; /* Fully visible on hover */
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    color: #fff;  /* Text color */
    max-width: 500px;  /* Adjust as needed */
    animation: slide-in 1s forwards;
}

@keyframes slide-in {
    from {
        opacity: 0;
        transform: translate(-100%, -50%);
    }
    to {
        opacity: 1;
        transform: translate(0, -50%);
    }
}

.hero-title {
    opacity: 0;
    transform: translateX(-100%);
    animation: slide-in-left 1.5s forwards;
}

.hero-text {
    opacity: 0;
    transform: translateX(100%);
    animation: slide-in-right 1.5s forwards;
    animation-delay: 0.5s; /* Delay to make it appear after h1 */
}

.btn-primary {
    opacity: 0;
    transform: translateY(50px);
    animation: slide-up 1.5s forwards;
    animation-delay: 1s; /* Delay to make it appear after p */
}

/* Keyframes for sliding animations */
@keyframes slide-in-left {
    from {
        opacity: 0;
        transform: translateX(-100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slide-in-right {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero-section .row {
        text-align: center;
    }

    .hero-section .col-md-6 {
        margin-top: 75px;
        justify-content: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-title, .hero-text {
        text-align: center;
     
    }
}

/* top */



.jumbotron h1 {
    font-size: 3rem;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .jumbotron h1 {
        font-size: 2rem;
    }
}

/* Navbar Starts */
/* Custom Navbar Styles */
.custom-navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #343a40; /* Dark background */
    color: #ffffff;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.navbar-logo {
    display: flex;
    align-items: center;
}

.logo-icon {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    font-family: 'Oxanium', sans-serif;
}

.navbar-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-menu .nav-item {
    margin-left: 20px;
}

.navbar-menu .nav-item a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

.navbar-menu .nav-item a:hover {
    color: #ffc107; /* Highlight color on hover */
}

/* Hamburger Menu Icon */
.navbar-menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.navbar-menu-icon .bar {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 4px 0;
    transition: all 0.3s ease;
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(52, 58, 64, 0.95); /* Semi-transparent dark background */
    transition: left 0.3s ease;
    display: flex;
    flex-direction: column;
    z-index: 999;
}

.mobile-menu.visible {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #343a40;
}

.mobile-menu-close {
    font-size: 2rem;
    color: #ffffff;
    cursor: pointer;
}

.mobile-nav {
    list-style: none;
    padding: 20px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mobile-nav .nav-item {
    margin: 15px 0;
}

.mobile-nav .nav-item a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.mobile-nav .nav-item a:hover {
    color: #ffc107;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .navbar-menu {
        display: none; /* Hide menu on small screens */
    }

    .navbar-menu-icon {
        display: flex; /* Show hamburger icon on small screens */
    }

    .navbar-logo {
        margin: 0 auto; /* Center the logo on small screens */
    }
    .mobile-menu {
        /* ... existing styles ... */
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .mobile-menu.visible {
        transform: translateX(0);
    }
}

/* Navbar ends */

/* Newsletter Section */
.newsletter-section {
    background-color: #f5f5f5; /* Light grey background */
    color: #343a40; /* Dark grey text */
    padding: 40px 0;
}

.newsletter-section h2,
.newsletter-section p {
    color: #343a40;
}

.newsletter-section .btn {
    background-color: #ffc107;
    border-color: #ffc107;
    color: #343a40;
}

.newsletter-section .btn:hover {
    background-color: #e0a800;
    border-color: #d39e00;
    color: #fff;
}

#new-registration {
    background-color: #ffc107;
    border: none;
    color: #343a40;
}

#new-registration:hover {
    background-color: #e0a800;
    color: #fff;
}

.alert-info {
    background-color: #d1ecf1;
    color: #0c5460;
    border-color: #bee5eb;
}
/* Menu items start */
/* Full screen background */
.menu-background {
    background-color: #f8f9fa; /* Replace with your desired background color */
    min-height: 100vh; /* Ensure it takes up the full height of the viewport */
    padding: 20px 0; /* Optional padding to give space at the top and bottom */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Container for the menu content */
.menu-container {
    max-width: 1200px; /* You can adjust this as per your design */
    margin: 0 auto; /* Center the container */
    padding: 20px; /* Optional padding inside the container */
}

/* Style for category titles */
/* Target only the h2 within the menu container */
.menu-container h2:nth-of-type(odd) {
    background: linear-gradient(90deg, #ffeb3b, #fbc02d); /* Yellow gradient for odd titles */
    color: #343a40;
    padding: 10px;
    text-align: center;
    font-family: 'Oxanium', sans-serif;
    border-radius: 5px;
}

.menu-container h2:nth-of-type(even) {
    background: linear-gradient(90deg, #e57373, #f44336); /* Red gradient for even titles */
    color: #ffffff;
    padding: 10px;
    text-align: center;
    font-family: 'Oxanium', sans-serif;
    border-radius: 5px;
}

/* Zebra pattern for menu items */
.menu-container .card:nth-child(odd) {
    background-color: #f8f9fa; /* Light grey for odd items */
}

.menu-container .card:nth-child(even) {
    background-color: #e9ecef; /* Slightly darker grey for even items */
}

/* Apply uniform size to title, description, and price */
.card-title, .card-price {
    /* white-space: nowrap; */
    overflow: hidden;
    text-overflow: ellipsis; /* Add ellipsis if text overflows */

}


/* Increase card height for better visibility of the description */
.card {
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
    transition: transform 0.2s ease-in-out; /* Add a smooth hover effect */
    height: 350px; /* Ensure all cards are the same height */
    overflow: hidden; /* Hide overflow content */
    display: flex;
    background-color: #f0f0f0; /* Nice background for cards */
    flex-direction: column;
}

.card:hover {
    transform: scale(1.02); /* Slightly enlarge the card on hover */
}

/* Make sure the image fills the card height */
.card-image-container {
    flex: 0 0 40%; /* Ensure the image takes up 40% of the card's width */
    height: 100%; /* Make sure the image container takes up the full height of the card */
    display: flex; /* Flex container to make the image stretch */
    width: 100%;
}

.card-img-left {
    width: 100%;
    height: 100%; /* Ensure the image covers the full height */
    object-fit: cover; /* Maintain aspect ratio and cover the container */
    border-radius: 0; /* Remove border-radius */
}

/* Add padding and spacing to the card content */
.card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%; /* Ensure card-body takes up the full height */
}


/* Responsive columns for different screen sizes */
@media (max-width: 768px) {
   
    .card {
        flex-direction: column; /* Stack image and content vertically on smaller screens */
        height: auto; /* Let the card height adjust for smaller screens */
    }

    .card-image-container {
        width: 100%;
        height: 100%; /* Set a fixed height for images on smaller screens */
    }

    .card-img-left {
        width: 100%;
        height: 100%; /* Ensure the image fills the container */
        object-fit: cover; /* Cover the full container */
    }

    .card-body {
        padding: 15px; /* Add padding to content area on smaller screens */
    }

    
}

/* Assigning different background colors to category sections */
.category-section:nth-of-type(odd) {
    background: linear-gradient(to bottom, #fdfbfb, #ebedee); 
    /* Soft white to light grey gradient */
    padding: 20px;
}

.category-section:nth-of-type(even) {
    /* Sunset Gradient Background */
    /* background: linear-gradient(135deg, #fdfbfb, #ebedee); */
    background: linear-gradient(to bottom, #fdfbfb, #ebedee); 
    padding: 20px;
}

.price-text {
    color: green;
    font-weight: bold;
}
.card-title {
    font-size: 1.25rem;
    font-weight: bold; /* Make the font bold */
    text-decoration: underline; /* Add underline */
    text-decoration-thickness: 2px; /* Set the thickness of the underline */
    text-decoration-color: #fbc02d; /* Choose a color that fits your design */
    text-underline-offset: 4px; /* Set the distance between text and underline */
}




/* Menu items ends*/
/* Footer Css Starts */


.footer {
    background-color: #343a40;
    color: #fff;
    padding: 40px 0;
}

.footer a {
    color: #fff;
}

.footer a:hover {
    color: #ffc107;
    text-decoration: none;
}

.social-icons a {
    font-size: 24px;
    margin-right: 15px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: currentColor;
}

.fa-facebook:hover {
    color: #3b5998;
}

.fa-instagram:hover {
    color: #e1306c;
}

.fa-tiktok:hover {
    color: #000000;
}

.fa-youtube:hover {
    color: #c4302b;
}

.footer-bottom {
    background-color: #23272b;
    color: #fff;
    padding: 10px 0;
    text-align: center;
}

.footer-bottom .professional-font {
    font-family: 'Montserrat', sans-serif;
}

.location i {
    margin-right: 10px;
}

.location p:hover {
    color: #ffc107;
}

.oxanium-font {
    font-family: 'Oxanium', sans-serif;
}

.social-icons a:hover .fa-facebook {
    color: #3b5998;
}

.social-icons a:hover .fa-instagram {
    color: #e1306c;
}

.social-icons a:hover .fa-tiktok {
    color: #000000;
}

.social-icons a:hover .fa-youtube {
    color: #c4302b;
}

/* Initial state (before scroll) */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px); /* Start below */
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Animation when the element is in view */
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0); /* Move to original position */
}


@media (max-width: 768px) {
    .footer .row, .footer-bottom {
        text-align: center;
    }

    .footer .social-icons {
        margin-left: 0; /* Align icons centrally */
        margin-bottom: 20px; /* Add spacing between icons and address on smaller screens */
    }

    .footer .location {
        margin-top: 20px; /* Add spacing between social icons and addresses */
    }

    .footer-bottom {
        font-size: 14px; /* Reduce text size for smaller screens */
    }

    .footer-bottom .professional-font {
        font-size: 12px; /* Optionally reduce the size of specific span elements */
    }

    /* Newsletter  */
    .newsletter-form .form-row {
        flex-direction: column;
        align-items: center;
    }

    .newsletter-form .col-md-4,
    .newsletter-form .col-md-2 {
        max-width: 100%;
    }

    .newsletter-form .mb-2 {
        width: 100%;
    }
    
}

