body {
    font-family: 'Times New Roman', Times, serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

main {
    padding: 20px;
}

section {
    margin-bottom: 20px;
    background: white;
    border-radius: 5px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero {
    position: relative;
    max-width: 100%;
    height: 80vh; /* Default height for hero section */
    overflow: hidden;
}

/* Slide styles */
.hero img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    object-fit: cover; /* Ensures image covers the slide area */
    display: block; /* Removes any bottom space */
}

.hero img.active {
    opacity: 1;
}

/* Title styles */
#hero-title {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    font-size: 2rem; /* Responsive font size */
    z-index: 1; /* Ensures title is above images */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero {
        height: 60vh; /* Adjust height for medium screens */
    }

    #hero-title {
        font-size: 1.5rem; /* Smaller font on medium screens */
        bottom: 15px;
        left: 15px;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 50vh; /* Further adjust height for small screens */
    }

    #hero-title {
        font-size: 1.2rem; /* Even smaller font on small screens */
        bottom: 10px;
        left: 10px;
    }

    /* Ensure images maintain aspect ratio */
    .hero img {
        object-fit: cover; /* Maintain aspect ratio */
    }

    /* Center title text for better appearance */
    #hero-title {
        text-align: center;
        left: 0;
        right: 0;
        margin: 0 auto; /* Center the title */
        bottom: 10px; /* Adjust bottom position */
    }
}

/* Additional styles for better visual presentation */
@media (max-width: 320px) {
    #hero-title {
        font-size: 1rem; /* Adjust font size for very small screens */
        padding: 0 10px; /* Add padding to prevent text from touching edges */
    }
}

        /* Place the advanced CSS code here */
       body {
    font-family: Georgia, 'Times New Roman', Times, serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 20px;
}

.menu-section {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.menu-title {
    text-align: center;
    font-size: 2em;
    margin-bottom: 20px;
    color: #35424a;
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.menu-item {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.menu-item img {
    width: 100%;
    height: 200px; /* Fixed height for uniformity */
    object-fit: cover; /* Maintain aspect ratio */
}

.menu-item h3 {
    font-size: 1.5em;
    color: #35424a;
    margin: 10px;
}

.menu-item p {
    font-size: 1em;
    color: #777;
    margin: 0 10px 10px;
}

.menu-item strong {
    font-size: 1.2em;
    color: #e74c3c; /* Highlight price */
    margin: 0 10px 10px;
}

.order-button {
    display: block;
    text-align: center;
    background-color: #35424a;
    color: white;
    padding: 10px;
    border-radius: 5px;
    text-decoration: none;
    margin: 10px;
    transition: background-color 0.3s;
}

.order-button:hover {
    background-color: #2c3e50;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .menu-title {
        font-size: 1.8em;
    }
    .menu-item img {
        height: 250px; /* Adjust image height for smaller screens */
    }
    .menu-item h3 {
        font-size: 1.4em; /* Smaller title on medium screens */
    }
    .menu-item p {
        font-size: 0.9em; /* Smaller paragraph text */
    }
}

@media (max-width: 480px) {
    .menu-title {
        font-size: 1.5em; /* Even smaller title on small screens */
    }
    .menu-items {
        grid-template-columns: 1fr; /* Stack menu items vertically */
    }
    .menu-item img {
        height: 100px; /* Further adjust image height for small screens */
    }
    .menu-item h3 {
        font-size: 1.2em; /* Smaller title for small screens */
    }
    .menu-item p {
        font-size: 0.8em; /* Smaller paragraph text */
    }
    .menu-item strong {
        font-size: 1em; /* Adjust price font size */
    }
    .order-button {
        padding: 8px; /* Adjust button padding */
        font-size: 0.9em; /* Smaller button font size */
    }
}

.order-section {
            max-width: 1200px;
            margin: auto;
            background: white;
            padding: 20px;
            border-radius: 5px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        h2 {
            color: #35424a;
            text-align: center;
        }
.order-button {
    display: flex;
    justify-content: center; /* Center the button */
    margin-top: 20px; /* Space above the button */
}

.order-button a {
    background-color: #35424a; /* Button background color */
    color: white; /* Text color */
    padding: 15px 30px; /* Padding for the button */
    border-radius: 5px; /* Rounded corners */
    text-decoration: none; /* Remove underline */
    font-size: 1.2em; /* Font size */
    font-weight: bold; /* Bold text */
    position: relative; /* For positioning effects */
    overflow: hidden; /* Hide overflow for the effect */
    transition: background-color 0.3s, transform 0.3s; /* Smooth transitions */
}

.order-button a::before {
    content: ""; /* Create a pseudo-element for the effect */
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2); /* Light overlay effect */
    transition: width 0.3s, left 0.3s; /* Smooth transition for the effect */
    z-index: 0; /* Behind the text */
}

.order-button a:hover {
    background-color: #2c3e50; /* Darker background on hover */
    transform: translateY(-2px); /* Slight lift effect */
}

.order-button a:hover::before {
    width: 100%; /* Expand the overlay effect */
    left: 0; /* Align to the left */
}

.order-button a span {
    position: relative; /* Positioning for text */
    z-index: 1; /* Ensure text is above the overlay */
}


 body {
            
            background-color: #f4f4f4;
            margin: 0;
            padding: 20px;
        }
        .map-container,
        #contact {
            background: white;
            border-radius: 5px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding: 20px;
        }
        .contact-section {
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            margin-top: 20px;
        }
        .map-container {
            flex: 1;
            margin-left: 20px; /* Space between form and map */
        }
        #contact {
            flex: 1;
        }
        h2, h3 {
            color: #35424a;
        }
        iframe {
            width: 100%;
            height: 300px;
            border: 0;
        }
        form {
            display: flex;
            flex-direction: column;
        }
        input[type="text"],
        input[type="email"],
        input[type="tel"],
        input[type="subject"],
        textarea {
            margin-bottom: 10px;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 5px;
        }
        button {
            padding: 10px;
            background-color: #35424a;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        button:hover {
            background-color: #2c3e50;
        }

        /* Specific styles for select element */
select {
    appearance: none; /* Remove default styling for better customization */
    background-color: #fff; /* White background */
    background-repeat: no-repeat;
    background-position: right 10px center; /* Position the arrow */
    background-size: 12px; /* Size of the arrow */
}

/* Add focus styles */
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus,
select:focus {
    border-color: #007BFF; /* Change border color on focus */
    outline: none; /* Remove default outline */
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5); /* Add a subtle shadow */
}

        /* Responsive Styles */
        @media (max-width: 768px) {
            .contact-section {
                flex-direction: column; /* Stack on small screens */
            }
            .map-container {
                margin-left: 0; /* Remove margin on small screens */
                margin-top: 20px; /* Space above map */
            }
        }



#reservations {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.reservation-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
}

/* Form and Image Container Styles */
.form-container, .image-container {
    flex: 1;
    display: flex;
    align-items: center; /* Center content vertically */
    justify-content: center; /* Center content horizontally */
    padding: 20px;
    box-sizing: border-box; /* Include padding in width/height calculations */
}

.form-container {
    border: 1px solid #ccc;
    border-radius: 8px;
    margin-right: 20px; /* Space between form and image */
}

.image-container {
    overflow: hidden; /* Prevent overflow */
}

.image-container img {
    width: 100%;
    height: 100%; /* Make the image fill the container */
    object-fit: cover; /* Maintain aspect ratio while covering the area */
    border-radius: 8px;
}

/* Form Styles */
form {
    display: flex;
    flex-direction: column;
    width: 100%; /* Ensure the form takes full width */
}

label {
    margin: 10px 0 5px;
}

input, textarea, button {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%; /* Full width for inputs and textareas */
}

button {
    background-color: #28a745;
    color: white;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #218838;
}

h2 {
    font-size: 2.5em; /* Large title */
    margin-bottom: 15px;
    color: #28a745; /* Accent color for the title */
    text-align: left; /* Align text to the left */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .reservation-container {
        flex-direction: column; /* Stack elements vertically */
    }

    .form-container {
        margin-right: 0; /* Remove margin for stacked layout */
        margin-bottom: 20px; /* Add space below the form */
    }

    h2 {
        font-size: 2em; /* Smaller title on medium screens */
        text-align: center; /* Center title on smaller screens */
    }
}

@media (max-width: 480px) {
    h2 {
        font-size: 1.5em; /* Even smaller title on small screens */
    }

    input, textarea {
        padding: 8px; /* Adjust padding for inputs */
        font-size: 0.9em; /* Smaller font size for inputs */
    }

    button {
        padding: 10px; /* Adjust button padding */
        font-size: 0.9em; /* Smaller button font */
    }
}


    /*style for about us section*/
#about-us {
    padding: 60px 20px;
    background-color: #fff; /* White background for a clean look */
}

.about-us-container {
    display: flex;
    flex-direction: row; /* Align items horizontally */
    align-items: center;
    max-width: 1200px;
    margin: 0 auto; /* Center the container */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    border-radius: 10px; /* Rounded corners */
    overflow: hidden; /* Ensure child elements don't overflow */
}

/* Image container */
.about-image-container {
    flex: 2;
    position: relative; /* Position for absolute children */
}

.about-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover the area with the image */
    transition: transform 0.3s ease; /* Smooth zoom effect */
}

.about-image-container:hover img {
    transform: scale(1.05); /* Zoom on hover */
}

/* Text container */
.about-text-container {
    flex: 2;
    padding: 40px; /* Increased padding for more space */
    color: #333; /* Darker text for contrast */
}

.about-text-container h2 {
    font-size: 2.5em; /* Large title */
    margin-bottom: 15px;
    color: #28a745; /* Accent color for the title */
    text-align: left; /* Align text to the left */
}

.about-text-container p {
    font-size: 1.1em; /* Readable paragraph size */
    line-height: 1.5; /* More spacing between lines for clarity */
    margin-bottom: 2px; /* Space between paragraphs */
    text-align: justify; /* Justified text for a polished look */
}

.about-text-container p:last-of-type {
    margin-bottom: 0; /* Remove margin from the last paragraph */
}

.contact-button {
    display: inline-block; /* Inline block for padding and margin */
    padding: 12px 24px; /* Padding for size */
    font-size: 1.1em; /* Font size */
    color: white; /* Text color */
    background-color: #28a745; /* Green background */
    border: none; /* No border */
    border-radius: 5px; /* Rounded corners */
    text-decoration: none; /* Remove underline */
    text-align: center; /* Center text */
    transition: background-color 0.3s ease, transform 0.3s ease; /* Smooth transition */
    margin-top: 20px; /* Space above the button */
}

.contact-button:hover {
    background-color: #218838; /* Darker green on hover */
    transform: scale(1.05); /* Slightly enlarge on hover */
}

.contact-button:active {
    transform: scale(0.95); /* Slightly shrink on click */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .about-us-container {
        flex-direction: column; /* Stack elements vertically */
        padding: 30px 10px; /* Adjust padding */
    }

    .about-image-container {
        flex: 1; /* Full width for image */
        margin-bottom: 20px; /* Space below image */
        order: 1; /* Ensure image appears first */
    }

    .about-text-container {
        flex: 1; /* Full width for text */
        padding: 20px; /* Adjust padding */
    }

    .about-text-container h2 {
        font-size: 2em; /* Smaller title on medium screens */
    }

    .about-text-container p {
        font-size: 1em; /* Adjust paragraph size */
    }

    .contact-button {
        font-size: 1em; /* Smaller button font */
        padding: 10px 20px; /* Adjust button padding */
    }
}

@media (max-width: 480px) {
    .about-text-container h2 {
        font-size: 1.5em; /* Even smaller title on small screens */
    }

    .about-text-container p {
        font-size: 0.9em; /* Smaller paragraph size */
    }

    .contact-button {
        font-size: 0.9em; /* Further adjust button font size */
        padding: 8px 16px; /* Further adjust button padding */
    }
}


.image-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: auto;
}

.left-image {
    flex: 1; /* Takes up 1 part of the space */
    margin-right: 20px; /* Space between left and right images */
}

.right-images {
    flex: 1; /* Takes up 1 part of the space */
    display: flex;
    flex-direction: column; /* Stack images vertically */
}

.right-images img {
    margin-bottom: 10px; /* Space between the images */
    width: 100%; /* Make images responsive */
    height: auto; /* Maintain aspect ratio */
}

.left-image img {
    width: 100%; /* Make image responsive */
    height: auto; /* Maintain aspect ratio */
}

/* Responsive Styles */
@media (max-width: 768px) {
    .image-container {
        flex-direction: column; /* Stack images vertically on small screens */
    }

    .left-image {
        margin-right: 0; /* Remove right margin */
        margin-bottom: 20px; /* Space below the left image */
    }
}

footer {
    background-color: #35424a; /* Dark background for the footer */
    color: white; /* Text color */
    padding: 40px 20px; /* Padding for the footer */
}

.footer-container {
    max-width: 12000px; /* Max width for the footer */
    margin: auto; /* Center the footer */
    display: flex; /* Flexbox layout */
    flex-wrap: wrap; /* Allow wrapping */
    justify-content: space-between; /* Space between sections */
}

.footer-section {
    flex: 1; /* Flex-grow for equal distribution */
    min-width: 250px; /* Minimum width for sections */
    margin: 10px; /* Margin between sections */
}

.footer-section h4 {
    font-size: 1.5em; /* Heading size */
    margin-bottom: 15px; /* Space below headings */
    border-bottom: 2px solid #e74c3c; /* Underline effect */
    padding-bottom: 10px; /* Space below the heading */
}

.footer-section p,
.footer-section ul {
    font-size: 1em; /* Font size for text */
    margin-bottom: 10px; /* Space between paragraphs */
    line-height: 1.6; /* Line height for readability */
}

.footer-section a {
    color: #e74c3c; /* Link color */
    text-decoration: none; /* Remove underline */
    transition: color 0.3s; /* Smooth transition for link color */
}

.footer-section a:hover {
    color: #ffffff; /* Change color on hover */
    text-decoration: underline; /* Underline on hover */
}

.footer-section ul {
    list-style-type: none; /* Remove default list styles */
    padding: 0; /* Remove padding */
}

.footer-section ul li {
    margin: 5px 0; /* Space between list items */
}

.footer form {
    display: flex; /* Flexbox for the form */
    flex-direction: column; /* Stack elements vertically */
}

.footer input[type="email"] {
    padding: 10px; /* Padding for input */
    border: none; /* Remove border */
    border-radius: 5px; /* Rounded corners */
    margin-bottom: 10px; /* Space below input */
}

.footer button {
    padding: 10px; /* Padding for button */
    background-color: #e74c3c; /* Button background color */
    color: white; /* Button text color */
    border: none; /* Remove border */
    border-radius: 5px; /* Rounded corners */
    cursor: pointer; /* Pointer cursor on hover */
    transition: background-color 0.3s; /* Smooth transition */
}

.footer button:hover {
    background-color: #35424a; /* Darken button on hover */
}

/* Responsive Styles */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column; /* Stack sections on small screens */
        align-items: center; /* Center align sections */
    }
    .footer-section {
        text-align: center; /* Center text on small screens */
    }
}
