
@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................................................................................................*/

.herooo-section {
    position: relative;
    height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #7a5b1f;
    overflow: hidden;
}



/* 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('./image/boat.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: 600;
    font-size: 6em;
    font-weight: bold;
    color: var(--main-color);
    animation: dropDown 2s ease forwards;
    margin-top: 80px;
}

.herooo-content p {
    font-family: 'Playfair Display', serif;
    font-weight: 400; /* Adjust as needed for visual emphasis */
    font-size: 2em;
    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 page css for online order logos  .........*/
/* Fourth Page CSS ............................................ */
.heroooo-section {
    background: url('./image/background2.jpg') no-repeat center center/cover;
    padding: 60px 20px;
    text-align: center;
    color: #fff;
}

.menu-items-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 20px;
    flex-wrap: wrap; /* Allows items to wrap on smaller screens */
}

.menu-item {
    max-width: 190px; /* Controls the container width */
    text-align: center;
    opacity: 0;
    transform: translateY(40px); /* Start slightly below for the animation effect */
    animation: slideUp 0.6s ease forwards; /* Animation on load */
    animation-delay: calc(var(--i) * 0.2s); /* Delay each item */
}

.menu-item:nth-child(1) { --i: 1; }
.menu-item:nth-child(2) { --i: 2; }
.menu-item:nth-child(3) { --i: 3; }
.menu-item:nth-child(4) { --i: 4; }

.menu-item img {
    background-color:#000;
    width: 190px; /* Fixed width */
    height: 200px; /* Fixed height */
    border-radius: 20%; /* Make images circular */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease; /* Optional: Adds subtle scale effect */
    object-fit: cover; /* Ensures the image fits within the circular frame */
}

.menu-item img:hover {
    transform: scale(1.05); /* Optional: Slight scale-up on hover */
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0); /* Final position */
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .menu-items-container {
        gap: 20px; /* Reduce gap between items on smaller screens */
    }
    .menu-item img {
        width: 150px; /* Reduce image size for tablets and smaller screens */
        height: 150px;
    }
}

@media (max-width: 480px) {
    .menu-items-container {
        flex-direction: column; /* Stack items vertically on very small screens */
        gap: 15px;
    }
    .menu-item img {
        width: 120px; /* Smaller size for mobile screens */
        height: 120px;
    }
}
