/* General */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f7f7f7;
  color: #333;
  text-align: center;
}

h1, h2 { margin: 20px 0; }

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}
.hero-overlay h1 { font-size: 3rem; }
.hero-overlay p { font-size: 1.5rem; margin-bottom: 20px; }

.booking-links {
  display: flex;
  gap: 15px;
}
.booking-links .btn {
  color: #fff;
  background: #e63946;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}
.booking-links .btn:hover {
  background: #d62828;
}
.contact-btn {
  background: #1d3557 !important;
}

/* Scroll Containers */
.scroll-container {
  overflow-x: auto;
  white-space: nowrap;
  scroll-behavior: smooth;
  padding: 10px;
}
.scroll-content img {
  height: 220px;
  margin: 5px;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s;
}
.scroll-content img:hover { transform: scale(1.05); }

/* Reviews smaller */
.reviews img {
  height: 140px;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 100;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.8);
}
.modal-content {
  display: block;
  margin: 5% auto;
  max-width: 80%;
  border-radius: 10px;
}
.close {
  position: absolute;
  top: 20px; right: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}
