/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.logo img {
    width: 50px; /* Reduce the size to make the logo smaller */
}

body {
    background-color: #f5f5f5;
    color: #333;
}

/* Navbar */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #fff;
    border-bottom: 2px solid #e1e1e1;
}

.logo img {
    width: 100px; /* Adjust the width as needed */
    height: auto;
    margin-right: 20px;
}

.navbar {
    flex: 1;
    text-align: center;
}

.navbar a {
    margin: 0 20px; /* Increased margin for a more spacious look */
    text-decoration: none; /* Remove default underline */
    color: #000;
    font-family: 'Roboto', sans-serif; /* Change font style as needed */
    font-weight: bold; /* Make the font bold */
    text-transform: uppercase; /* Make text uppercase */
    font-size: 16px; /* Adjust font size for visibility */
    letter-spacing: 1px; /* Add spacing between letters for style */
    position: relative; /* Positioning for the underline effect */
    transition: color 0.3s; /* Smooth color transition on hover */
}

.navbar a:after {
    content: '';
    display: block;
    height: 3px; /* Thickness of the underline */
    width: 0; /* Start with no width */
    background: gold; /* Change color of the underline */
    transition: width 0.3s ease-in-out; /* Animate the width change */
    position: absolute;
    left: 50%; /* Position the underline to center */
    bottom: -5px; /* Space between text and underline */
}

.navbar a:hover {
    color: gold; /* Change text color on hover */
}

.navbar a:hover:after {
    width: 100%; /* Full width on hover */
    left: 0; /* Align to the left */
}

.contact-details {
    display: flex;
    align-items: center;
}

.contact-details a {
    margin-right: 15px;
    color: #000;
    text-decoration: none; /* No underline on email link */
}

.contact-details span {
    font-size: 14px;
    color: #000;
}

.contact-details .phone-numbers {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}


.contact-details {
    display: flex;
    align-items: center;
}

.contact-details a {
    margin-right: 15px;
    color: #000;
    text-decoration: none; /* No underline on email link */
}

.contact-details span {
    font-size: 14px;
    color: #000;
}

.contact-details .phone-numbers {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}


.contact-details {
    display: flex;
    align-items: center;
}

.contact-details a {
    margin-right: 15px;
    color: #000;
    text-decoration: none;
}

.contact-details span {
    font-size: 14px;
    color: #000;
}

.contact-details .phone-numbers {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}


/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.hero .slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Keep the slider behind the text */
    display: flex;
    overflow: hidden;
}

.hero .slides {
    display: flex;
    width: 300%; /* 3 images wide */
    transition: transform 0.5s ease-in-out; /* Smooth transition when sliding */
}

.hero .slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-text {
    max-width: 600px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 24px;
    margin-bottom: 40px;
}

/* Navigation Arrows */
.nav-left, .nav-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 50px;
    color: #fff;
    padding: 10px;
    cursor: pointer;
    user-select: none;
}

.nav-left {
    left: 10px;
}

.nav-right {
    right: 10px;
}

.nav-left:hover, .nav-right:hover {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
}



.btn {
    background-color: #ffd700;
    color: #333;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
}

.btn:hover {
    background-color: #333;
    color: #fff;
}

/* About Section */
.about {
    padding: 50px;
    background-color: #fff;
    text-align: center;
}

.about h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.about p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
}

/* Rooms Section */
.rooms {
    padding: 50px;
    background-color: #f9f9f9;
}

.rooms h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
}

.room-list {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
}

.room {
    text-align: center;
    max-width: 300px;
}

.room img {
    width: 100%;
    border-radius: 10px;
}

.room h3 {
    margin: 15px 0;
}

.room p {
    font-size: 18px;
}

/* Services Section */
.services {
    padding: 50px;
    background-color: #f5f5f5;
    text-align: center;
}

.services h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

/* Services Container for Horizontal Layout */
.services-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 30px;
}

.service-box {
    flex: 1;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

.service-box h3 {
    margin-bottom: 15px;
    font-size: 24px;
}

.service-box img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Contact Section */
.contact {
    padding: 50px;
    background-color: #f9f9f9;
    text-align: center;
}

.contact h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

/* Contact Boxes Layout */
.contact-boxes {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 30px;
}

.contact-box {
    flex: 1;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 30%; /* Ensures boxes are horizontal */
}

/* Contact Section */
.contact {
    padding: 50px;
    background-color: #f9f9f9;
    text-align: center;
}

.contact h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

/* Contact Boxes Layout */
.contact-boxes {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 30px;
}

.contact-box {
    flex: 1;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 30%; /* Ensures boxes are horizontal */
}

/* Contact Section */
.contact {
    padding: 50px;
    background-color: #f9f9f9;
    text-align: center;
}

.contact h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

/* Contact Boxes Layout */
.contact-boxes {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 30px;
}

.contact-box {
    flex: 1;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 30%; /* Ensures boxes are horizontal */
}

/* Contact Item */
.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-item i {
    margin-right: 10px;
    font-size: 20px;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    font-size: 24px;
    color: #333;
    text-decoration: none;
}

.social-icons a:hover {
    color: #ffd700;
}

/* Form in the middle box */
.contact-box form {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.contact-box input, .contact-box textarea {
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 100%;
}

.contact-box button {
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact-box button:hover {
    background-color: #ffd700;
    color: #333;
}


/* Google Map Section */
.map {
    padding: 50px;
    background-color: #f9f9f9;
    text-align: center;
}

.map h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.map-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
}

.map-container iframe {
    border: none;
    width: 100%;
    height: 400px;
    border-radius: 8px;
}


/* Footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
}

footer p {
    margin: 0;
}

