h1:first-of-type {
  position: relative;
  font-size: 25px;
  color: #333333;
  text-align: center;
  margin-top: 50px;
}

h1:first-of-type::before,
h1:first-of-type::after {
  content: "\2600"; 
  display: inline-block;
  font-size: 25px;
  margin: 8px;
}


.header-links {
  position: relative;
  list-style: none;
  display: flex;
  justify-content: flex-end;
}

.header-links li {
  margin-left: 10px;
}

.header-links li:first-child {
  margin-left: 0;
}

.header-links a {
  color: #333333;
  font-size: 20px;
  text-decoration: none;
}

.header-links a:hover {
  text-decoration: underline;
}

.left-link {
  position: absolute;
  left: 0;
}



.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  grid-gap: 20px;
  margin: 20px 0;
}

.image-grid .image-item {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.image-grid .image-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  display: block;
  margin: auto;
  max-width: 90%;
  max-height: 90%;
  background-color: #fefefe;
  margin: 10% auto;
  padding: 20px;
  border: 1px solid #ffffff;
  width: 100%;
  max-width: 90%;
}

.modal-content img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.close {
  color: #000000;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}


body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  padding: 0 10px;
}

h1, h2, h3 {
  text-align: center;
  margin: 30px 0;
}

h2 {
  font-size: 24px;
  font-weight: bold;
  color: #000000;
}

div.room h3 {
  text-align: left;
}

#STAY {
  font-size: 25px;
  margin-bottom: 70px;
}

p {
  font-size: 18px;
  margin-bottom: 10px;
  text-align: center;
}

section {
  margin-bottom: 50px;
}


.slideshow-container {
  position: relative;
  width: 100%;
  height: 100%; 
}

.slideshow-container img,
.mySlides img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mySlides {
  display: none;
}

.mySlides img {
  max-width: 100%;
  object-fit: contain;
}

.prev,
.next {
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: rgb(0, 0, 0);
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background-color: rgb(255, 255, 255);
  z-index: 2;
  cursor: pointer;
}

.prev:hover,
.next:hover {
  background-color: rgba(255, 255, 255, 0.8);
  color: rgb(255, 255, 255);
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev {
  left: 0;
  border-radius: 3px 0 0 3px;
}

.slideshow-container:hover .prev,
.slideshow-container:hover .next {
  background-color: rgba(0, 0, 0, 0.8);
}

.slideshow-container:hover .prev {
  left: 0;
}

.slideshow-container:hover .next {
  right: 0;
}


.icon-list {
  list-style-type: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr); 
  grid-gap: 20px;
  justify-items: center; 
  align-items: center;
  padding: 0;
  margin-bottom: 70px;
}

.icon-list li {
  width: 100%;
  max-width: 100px; 
  text-align: center;
  margin: 20px 0;
}

.icon-list img {
  width: 60px; 
  height: auto; 
}



#contact {
  background-color: #ffffff;
  padding: 40px;
  text-align: center;
}

#contact form {
  width: 80%;
  max-width: 500px;
  margin: 0 auto;
}

#contact form div {
  margin-bottom: 20px;
}

#contact label {
  display: block;
  font-size: 18px;
  color: #333333;
  margin-bottom: 10px;
}

#contact input,
#contact textarea {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  border: none;
  border-radius: 200px;
  background-color: #ffffff;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

#contact input:focus,
#contact textarea:focus {
  outline: none;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
}

#contact textarea {
  resize: vertical;
}

#contact button {
  background-color: #333333;
  color: #ffffff;
  border: none;
  padding: 14px 28px;
  font-size: 18px;
  cursor: pointer;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

#contact button:hover {
  background-color: #555555;
}

#contact p.success-message {
  color: #55a630;
  font-size: 16px;
  margin-top: 10px;
}

#contact p.error-message {
  color: #f44336;
  font-size: 16px;
  margin-top: 10px;
}



#myModal {
  position: relative;
}


.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background-color: rgba(255, 255, 255, 0);
  z-index: 1000; 
}

.prev {
  left: 0;
  border-radius: 3px 0 0 3px;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgba(255, 255, 255, 0);
}

footer {
  background-color: #e5e4e4;
  padding: 20px;
  text-align: center;
}

footer a {
  color: #000000;
  text-decoration: none;
  font-size: 18px;
  display: inline-block;
  border: 1px solid #000000;
  padding: 10px 20px;
  transition: text-decoration 0.3s;
}

footer a:hover {
  text-decoration: underline;
}

footer p {
  color: #000000;
  font-size: 14px;
  margin-top: 10px;
}
