/* Resetting default margin and padding */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Basic styles for header, main, and footer */
header {
  background-color: lightblue;
  color: white;
  text-align: center;
  padding: 20px;
}

footer {
  background-color: rgb(0, 51, 139);
  color: white;
  text-align: center;
  padding: 20px;
  
}

main {
  text-align: center;
  
}

nav ul {
  list-style-type: none;
}

nav ul li {
  display: inline;
  margin-right: 20px;
}

nav ul li a {
  text-decoration: none;
  color: white;
}


.logo {
  position: absolute;
  top: 10px; 
  left: 20px; 
}

.logo img {
  width: 42px; 
  height: auto;
}


.hero-image {
  
  background-image: url('images/hotelhome.jpeg');
  background-size: cover;
  height: 100vh; 
}

/* gallery.css */

/* Your gallery page styling */
/* ... */

/* Slideshow styles */
.slideshow-container {
  position: relative;
  max-width: 100%;
  margin: auto;
}

.mySlides {
  display: none;
}

.mySlides img {
  width: 100%;
  height: auto;
}

/* Previous and Next buttons for slideshows */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  background-color: rgba(0, 0, 0, 0.8);
}

.prev {
  left: 0;
}

.next {
  right: 0;
}

.prev:hover, .next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}
/* Styles for other sections and galleries */
/* ... */

.about-section {
  width: 80%;
  text-align: center;
}


.about-content h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.about-content p {
  margin-bottom: 15px;
  line-height: 1.6;
  color: white;
}
.gallery-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.gallery-box {
  width: 200px;
  height: 200px;
  margin: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-decoration: none;
  background-color: #ffffff;
  border: 1px solid #ccc;
  border-radius: 8px;
  color: #333;
  transition: all 0.3s ease;
}

.gallery-box:hover {
  transform: scale(1.05);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  padding: 10px;
  bottom: 0;
  width: 100%;
}



footer a {
  color: lightblue;
}