body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #726652; /* Updated background color */
}

header {
    background-image: url("../images/header.png");
    background-size: cover;
    background-position: center;
    border-radius: 25px;
    color: white;
    padding: 5em 0;
    text-align: center;
    position: relative;
    margin: 10px;
}

header h1 {
    font-size: 23px;
    margin: 0;
    padding: 0.5em;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 25px;
    display: inline;
    border: 2px solid white;
}

.header-image {
    width: 100%;
    height: auto;
}


button {
    background-color: #E3B23C; /* Button background color */
    color: white; /* Button text color */
    border: none; /* Remove default border */
    border-radius: 25px; /* Rounded corners */
    padding: 10px 20px; /* Padding for the button */
    font-size: 16px; /* Font size */
    cursor: pointer; /* Pointer cursor on hover */
    transition: background-color 0.3s ease, transform 0.3s ease; /* Smooth transition for background color and transform */
}

button:hover {
    background-color: #C19A2B; /* Darker background color on hover */
    transform: scale(1.05); /* Slightly enlarge the button on hover */
}

button:active {
    background-color: #A67C1A; /* Even darker background color on click */
    transform: scale(0.95); /* Slightly shrink the button on click */
}

a {
    color: #000000; /* Link color */
    text-decoration: none;/* Remove underline from links */

}

.nav-toggle {
    position: absolute;
    top: 1em;
    right: 1em;
    background: #E3B23C; /* Button background color */
    border: none;
    color: white;
    font-size: 2em;
    cursor: pointer;
    padding: 0.5em 1em; /* Padding for the button */
    border-radius: 5px; /* Rounded corners */
    transition: background-color 0.3s ease, transform 0.3s ease; /* Smooth transition for background color and transform */
}

.nav-toggle:hover {
    background-color: #C19A2B; /* Darker background color on hover */
    transform: scale(1.05); /* Slightly enlarge the button on hover */
}

.nav-toggle:active {
    background-color: #A67C1A; /* Even darker background color on click */
    transform: scale(0.95); /* Slightly shrink the button on click */
}

.nav-menu {
    position: fixed;
    top: 0;
    right: -250px; /* Initially hide the menu off-screen */
    width: 250px;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    text-align: center;
    padding-top: 2em;
    transition: right 0.3s ease-out;
}

.nav-menu ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.nav-menu ul li {
    margin: 1em 0;
}

.nav-menu ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.2em;
    transition: color 0.3s ease;
}

.nav-menu ul li a:hover {
    color: #E3B23C;
}

.nav-menu.show {
    right: 0; /* Slide the menu into view */
}
main {
    padding: 1em;
    background-color: #E3B23C; /* Updated background color */
    border-radius: 25px;
    margin: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    

}
 
main p {
    font-size: 24px;
    color: black;
    background-color: whitesmoke;
    border-radius: 25px;
    padding: 10px;
    margin: 10px;
}

.logo {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    margin-right: 10px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1em 0;
    margin-top: 2em;
}

footer p {
    margin: 0.5em 0;
}

footer a {
    color: #E3B23C;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.carousel {
    position: relative;
    max-width: 100%;
    margin: auto;
    overflow: hidden;
    border-radius: 10px;
}

.carousel-inner {
    display: flex;
    transition: transform 1s ease-in-out;
}

.carousel-item {
    display: flex;
    min-width: 100%;
    box-sizing: border-box;
}

.carousel-item .room {
    flex: 1;
    margin: 10px;
}

.carousel-item img {
    width: auto;
    height: auto;
    display: block;
}

.carousel-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 5px;
}

.carousel-control-prev,
.carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    user-select: none;
    border: solid 1px white;
    
}

.carousel-control-prev {
    left: 10px;
}

.carousel-control-next {
    right: 10px;
}

/* Centering .ourRoom div */
.room-image {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; /* Allow items to wrap */
    margin: 10px;
    padding: 10px;
    background-color: #333;
    border-radius: 25px;
}

.room {
    background-color: #ffffff; /* White background for room cards */
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Add subtle shadow */
    margin: 10px;
    overflow: hidden; /* Ensure images don't overflow */
    text-align: center;
}

/* Ensure responsive images */
.room img {
    width: 100%; /* Responsive image */
    height: auto; /* Maintain aspect ratio */
}

.room h3 {
    margin: 10px 0; /* Space around heading */
    color: #333; /* Dark gray color for text */
}

.room p {
    padding: 0 10px 10px; /* Space around text */
    color: #555; /* Slightly lighter color for description */
}

/* Media query for smaller screens */
@media (max-width: 768px) {
    .carousel-item {
        flex-direction: column; /* Stack room cards vertically */
    }

    .room {
        width: 100%; /* Full width for each room card */
        margin: 10px 0; /* Margin for vertical spacing */
    }

    .room-image {
        flex-direction: column; /* Stack room cards vertically */
        align-items: stretch; /* Stretch items to full width */
    }
}

.room-text {
    padding: 10px;
    background-color: #333;
    color: white;
    border-radius: 25px;
    margin: 10px;
    text-align: center;
}

.about-section {
    padding: 2em;
    background-color: #f4f4f4;
    margin: 1em 0;
    border-radius: 10px;
}

.about-section h2 {
    margin-top: 0;
}

.team-member {
    display: inline-block;
    width: 30%;
    text-align: center;
    margin: 1em;
}

.team-member img {
    width: 100%;
    border-radius: 50%;
}

.team-member h3 {
    margin: 0.5em 0 0.2em 0;
}

.team-member p {
    margin: 0;
}

.gallery {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.gallery img {
    width: 30%;
    margin: 1em 0;
    border-radius: 10px;
}

.testimonial {
    background-color: #fff;
    padding: 1em;
    margin: 1em 0;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.testimonial p {
    margin: 0;
}

.contact-section {
    padding: 2em;
    background-color: #f4f4f4;
    margin: 1em 0;
    border-radius: 10px;
}

.contact-section h2 {
    margin-top: 0;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin: 0.5em 0 0.2em 0;
}

input, textarea {
    padding: 0.5em;
    margin-bottom: 1em;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input:focus, textarea:focus {
    border-color: #E3B23C;
    box-shadow: 0 0 5px rgba(227, 178, 60, 0.5);
}

.location-section {
    padding: 2em;
    background-color: #f4f4f4;
    margin: 10px;
    border-radius: 10px;

}

.location-section h2 {
    margin-top: 0;
}

.map-container {
    display: flex;
    justify-content: center;
    margin-top: 1em;
}

/* Fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}



/* Apply fade-in animation to the body */
body.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

/* Apply fade-out animation to the body */
body.fade-out {
    animation: fadeOut 0.5s ease-in-out;
}

.language-switcher {
    position: absolute;
    top: 1em;
    left: 1em;
}

.language-switcher button {
    background: #E3B23C;
    border: none;
    color: white;
    font-size: 1em;
    cursor: pointer;
    padding: 0.5em 1em;
    border-radius: 5px;
    margin-right: 0.5em;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.language-switcher button:hover {
    background-color: #C19A2B;
    transform: scale(1.05);
}

.language-switcher button:active {
    background-color: #A67C1A;
    transform: scale(0.95);
}