/* Global Styles */
body {
    font-family: 'Roboto', sans-serif; /* Google Font for body text */
    line-height: 1.6; /* Line height for readability */
    margin: 0; /* Remove default margin */
    padding: 0; /* Remove default padding */
}

/* Navbar Styles */
.navbar {
    background-color: #343a40; /* Dark background color */
}

.navbar-brand, .navbar-nav .nav-link {
    color: #ffffff; /* Navbar text color */
}

.navbar-brand:hover, .navbar-nav .nav-link:hover {
    color: #ffc107; /* Navbar text color on hover */
}

/* Hero Section Styles */
.hero-section {
    background-image: linear-gradient(to right bottom, #ff416c, #ff4b2b); /* Gradient background */
    color: #ffffff; /* White text color */
    padding: 100px 0; /* Padding top and bottom */
    text-align: center; /* Center align text */
    position: relative; /* Relative positioning for overlay */
}

.hero-section h1 {
    font-size: 4rem; /* Hero section title font size */
    font-weight: bold; /* Bold font weight */
    margin-bottom: 20px; /* Bottom margin */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Text shadow for contrast */
    animation: fadeInDown 1s ease-out; /* Fade-in animation */
}

.hero-section p {
    font-size: 1.5rem; /* Paragraph font size */
    margin-bottom: 40px; /* Bottom margin */
    animation: slideInUp 1s ease-out; /* Slide-in animation */
}

.hero-section .btn-primary {
    background-color: #ffc107; /* Primary button background color */
    border-color: #ffc107; /* Primary button border color */
    color: #343a40; /* Button text color */
    font-size: 1.2rem; /* Button font size */
    padding: 12px 30px; /* Padding inside button */
    text-transform: uppercase; /* Uppercase text */
    letter-spacing: 1px; /* Letter spacing */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Button shadow */
    transition: all 0.3s ease; /* Smooth transition */
}

.hero-section .btn-primary:hover {
    background-color: #ffcd39; /* Hover background color */
    border-color: #ffcd39; /* Hover border color */
    color: #343a40; /* Hover text color */
    transform: scale(1.05); /* Scale up on hover */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2); /* Enhanced button shadow on hover */
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Gradient Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.5)); /* Gradient overlay */
}

/* Menu Section Styles */
.menu-section {
    background-color: #ffffff; /* White background color */
    padding: 100px 0; /* Padding top and bottom */
}

.menu-section h2 {
    font-size: 3rem; /* Section title font size */
    text-align: center; /* Center align text */
    margin-bottom: 40px; /* Bottom margin */
    animation: fadeInUp 1s ease-out; /* Fade-in animation */
}

.menu-section .card {
    border: none; /* Remove card border */
    background-color: #f8f9fa; /* Light gray background */
    transition: transform 0.3s ease; /* Smooth transition */
}

.menu-section .card:hover {
    transform: translateY(-10px); /* Lift card on hover */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Card shadow on hover */
}

/* About Us Section Styles */
.about-section {
    background-color: #f8f9fa; /* Light gray background */
    padding: 100px 0; /* Padding top and bottom */
}

.about-section h2 {
    font-size: 3rem; /* Section title font size */
    text-align: center; /* Center align text */
    margin-bottom: 40px; /* Bottom margin */
    animation: fadeInUp 1s ease-out; /* Fade-in animation */
}

.about-section img {
    max-width: 100%; /* Ensure image fits container */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Image shadow */
    animation: zoomIn 1s ease-out; /* Zoom-in animation */
}

.about-section p {
    font-size: 1.2rem; /* Paragraph font size */
    margin-top: 20px; /* Top margin */
    animation: slideInLeft 1s ease-out; /* Slide-in animation */
}

/* Contact Us Section Styles */
.contact-section {
    background-color: #ffffff; /* White background color */
    padding: 100px 0; /* Padding top and bottom */
}

.contact-section h2 {
    font-size: 3rem; /* Section title font size */
    text-align: center; /* Center align text */
    margin-bottom: 40px; /* Bottom margin */
    animation: fadeInUp 1s ease-out; /* Fade-in animation */
}

.contact-section .form-control {
    border-color: #ced4da; /* Form control border color */
}

.contact-section .btn-primary {
    background-color: #ffc107; /* Primary button background color */
    border-color: #ffc107; /* Primary button border color */
    color: #343a40; /* Button text color */
    font-size: 1.2rem; /* Button font size */
    padding: 12px 30px; /* Padding inside button */
    text-transform: uppercase; /* Uppercase text */
    letter-spacing: 1px; /* Letter spacing */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Button shadow */
    transition: all 0.3s ease; /* Smooth transition */
}

.contact-section .btn-primary:hover {
    background-color: #ffcd39; /* Hover background color */
    border-color: #ffcd39; /* Hover border color */
    color: #343a40; /* Hover text color */
    transform: scale(1.05); /* Scale up on hover */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2); /* Enhanced button shadow on hover */
}

.contact-section textarea.form-control {
    resize: vertical; /* Allow vertical resizing */
}

/* Footer Styles */
.footer {
    background-color: #343a40; /* Dark background color */
    color: #ffffff; /* White text color */
    padding: 30px 0; /* Padding top and bottom */
    text-align: center; /* Center align text */
}

.footer a {
    color: #ffffff; /* Footer link text color */
}

.footer a:hover {
    color: #ffc107; /* Footer link text color on hover */
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 3rem; /* Responsive font size adjustment */
    }
    
    .hero-section p {
        font-size: 1.2rem; /* Responsive font size adjustment */
    }

    .menu-section .card {
        margin-bottom: 20px; /* Bottom margin for cards on small screens */
    }
}

/* About Us Section Styles */

.about-section {
    background-color: #f8f9fa; /* Light gray background */
    padding: 100px 0; /* Padding top and bottom */
    position: relative; /* Relative positioning for overlay */
    overflow: hidden; /* Hide overflow for gradient overlay */
}

.about-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right bottom, #fc4a1a, #f7b733); /* Gradient overlay */
    opacity: 0.8; /* Overlay opacity */
    z-index: 0; /* Behind content */
}

.about-section .container {
    position: relative; /* Relative positioning for z-index */
    z-index: 1; /* Above gradient overlay */
}

.about-section h2 {
    font-size: 3.5rem; /* Section title font size */
    text-align: center; /* Center align text */
    margin-bottom: 40px; /* Bottom margin */
    color: #ffffff; /* White text color */
    position: relative; /* Relative positioning for animations */
    animation: fadeInUp 1s ease-out; /* Fade-in animation */
}

.about-section img {
    max-width: 100%; /* Ensure image fits container */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Image shadow */
    animation: zoomIn 1s ease-out; /* Zoom-in animation */
}

.about-section p {
    font-size: 1.2rem; /* Paragraph font size */
    margin-top: 20px; /* Top margin */
    color: #ffffff; /* White text color */
    position: relative; /* Relative positioning for animations */
    animation: slideInLeft 1s ease-out; /* Slide-in animation */
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}








/* CSS Animation for One-time Rotate Effect */
.rotate-animation {
    animation-name: rotateAnimation;
    animation-duration: 1s; /* Adjust duration as needed */
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards; /* Keeps the element in its final state after animation */
}

@keyframes rotateAnimation {
    100% {
        transform: rotate(360deg); /* Rotates element 360 degrees */
    }
}








/* CSS Animation for Rotate Effect */
.rotate-animation {
    animation-name: rotateAnimation;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
}

@keyframes rotateAnimation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}








.hero-section {
    background-image: url('hero-bg.jpg');
    background-size: cover; /* Cover the entire container */
    background-position: center; /* Center the background image */
    height: 100vh; /* Adjust the height as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff; /* Text color on top of the background */
    padding: 80px 20px; /* Padding for content inside the hero section */
    position: relative; /* Ensure positioning context for overlay */
}

/* Darken and blur overlay */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay color */
    z-index: 1; /* Ensure overlay is above the background image */
    backdrop-filter: blur(5px); /* Blur effect */
}

.hero-section h1,
.hero-section p,
.hero-section .btn-primary {
    position: relative; /* Ensure text is above the overlay */
    z-index: 2; /* Ensure text is above the overlay */
}

.hero-section h1 {
    font-size: 3.5rem; /* Example font size for the heading */
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 1.5rem; /* Example font size for the paragraph */
    margin-bottom: 40px;
}

.hero-section .btn-primary {
    font-size: 1.2rem; /* Example font size for the button */
    z-index: 2; /* Ensure button is above the overlay */
    position: relative; /* Ensure button is above the overlay */
}













.hero-section {
    background-image: url('hero-bg.jpg');
    background-size: cover; /* Cover the entire container */
    background-position: center; /* Center the background image */
    height: 100vh; /* Adjust the height as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff; /* Text color on top of the background */
    padding: 80px 20px; /* Padding for content inside the hero section */
}

.hero-section h1 {
    font-size: 3.5rem; /* Example font size for the heading */
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 1.5rem; /* Example font size for the paragraph */
    margin-bottom: 40px;
}

.hero-section .btn-primary {
    font-size: 1.2rem; /* Example font size for the button */
}




.menu-section {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('menu-bg.jpg');
    background-size: cover; /* Ensure the gradient covers the entire background */
    padding: 80px 0; /* Adjust padding as needed */
    color: #000; /* Text color set to black */
    text-align: center;
}

.menu-section h2 {
    margin-bottom: 40px;
}

.menu-section .card {
    border: none; /* Remove card borders */
    transition: transform 0.3s ease-in-out; /* Add a smooth transform effect */
}

.menu-section .card:hover {
    transform: scale(1.05); /* Enlarge card on hover */
}

.menu-section .card-img-top {
    height: 250px; /* Example height for menu item images */
    object-fit: cover; /* Ensure images cover the entire space */
}







/* CSS Animation for Rotate Effect */
.rotate-animation {
    animation-name: rotateAnimation;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

@keyframes rotateAnimation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}









.menu-section {
    background-color: #f8f9fa; /* Light gray background color */
    padding: 80px 0; /* Adjust padding as needed */
}

.menu-section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #333; /* Dark color for heading text */
}












.menu-section {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('menu-bg.jpg');
    background-size: cover; /* Ensure the gradient covers the entire background */
    padding: 80px 0; /* Adjust padding as needed */
    color: #fff; /* Text color on top of the background */
    text-align: center;
}

.menu-section h2 {
    margin-bottom: 40px;
}






.menu-section {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('menu-bg.jpg');
    background-size: cover; /* Ensure the gradient covers the entire background */
    padding: 80px 0; /* Adjust padding as needed */
    color: #fff; /* Text color set to white for non-card text */
    text-align: center;
}

.menu-section h2 {
    margin-bottom: 40px;
    color: #fff; /* Heading text color set to white */
}

.menu-section .card {
    background-color: rgba(255, 255, 255, 0.8); /* Light background for card */
    color: #000; /* Text color set to black */
    border: none; /* Remove card borders */
    transition: transform 0.3s ease-in-out; /* Add a smooth transform effect */
}

.menu-section .card-body {
    padding: 20px;
    color: #000; /* Text color set to black */
}



