@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Rajdhani:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Monoton&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Rajdhani:wght@300;400;500;600;700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Milonga&family=Monoton&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Rajdhani:wght@300;400;500;600;700&display=swap');
/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
    scroll-behavior: smooth;
    list-style: none;
    text-decoration: none;
}

/* Color Variables */
:root {
    --main-color: #ff9800;
    --text-color: #ffffff; /* White text for better visibility on black */
    --bg-color: #000000; /* Black background for navbar */
}

/* Body and Header Styling */
body {
    font-family: 'Open Sans', sans-serif;
    color: #333333;
    background-color: #ffffff;
}

/* Header Styling */
header {
    font-family: 'Playfair Display', serif;
    font-weight: 700; /* Adjust as needed for visual emphasis */
    background-color: var(--bg-color);
    padding: 0; /* Remove extra padding */
    position: sticky; /* Make the entire header sticky */
    top: 0; /* Stick to the top */
    z-index: 1000; /* Ensure it stays on top of other content */
}
/* Navbar Styling */
.navbar {
    font-family: 'Playfair Display', serif;
    font-weight: 700; /* Adjust as needed for visual emphasis */
    background-color: black !important;
    width: 100%;
    padding: 10px 0;
    transition: transform 1s ease-out, opacity 1s ease-out;
   
}

}
/* Navbar Styling */
.navbar-nav {
    display: flex;
    justify-content: center;
    width: 100%;
}

/* Additional Styling for Sticky Effect (Optional) */
.navbar.show {
    opacity: 1;
    transform: translateY(0);
}

/* Logo Styling */
header .navbar-brand img {
    width: 90px;
}

/* Center Navigation Links */
.navbar-nav {
    display: flex;
    justify-content: center;
    width: 100%;
}

.navbar-nav .nav-link {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 500;
    margin: 0 15px; /* Space between links */
    transition: color 0.3s;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
    color: var(--main-color);
}

/* Social Icons Styling */
.social-icons a {
    margin: 0 8px; /* Space between icons */
}

.social-icons a img {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    transition: transform 0.4s, box-shadow 0.4s;
}

.social-icons a:hover img {
    transform: scale(1.2);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Shadow for hover effect */
}

/* Responsive Navbar Animation */
.navbar {
    opacity: 0;
    transform: translateY(-100px);
}

.navbar.show {
    opacity: 1;
    transform: translateY(0);
}

 /* Custom styles for the navbar toggler */
 .navbar-toggler {
    background-color: transparent; /* Optional: to make the button background transparent */
}

.navbar-toggler-icon {
    background-color: #fff; /* Main color */
    border-radius: 5px; /* Optional: adds a slight rounded effect */
}

/* If you want to change the color of the toggler icon when active */
.navbar-toggler:focus .navbar-toggler-icon,
.navbar-toggler:hover .navbar-toggler-icon {
    background-color: #fff; /* Same main color */
    opacity: 0.7; /* Optional: slightly transparent on hover/focus */

}

    /*  first page css...........................................................................*/

    .herooo-section {
        position: relative;
        height: 600px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        color: #7a5b1f;
        overflow: hidden;
    }
    
    /* Background Layer - background2.jpg */
    .herooo-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('./images/background2.jpg') no-repeat center center/cover;
        z-index: -3;
    }
    
    /* Foreground Layer - bar2.jpg */
    /* Foreground Layer - bar2.jpg with animation */
    .herooo-section::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 300px; /* Height for bar2.jpg layer */
        background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
            url('./images/bar2.jpg') no-repeat center center/cover;
        z-index: -2;
        animation: backgroundMove 20s infinite alternate;
    }
    
    
    /* Main Heading and Subtitle */
    .herooo-content {
        position: relative;
        z-index: 2;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .herooo-content h1 {
        font-family: 'Milonga', cursive;
        font-weight: 400;
    
        font-size: 4.5em;
        font-weight: bold;
        color: var(--main-color);
        animation: fadeIn 2s ease forwards;
    }
    
    .herooo-content p {
        font-family: 'Playfair Display', serif;
    font-weight: 700; /* Adjust as needed for visual emphasis */

        font-size: 3em;
        color: #fff;
        animation: fadeIn 3s ease forwards;
    }
    
   /* Box Container with Shadow */
.bar-box {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    max-width: 1000px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    position: absolute;
    top: 250px; /* Overlapping position over bar2.jpg */
    z-index: 1;
    
    /* Animation for bottom-up effect */
    opacity: 0;
    transform: translateY(100px); /* Start slightly below */
    animation: slideUp 1s ease-out forwards;
}

/* Keyframes for Bottom-Up Animation */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(100px); /* Starting point */
    }
    to {
        opacity: 1;
        transform: translateY(0); /* Original position */
    }
}

/* Left Half: Image */
.bar-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.bar-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Right Half: Text Content */
.bar-text {
    flex: 1;
    padding: 30px;
    color: #333;
    text-align: left;
}

.bar-text .highlight {
    color: #f7b731;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.bar-text h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700; /* Adjust as needed for visual emphasis */
    font-size: 2rem;
}


.bar-text h2 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 400; /* Rajdhani default weight for readability */
    font-size: 2rem;
    color: #333;
    margin-bottom: 15px;
}

.bar-text p {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 400; /* Rajdhani default weight for readability */
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.book-table {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 400; /* Rajdhani default weight for readability */
    background-color: var(--main-color);
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.4s;
}

.book-table:hover {
    background-color: #b8810d;
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .herooo-section {
        height: auto;
    }

    .bar-box {
        flex-direction: column;
        position: static;
        margin-top: 20px;
    }

    .herooo-content h1 {
        font-size: 2.5em;
    }

    .herooo-content p {
        font-size: 1.2em;
        font-family: 'Rajdhani', sans-serif;
    font-weight: 400; /* Rajdhani default weight for readability */
    }
}

/* Foreground Layer - bar2.jpg */
/* Foreground Layer - bar2.jpg with animation */
.herooo-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 350px; /* Height for bar2.jpg layer */
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('./images/menu2.jpg') no-repeat center center/cover;
    z-index: -2;
    animation: backgroundMove 20s infinite alternate;
}
/* Main Heading and Subtitle */
.herooo-content {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 30px;
}

.herooo-content h1 {
    font-family: 'Milonga', cursive;
    font-weight: 400;
    font-size: 6em;
    font-weight: bold;
    color: var(--main-color);
    animation: dropDown 2s ease forwards;
    margin-top: 40px;
}

.herooo-content p {
    font-size: 1em;
    color: #fff;
    animation: bottomUp 3s ease forwards;
}

/* Keyframes for Drop Down Effect on h1 */
@keyframes dropDown {
    0% {
        opacity: 0;
        transform: translateY(-50px); /* Start above */
    }
    100% {
        opacity: 1;
        transform: translateY(0); /* End at the original position */
    }
}

/* Keyframes for Bottom Up Effect on p */
@keyframes bottomUp {
    0% {
        opacity: 0;
        transform: translateY(50px); /* Start below */
    }
    100% {
        opacity: 1;
        transform: translateY(0); /* End at the original position */
    }
}




/* Keyframes for Background Movement */
/* Keyframes for Background Movement */
@keyframes backgroundMove {
    0% { background-position: center; }
    100% { background-position: center 10px; } /* Adjust the values to control movement */
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .herooo-section {
        height: auto;
    }

    .bar-box {
        flex-direction: column;
        position: static;
        margin-top: 20px;
    }

    .herooo-content h1 {
        font-size: 2.5em;
    }

    .herooo-content p {
        font-size: 1.2em;
    }
}



/*  second and third page review page cssssssssssss.........................sssssssssssssssssssssssssssssssssssssss*/


/*  second page csssssssssssssssssssssssssssssssssssssssssssssssssss*/
.heroooo-section {
    background: url('./images/background2.jpg') no-repeat center center/cover;
    padding: 60px 20px;
    text-align: center;
    color: #7a5b1f;
}

.heroooo-content h1 {
    font-family: 'Milonga', cursive;
    font-weight: 400;
    font-size: 5em;
    font-weight: bold;
    color: #da9b16;
}

.heroooo-content p {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600; /* Rajdhani default weight for readability */
    font-size: 1.em;
    color: #333;
}

.description {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 500; /* Rajdhani default weight for readability */
    max-width: 600px;
    margin: 20px auto;
    line-height: 1.6;
}

.menu-items-container {
    display: flex;
    flex-wrap: wrap; /* Ensure items wrap on smaller screens */
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.menu-item {
    max-width: 300px;
    text-align: center;
    flex: 1 1 calc(33.33% - 20px); /* Responsive item sizing */
}

.menu-item img {
    width: 100%;
    height: auto;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.5);
}

.menu-item h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700; /* Adjust as needed for visual emphasis */
    font-size: 1.5em;
    font-weight: bold;
    color: #333;
    margin-top: 10px;
}

.menu-item p:first-of-type {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600; /* Rajdhani default weight for readability */
    color: #da9b16;
    font-size: 1.em;
    margin-bottom: 5px;
}

.menu-item p:last-of-type {
    color: #333;
}

/* Dark overlay background for menu items */
.menu-item {
    position: relative;
    overflow: hidden;
}

/* Smooth zoom on hover */
.menu-item img {
    width: 100%;
    height: auto;
    transition: transform 0.4s ease;
}

.menu-item:hover img {
    transform: scale(1.1);
}

/* Darkens background on hover */
.menu-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0); /* Initially transparent */
    transition: background-color 0.4s ease;
    z-index: 1;
}

.menu-item:hover::before {
    background-color: rgba(0, 0, 0, 0.0); /* Darkens background on hover */
}

/* Ensure text is above the overlay */
.menu-item h3, .menu-item p {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600; /* Rajdhani default weight for readability */
    position: relative;
    z-index: 2;
    color: #000;
}

/* Apply heartbeat animation on hover with a slower speed */
.menu-item:hover {
    animation: heartbeat 1.2s ease-in-out infinite;
}

.menu-button {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 400; /* Rajdhani default weight for readability */
    margin-top: 30px;
    text-align: center;
}

.menu-button a {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600; /* Rajdhani default weight for readability */
    display: inline-block;
    background-color: var(--main-color);
    color: #fff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 5px;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.menu-button a:hover {
    transform: scale(1.1);
    background-color: #b8810d;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .heroooo-content h1 {
        font-size: 2.5em; /* Adjust for smaller screens */
    }

    .heroooo-content p {
        font-size: 0.9em; /* Adjust for smaller screens */
    }

    .menu-item {
        flex: 1 1 calc(50% - 20px); /* Two items per row on tablets */
        max-width: none; /* Remove max-width for better responsiveness */
    }
}

@media (max-width: 480px) {
    .heroooo-content h1 {
        font-size: 2em; /* Further reduce font size for small screens */
    }

    .menu-item {
        flex: 1 1 100%; /* Full-width items on mobile */
    }

    .menu-button a {
        padding: 10px; /* Adjust padding for buttons */
        font-size: 1em; /* Smaller button text */
    }
}

@keyframes dropDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bottomUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-drop, .animate-up {
    opacity: 0;
    transform: translateY(20px);
}

.animate-drop.show {
    animation: dropDown 1s ease-out forwards;
}

.animate-up.show {
    animation: bottomUp 1s ease-out 0.5s forwards;
}


/*third page csssssssssssssssssssssssssssss*/

.heroo-section {
    background: url('./images/background2.jpg') no-repeat center center/cover;
    padding: 60px 20px;
    text-align: center;
    color: #7a5b1f;
}

.heroo-content h1 {
    font-family: 'Milonga', cursive;
    font-weight: 600;

    font-size: 5em;
    font-weight: bold;
    color: #da9b16;
}

.heroo-content p {
    font-family: 'Playfair Display', serif;
    font-weight: 500; /* Adjust as needed for visual emphasis */
    font-size: 1.2em;
    color: #333;
}

.description {
    max-width: 600px;
    margin: 20px auto;
    line-height: 1.6;
}

.food-images-container {
    display: flex;
    justify-content: center;
    gap: 25px;
    padding: 20px;
}

.food-image {
    position: relative;
    flex: 1;
    max-width: 400px;
}

.food-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;

    z-index: 1;
}

.food-image img {
    width: 100%;
    height: auto;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.5);
    display: block;
}

/* Modal CSS */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 10;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9); /* Black background with opacity */
}

.modal-content {
    display: block;
    margin: auto;
    max-width: 90%;
    max-height: 90%;
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}


.food-image {
    position: relative;
    flex: 1;
    max-width: 400px;
    overflow: hidden;
    transition: transform 0.3s ease; /* Smooth animation on hover */
}

.food-image:hover {
    transform: scale(1.1); /* Slightly enlarges the image */
}

.food-image img {
    width: 100%;
    height: auto;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.5);
    display: block;
    transition: transform 0.3s ease; /* Smooth animation for the image itself */
}

.food-image:hover img {
    transform: scale(1.05); /* Slight enlargement for the image on hover */
}




.visit-button {
    margin-top: 30px;
    text-align: center;
}

.visit-button a {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 500; /* Rajdhani default weight for readability */
    display: inline-block;
    background-color: var(--main-color);
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1.1em;
    transition: background-color 1.1s ease, transform 1.1s ease;
}

.visit-button a:hover {
    transform: scale(1.1);
    background-color: #b8810d;
}

/* Animation for the text elements */
@keyframes dropDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bottomUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
/* fifth page homepage HerOOOOO Section Styling................................................................................. */
/* HerOOOOO Section Styling */

/* fifth section footer......................................................................... */

.herooooo-section {
    position: relative;
    background: url('./images/background.jpg') no-repeat center center/cover;
    padding: 40px 15px;
    color: #fff;
    text-align: center;
}

/* Dark overlay */
.dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

/* Content within the section */
.herooooo-content {
    position: relative;
    z-index: 2;
}

.herooooo-content h1 {
    font-family: 'Milonga', cursive;
    font-weight: 400;
    font-size: 4em; /* Adjusted for mobile */
    font-weight: bold;
    color: #ff9800;
    margin-bottom: 10px;
}

.herooooo-content p {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 400; /* Rajdhani default weight for readability */
    font-size: 1.5em;
    margin-bottom: 10px;
}

.subtext {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 400; /* Rajdhani default weight for readability */
    font-size: 1.2em;
    color: #ccc;
    margin-bottom: 20px;
}

.join-button {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600; /* Rajdhani default weight for readability */
    display: inline-block;
    padding: 12px 25px;
    background-color: #ff9800;
    color: #fff;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.4s;
    margin-top: 10px;
}

.join-button:hover {
    background-color: #e68a00;
    transform: scale(1.05);
}

/* Info sections - flex layout */
.info-sections {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 400; /* Rajdhani default weight for readability */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    position: relative;
    z-index: 2;
}

.info-box {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 400; /* Rajdhani default weight for readability */
    background-color: rgba(0, 0, 0, 0.8);
    padding: 15px;
    border-radius: 10px;
    width: 100%; /* Full width for smaller screens */
    max-width: 320px; /* Limit width on larger screens */
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.info-box.show {
    opacity: 1;
    transform: translateY(0);
}

.icon img {
    width: 40px; /* Adjusted for mobile */
    height: 40px;
    margin-bottom: 10px;
}

.info-box h3 {
    font-size: 1.3em;
    color: #ff9800;
    margin-bottom: 10px;
}

.info-box ul {
    list-style-type: none;
    padding: 0;
    font-size: 0.9em;
}

.info-box li {
    color: #ccc;
    margin-bottom: 15px;
}

.map-container iframe {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 250px;
}

/* Media queries for mobile responsiveness */
@media (max-width: 768px) {
    .herooooo-content h1 {
        font-size: 2em;
    }

    .herooooo-content p {
        font-size: 
    }