@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 {
    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 {
    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('./images/background.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: 5em;
    font-weight: bold;
    color: var(--main-color);
    animation: dropDown 2s ease forwards;
    margin-top: 120px;
}

.herooo-content p {
    font-family: 'Playfair Display', serif;
    font-weight: 500; /* Adjust as needed for visual emphasis */
    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;
    }
}


/*   book a table css................................................*/


body {
    background: url('./images/background2.jpg') center/cover no-repeat;
    margin: 0;
    font-family: Arial, sans-serif;
}

.contact-container {
    background: url('./images/background2.jpg') center/cover no-repeat; /* Background image */
    padding: 40px;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    margin: 40px auto;
    color: #fff;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
    position: relative;
    overflow: hidden;
}

.contact-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.0); /* Dark overlay */
    border-radius: inherit;
    z-index: 1;
}



.contact-container h1,
.contact-container h2,
.contact-container p,
.contact-container form {
    
    position: relative;
    z-index: 2;
}

.contact-container h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 500; /* Adjust as needed for visual emphasis */

    font-size: 4em;
    margin-bottom: 10px;
    color: #ff9800;
    font-family: 'Georgia', serif;
}

.contact-container h2 {
    font-size: 1.5em;
    font-weight: normal;
    margin-bottom: 15px;
    color: #F9B233;
}

.contact-container p {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 500; /* Rajdhani default weight for readability */
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #000;
}
.contact-container span{
    font-family: 'Rajdhani', sans-serif;
    font-weight: 500; /* Rajdhani default weight for readability */
}

/* Form styling */
.contact-container form {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 450; /* Rajdhani default weight for readability */
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-container input,
.contact-container textarea {
    padding: 12px;
    border: 1px solid #666;
    border-radius: 4px;
    font-size: 1em;
    background: #fff;
    color: #000;
    outline: none;
}

/* time stamp for booking date ......................*/
#bookingTime {
    padding:12px;
    border: 1px solid #666;
    border-radius: 4px;
    font-size: 1em;
    background: #fff;
    color: #000;
    outline: none;
}


/* Set a common width for form inputs and the dropdown */
.contact-container input,
.contact-container .dropdown {
    width: 100%; /* Ensures all elements expand to fill the container width */
    max-width: 900px; /* Or set a specific max width for uniformity */
}

/* Dropdown styling */
.dropdown {
    position: relative;
    width: 100%; /* Matches other input fields */
    max-width: 300px; /* Optional: set a max width to ensure uniform size */
}

.dropdown-toggle {
    width: 100%;
    padding: 12px;
    background-color: #fff;
    color: #000;
    font-size: 1em;
    border: 1px solid #666;
    border-radius: 4px;
    cursor: pointer;
    text-align: left;
    outline: none;
    box-sizing: border-box; /* Ensures padding is included within the width */
}

/* Dropdown menu styling */
/* Dropdown menu styling */
.dropdown-menu {
    display: none;
    position: absolute;
    width: 100%; /* Ensures dropdown menu width matches the toggle button */
    max-width: 900px; /* Keeps it consistent with other form elements */
    max-height: 200px; /* Sets maximum height to allow scrolling */
    overflow-y: auto; /* Enables vertical scrolling */
    background-color: #fff;
    border: 1px solid #666;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 0;
    transform: translateY(-10px); /* Dropdown slides down */
    z-index: 1000;
}

.dropdown-toggle {
    width: 100%;
    padding: 12px;
    background-color: #fff;
    color: #000;
    font-size: 1em;
    border: 1px solid #666;
    border-radius: 4px;
    cursor: pointer;
    text-align: left;
    outline: none;
    box-sizing: border-box;
    display: flex; /* Enables flex layout */
    justify-content: space-between; /* Space between text and arrow */
    align-items: center; /* Center-aligns text and arrow vertically */
}

/* Arrow styling */
.dropdown-arrow {
    font-size: 0.9em; /* Adjust size if needed */
    color: #666; /* Match arrow color to the border */
}


/* Show dropdown menu when active */
.dropdown.active .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Dropdown item styling */
.dropdown-item {
    padding: 10px;
    cursor: pointer;
}

.dropdown-item:hover {
    background-color: #f0f0f0;
    color: #000;
}





.contact-container input[type="date"],
.contact-container input[type="time"],
.contact-container input[type="number"] {
    -webkit-appearance: none; /* Remove default styling for date, time, and number inputs */
}

.contact-container textarea {
    resize: vertical;
    height: 100px;
}

.contact-container .submit-button {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 500; /* Rajdhani default weight for readability */
    padding: 12px;
    background-color: #F9B233;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1.4em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-container .submit-button:hover {
    background-color: #e68a00;
    transform: scale(1.05);
}

.reservation-dates {
    display: flex;
    flex-direction: column;
    gap: 5px; /* Space between date entries */
}

.reservation-dates p {
    margin: 0;
    padding: 5px;
    border: 1px solid transparent; /* Default border */
    border-radius: 4px; /* Rounded corners */
    transition: background-color 0.3s, color 0.3s, border 0.3s; /* Smooth transition */
}

.reservation-dates p:nth-child(1) {
    background-color: #ffeb3b; /* Highlight today's date */
    color: #000;
    border: 1px solid #ff9800; /* Highlight border */
}

.reservation-dates p:hover {
    background-color: #f0f0f0; /* Background color on hover */
}

/* Optional: Style the input fields */
.contact-container input[type="time"] {
    margin-top: 10px; /* Spacing above the time input */
}



/* Third page homepage HerOOOOO Section Styling................................................................................. */
/* HerOOOOO Section Styling */

/* fifth section footer......................................................................... */

.herooooo-section {
    position: relative;
    background: url('./image/boat.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: 5em; /* Adjusted for mobile */
    font-weight: bold;
    color: #ff9800;
    margin-bottom: 10px;
}

.herooooo-content p {
    font-family: 'Playfair Display', serif;
    font-weight: 500; /* Adjust as needed for visual emphasis */
    font-size: 1.5em;
    margin-bottom: 10px;
}

.subtext {
  
    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: 
