html {
  scroll-behavior: smooth;
}

body {
  font-family: "Raleway", sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.fullscreen-section {
  height: 100vh;
  display: flex;
  overflow: hidden;
}

.image-side, .text-side {
  width: 50%;
  flex: none;
}

.image-side {
  background-size: cover;
  background-position: center;
  position: relative;
}

.text-side {
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.text-content {
  text-align: center;
}

.fullscreen-section.reverse {
  flex-direction: row-reverse;
}

.contact-section {
  padding: 60px 0;
  background-color: #f8f8f8;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-section h2 {
  text-align: center;
  margin-bottom: 40px;
}

.contact-content {
  display: flex;
  justify-content: space-between;
}

.contact-form, .contact-info {
  width: 48%;
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

textarea {
  resize: vertical;
}

#charCount {
  display: block;
  text-align: right;
  font-size: 0.8em;
  color: #666;
}

button {
  background-color: #007bff;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

button:hover {
  background-color: #0056b3;
}

.contact-info h3 {
  margin-bottom: 20px;
}

.contact-info p {
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .contact-content {
    flex-direction: column;
  }

  .contact-form, .contact-info {
    width: 100%;
  }

  .contact-info {
    margin-top: 40px;
  }
}

.site-footer {
  background-color: black;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

.site-footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.copyright {
  margin: 0;
  font-size: 14px;
}

.snap-section {
  scroll-snap-align: start;
}

.booking-section {
  background-image: url('contents/booking-background.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
}

.booking-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.booking-section .navbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-color: transparent;
}

.booking-icons-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.booking-icon {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  border-radius: 50%;
  padding: 15px;
  transition: transform 0.3s ease;
}

.booking-icon:hover {
  transform: scale(1.1);
}

.booking-icon img {
  max-width: 100%;
  max-height: 100%;
}

.vertical-divider {
  width: 2px;
  height: 80px;
  background-color: white;
  margin: 0 30px;
}

.fade-in-paragraph {
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 2s ease, transform 2s ease;
}

.fade-in-paragraph.visible {
  opacity: 1;
  transform: translateY(0);
}