/*starting header*/
body {
            font-family: 'Times New Roman', Times, serif;
            margin: 0;
            padding: 0;
            overflow-x: hidden;
        }
        .header {
            background-color: white;
            color: black;
            padding: 10px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }
        .logo {
            font-size: 24px;
            font-weight: bold;
            display: flex;
            align-items: center;
        }
        
        .nav-links {
            display: flex;
            gap: 20px;
        }
        .nav-links a {
            color: black;
            text-decoration: none;
            padding: 10px 15px;
            transition: background-color 0.3s;
        }
        .nav-links a:hover {
            background-color: #004494;
            border-radius: 5px;
        }
        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 24px;
        }
        .sidebar {
            position: fixed;
            top: 0;
            left: -250px;
            height: 100%;
            width: 250px;
            background-color: #2c3e50;
            padding-top: 60px;
            transition: 0.3s;
            z-index: 1;
        }
        .sidebar a {
            padding: 15px;
            text-decoration: none;
            color: white;
            display: block;
            transition: background-color 0.3s;
        }
        .sidebar a:hover {
            background-color: #004494;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            .hamburger {
                display: block;
            }
        }


            .logo {
    display: flex;
    align-items: center;
    font-size: 30px; /* Base font size */
    color: green; /* Text color */
    padding: 10px 20px; /* Padding around the logo */
    transition: all 0.3s ease; /* Smooth transitions for hover effects */
    text-align: center;
}

.logo img {
    height: 65px; /* Logo height */
    width: auto; /* Maintain aspect ratio */
    margin-right: 150px; /* Space between logo and text */
    transition: transform 0.3s ease; /* Smooth scaling on hover */
}

.logo:hover img {
    transform: scale(1.1); /* Scale effect on hover */
}

.logo:hover {
    color: #ffcc00; /* Change text color on hover */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .logo {
        font-size: 30px; /* Smaller font size on mobile */
        padding: 5px; /* Reduced padding */
        
    }
    .logo img {
        height: 60px; /* Smaller logo height on mobile */
        margin-right: 28px; /* Space between logo and text */
    }
}

.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 */
    }
}

    /*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 */
    }
}

  #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 */
    }
}




/*starting of footer*/

    .footer {
        background-color: #34495e;
        color: white;
        padding: 40px 0;
    }
    .footer-container {
        max-width: 1200px;
        margin: auto;
        padding: 0 20px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .footer-section {
        flex: 1;
        min-width: 250px;
        margin: 10px;
    }
    .footer h4 {
        margin-bottom: 15px;
        font-size: 1.5em;
    }
    .footer p {
        margin-bottom: 10px;
    }
    .footer ul {
        list-style-type: none;
        padding: 0;
    }
    .footer a {
        color: lightblue;
        text-decoration: none;
        transition: color 0.3s;
    }
    .footer a:hover {
        color: #1abc9c;
    }
    .newsletter-input {
        padding: 10px;
        width: 100%;
        margin-bottom: 10px;
        border: 1px solid #1abc9c;
        border-radius: 5px;
        background-color: #fff;
        color: #34495e;
    }
    .newsletter-button {
        background-color: #1abc9c;
        color: white;
        padding: 10px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        width: 100%;
        transition: background-color 0.3s;
    }
    .newsletter-button:hover {
        background-color: #16a085;
    }

    .byiri {
        text-align: center;
            margin-top: 20px;
    }
/*Ending footer*/