/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #F2EFE5; /* Very light shade of yellow section background */
    color: #2A3663;
}

/* Header */
header {
    background-color: #F2EFE5; /* Very light shade of yellow section background */
    padding: 1em;
    text-align: center;
    color: #2A3663;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.5em;
}

.logo {
    max-width: 150px;
    height: auto;
}

nav {
    display: flex;
    position: sticky;
    justify-content: center; /* Center the nav items */
    top: 0;
    background-color: #F2EFE5;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

nav ul {
    list-style-type: none;
    display: flex;
    justify-content: flex-end;
    gap: 2em;
    padding: 1em;
}

nav a {
    color: #2A3663;
    text-decoration: none;
    font-weight: 600;
}

nav a:hover {
    color: #666;
}

/* Hero Section */
#hero {
    background: url('images/4.jpg') no-repeat center center/cover;
    color: #fff; /* White text on dark background */
    padding: 8em 1em;
    text-align: center;
    background-size: cover;
    position: relative;
}

#hero h1 {
    font-size: 3em;
    font-weight: 600;
    margin-bottom: 0.5em;
}

#hero p {
    font-size: 1.5em;
    font-weight: 300;
}

/* Info Section */
#info {
    padding: 3em 1em;
    text-align: left;
    background-color: #F2EFE5; /* Very light shade of yellow section background */
    border-radius: 10px;
    margin: 1.5em 0;
           
    font-size: 16px; /* Set a base font size for uniformity */
    line-height: 1.6; /* Improve readability with proper line spacing */
    color: #333; /* Neutral text color for better contrast */
    background-size: cover;
    position: relative;
}

#hero p {
    font-size: 1.5em;
    font-weight: 300;
}

#info h2 {
    font-size: 24px; /* Larger size for the main heading */
    font-weight: bold;
    text-align: center;
    color: #000; /* Darker text for headings */
}

#info p {
    font-size: 16px; /* Consistent size for paragraph text */
    margin-bottom: 1em; /* Add spacing between paragraphs */
}

#info strong {
    font-weight: bold; /* Ensure emphasis text is bold */
    color: #000; /* Optional: darker text for emphasis */
}

/* Sections */
section {
    padding: 3em 1em;
    text-align: Center;
}

#rooms, #facilities {
    background-color: #F2EFE5; /* Very light shade of yellow section background */
    border-radius: 10px;
    margin: 1.5em 0;
}

/* Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5em;
    padding: 2em;
}

.gallery img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

.gallery img:hover {
    transform: scale(1.05);
}

/* Facilities List */
ul {
    list-style-type: none;
    padding: 0;
}

li {
    margin: 0.5em 0;
    font-size: 1.2em;
    justify-content: center; /* Center the text */
    display: flex;
    align-items: center;
}

li i {
    margin-right: 0.5em;
    color: #2A3663;
}

/* Contact Form */
form {
    display: flex;
    flex-direction: column;
    gap: 1.5em;
    width: 80%;
    max-width: 400px;
    margin: 0 auto;
}

input, textarea {
    padding: 1em;
    background-color: #C7C8CC;
    color: #333;
    border: 1px solid #555;
    border-radius: 5px;
}

button {
    padding: 1em 2em;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 1.2em;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

button:hover {
    background-color: #555;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 3em 1em;
    text-align: center;
}

footer a {
    color: #fff;
    margin: 0 0.5em;
    font-size: 1.5em;
}

footer a:hover {
    color: #f2f2f2;
}

.map-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 20%; /* Aspect ratio of 4:3 */
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Social Media Icons in Footer */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5em;
    margin-top: 1em;
}

.social-icon {
    font-size: 12em; /* Size of the icons */
    color: #2A3663; /* Default color for the icons */
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #0066cc; /* Change color on hover */
}

/* Amenities Section */
#Amenities {
    text-align: center;
    padding: 20px;
}

.amenities-container {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.amenities-column {
    flex: 1;
    min-width: 200px;
}

.amenities-column ul {
    list-style-type: none;
    padding: 0;
}

.amenities-column li {
    margin: 10px 0;
    font-size: 18px;
}

.amenities-column i {
    margin-right: 10px;
    color: #2A3663;
}

/* Mobile Styles */
@media (max-width: 768px) {
    /* Stack amenities columns vertically */
    .amenities-container {
        display: flex;
        flex-direction: column; /* Stack columns vertically */
    }

    .amenities-column {
        width: 100%; /* Make each column take full width */
        margin-bottom: 20px;
    }

    /* Adjust gallery for mobile */
    .gallery {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    /* Stack navigation items vertically */
    nav ul {
        display: flex;
        flex-direction: column; /* Stack links vertically */
        align-items: center;
        padding: 0;
    }

    nav ul li {
        margin: 10px 0;
    }

    nav ul li a {
        font-size: 1.2em; /* Increase font size for readability */
    }

    /* Adjust social icons for mobile */
    .social-icons {
        justify-content: center;
    }

    .social-icon {
        font-size: 30px; /* Make social icons larger for small screens */
    }

/* Contact Box Styling */
.contact-box {
    display: flex;
    justify-content: space-round;
    flex-wrap: wrap; /* Allow items to wrap for smaller screens */
    width: 100%;
    padding: 0 1em; /* Added padding to prevent content from touching edges */
    background-color: #F2EFE5; /* Light background color */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Light shadow for a lifted effect */
}


.contact-box li {
    list-style-type: none;
    margin: 0.5em 0;
    flex: 1; /* Allow items to grow and shrink */
    min-width: 200px; /* Set a minimum width for the items */
    text-align: center; /* Center the text */
}

.contact-box a {
    text-decoration: none;
    color: #2A3663;
    font-weight: 600;
    padding: 0.8em 1.5em;
    display: block;
    border: 1px solid #2A3663; /* Border for each item */
    border-radius: 30px; /* Rounded corners for each item */
    transition: background-color 0.3s ease;
}

.contact-box a:hover {
    background-color: #2A3663; /* Change background on hover */
    color: #fff; /* White text on hover */
}

.new-box {
    flex: 1 1 300px; /* Adjust the size of each box */
    max-width: 400px; /* Limit the width of each box */
    padding: 1em; /* Inner padding */
    background-color: #F2EFE5; /* Light background */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    text-align: center; /* Center-align text inside each box */
}


    /* Adjust header text */
    header h2 {
        font-size: 1.5em; /* Smaller font size on mobile */
    }

    header p {
        font-size: 1em; /* Adjust paragraph size */
    }

    /* Stack navigation items for better alignment */
    nav ul {
        flex-direction: column; /* Stack navigation items vertically */
        align-items: center;
    }

    nav ul li {
        margin: 5px 0; /* Reduce margin for vertical stacking */
    }

    nav ul li a {
        font-size: 1.1em; /* Adjust link size for mobile */
    }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .contact-box ul {
        flex-direction: column; /* Stack items vertically on smaller screens */
        align-items: center;
    }

    .contact-box li {
        width: 100%; /* Make each item take the full width */
        text-align: center;
    }
}


/* Hamburger Icon Styling */
/* Styles the clickable hamburger icon that toggles the menu visibility */
.hamburger-icon {
    cursor: pointer; /* Changes the cursor to a pointer to indicate interactivity */
    display: flex; /* Uses flexbox to stack the spans vertically */
    justify-content: center; /* Center the icon horizontally */
	align-items: center; /* Center the icon vertically */
	width: 200px; /* Sets the width of the hamburger icon */
	height: 100px; /* Adjust the size as needed */
	font-size: 2em; /* Adjust the size of the icon */
	margin: 0 auto; /* Centers the element horizontally on the page */
	flex-direction: column; /* Ensures the spans (lines) are arranged in a vertical column */
    gap: 10px; /* Adds space between each span (line) */
}

/* Individual Hamburger Icon Lines */
/* Styles the lines of the hamburger icon */
.hamburger-icon span {
    display: block; /* Makes each line a block element for consistent sizing */
    width: 100%; /* Ensures the lines take the full width of the icon container */
    height: 4px; /* Sets the thickness of each line */
    background-color: #2A3663; /* Sets the color of the lines (dark blue) */
    border-radius: 4px; /* Rounds the edges of the lines slightly */
    transition: 4s ease; /* Adds a smooth transition for potential animations (e.g., hover effects) */
}

/* Menu Items Styling (Always at Top-Right of the Screen) */
/* Styles the dropdown menu items, which are hidden initially */
.menu-items {
    display: none; /* Hidden by default */
    position: fixed; /* Ensures the menu stays at the top-right even when scrolling */
    top: 10px; /* Position 10px from the top of the viewport */
    right: 10px; /* Position 10px from the right of the viewport */
    background-color: #F2EFE5; /* Light background */
    border-radius: 5px; /* Rounded corners */
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    z-index: 1000; /* Ensures it stays above other elements */
    padding: 1em; /* Space inside the menu */
}

/* Menu List Styling */
/* Styles the list container within the dropdown menu */
.menu-items ul {
    list-style-type: none; /* Removes default bullet points from the list */
    margin: 0; /* Eliminates default margin */
    padding: 1em; /* Adds padding inside the menu for spacing */
}

/* Menu List Item Styling */
/* Styles individual list items in the dropdown menu */
.menu-items li {
    margin: 0.5em 0; /* Adds vertical spacing between menu items */
}

/* Menu Links Styling */
/* Styles the links within the menu */
.menu-items a {
    text-decoration: none; /* Removes the underline from links */
    color: #2A3663; /* Sets the text color to dark blue */
    font-weight: 600; /* Makes the text semi-bold for emphasis */
}

/* Menu Links Hover Effect */
/* Adds hover effects to the links for interactivity */
.menu-items a:hover {
    color: #fff; /* Changes the text color to white on hover */
    background-color: #2A3663; /* Sets a dark blue background color on hover */
    border-radius: 5px; /* Rounds the corners of the hover background */
    padding: 0.5em; /* Adds padding to the link during hover for better visibility */
}


/* Menu Links Styling */
/* Styles the links within the menu */
.menu-items a {
    text-decoration: none; /* Removes the underline from links */
    color: #2A3663; /* Sets the text color to dark blue */
    font-weight: 600; /* Makes the text semi-bold for emphasis */
    padding: 0.5em; /* Adds spacing inside links */
    display: block; /* Makes the links easier to click */
}

/* Menu Links Hover Effect */
/* Adds hover effects to the links for interactivity */
.menu-items a:hover {
    color: #fff; /* Changes the text color to white on hover */
    background-color: #2A3663; /* Sets a dark blue background color on hover */
    border-radius: 5px; /* Rounds the corners of the hover background */
}


/* Close Button Styling */
.close-btn {
    cursor: pointer; /* Makes it clickable */
    position: absolute; /* Position it in the top-right corner of the menu */
    top: 10px; /* Adjust position from the top */
    right: 10px; /* Adjust position from the right */
    font-size: 10px; /* Font size for the close icon */
    color: #2A3663; /* Color for the close button */
    background: none; /* No background for the button */
    border: none; /* No border */
    transition: color 0.3s ease; /* Smooth color transition */
}

/* Close Button Hover Effect */
.close-btn:hover {
    color: #FF0000; /* Change color on hover */
}