/* Reset and Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #111;
  color: #fff;
}

/* Header Layout */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background-color: #141414;
  border-bottom: 1px solid #000;
}
.logo img {
  width: 55px;
  height: auto;
}

/* Scrollable Nav */
.nav-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  flex: 1;
}
.nav-bar {
  display: flex;
  gap: 8px;
  white-space: nowrap;
  justify-content: center;
  padding: 4px 0;
}
.nav-bar button,
.nav-bar a {
  background-color: #444;
  color: white;
  border: none;
  padding: 8px 12px;
  font-size: 14px;
  text-decoration: none;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
}
.nav-bar a.admin-link {
  background-color: #666;
}
.nav-scroll::-webkit-scrollbar {
  display: none;
}

/* Hero Section */
.hero {
  margin-top: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.hero img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
}

/* Content Sections */
section {
  padding: 4rem 2rem;
  max-width: 900px;
  margin: auto;
  text-align: center;
}
h2 {
  color: #00bfff;
  margin-bottom: 1rem;
}

/* Carousel */
#carousel {
  max-width: 100%;
  margin: 40px auto;
  text-align: center;
}
#carousel img {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 8px;
}

/* Video Grid */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}
.video-grid iframe {
  width: 100%;
  height: 200px;
}

/* Socials */
.social-link {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.social-link img {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}
#socials-section {
  margin-top: 40px;
  border: 1px solid #181818;
  padding: 16px;
}

/* Buttons */
.btn {
  background: #00bfff;
  color: #000;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
  margin-top: 1rem;
}
.btn:hover {
  background: #009acd;
}

/* Forms (Booking + Newsletter) */
form input,
form textarea {
  display: block;
  width: 100%;
  margin: 0.5rem 0;
  padding: 0.75rem;
  border-radius: 5px;
  border: 1px solid #444;
  background-color: #111;
  color: #fff;
}
form input::placeholder,
form textarea::placeholder {
  color: #ccc;
}

form button {
  background: #00bfff;
  color: #000;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  border: none;
  cursor: pointer;
}
form button:hover {
  background: #009acd;
}

/* Newsletter Sign-Up Button */
#newsletter-btn {
  background-color: #111;
  color: #fff;
  padding: 10px 20px;
  font-size: 16px;
  border: 1px solid #444;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}
#newsletter-btn:hover {
  background-color: #222;
}

/* Footer (optional) */
footer {
  padding: 2rem;
  background-color: #222;
  color: #000;
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-bar {
    justify-content: flex-start;
  }
  .nav-bar button,
  .nav-bar a {
    font-size: 13px;
    padding: 6px 10px;
  }
  #carousel img {
    border-radius: 4px;
  }
  .video-grid iframe {
    max-width: 100%;
    height: auto;
  }
  iframe {
    height: auto;
    aspect-ratio: 16/9;
  }
}