/* RESET */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #050816;
  color: white;
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* NAVBAR */
.nav {
  position: fixed;
  width: 100%;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(10px);
  z-index: 100;
}

.nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
}

.logo {
  height: 80px;
}

/* MENU */
nav a {
  margin: 0 15px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  font-size: 18px;
}

/* BUTTONS */
.btn {
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
}

.primary {
  background: linear-gradient(90deg,#4cc9ff,#0077ff);
  color: white;
}

.primary:hover {
  box-shadow: 0 0 20px rgba(76,201,255,0.5);
}

.secondary {
  border: 1px solid #4cc9ff;
  color: white;
}

.secondary:hover {
  background: rgba(76,201,255,0.1);
}

/* HERO */
.hero {
  height: 100vh;
  background: url('../images/bg.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding-top: 100px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 20%, rgba(0,0,0,0.85));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 60px;
}

/* SECTION */
.section {
  padding: 140px 0;
  text-align: center;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 25px;
  margin-top: 40px;
}

/* CARD */
.card {
  background: #0a0f1f;
  border-radius: 12px;
  overflow: hidden;
  transition: 0.3s;
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px rgba(76,201,255,0.4);
}

/* LINK FIX */
a,
a:visited,
a:hover,
a:active {
  color: white;
  text-decoration: none;
}

/* DARK SECTION */
.dark {
  background: #02040a;
}

/* CTA */
.cta {
  text-align: center;
  padding: 100px 20px;
  background: #0a0f1f;
  border-radius: 16px;
}

/* POPUP */
.popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  z-index: 999;
  justify-content: center;
  align-items: center;
}

.popup.active {
  display: flex;
}

.popup-content {
  background: #0a0f1f;
  padding: 30px;
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  text-align: center;
  position: relative;
}

.popup-content input,
.popup-content textarea {
  width: 100%;
  margin: 10px 0;
  padding: 12px;
  border-radius: 6px;
  border: none;
  background: #050816;
  color: white;
}

/* CLOSE */
.close {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 24px;
  cursor: pointer;
}

/* CONTACT BOX */
.contact-box {
  max-width: 500px;
  margin: 0 auto;
  background: #0a0f1f;
  padding: 40px;
  border-radius: 16px;
}

.contact-box form {
  display: flex;
  flex-direction: column;
}

.contact-box input,
.contact-box textarea {
  width: 100%;
  margin-bottom: 12px;
  padding: 12px;
  border-radius: 6px;
  border: none;
  background: #050816;
  color: white;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 40px 20px;
}

footer p {
  margin: 6px 0;
}

/* MOBILE CTA */
.mobile-cta {
  display: none;
}

@media (max-width: 900px) {

  .nav .container {
    padding: 10px 20px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .mobile-cta {
    display: block;
    position: fixed;
    bottom: 0;
    width: 100%;
    background: linear-gradient(90deg,#4cc9ff,#0077ff);
    text-align: center;
    padding: 15px;
    font-weight: bold;
    z-index: 999;
  }

	#bookingMessage {
  margin-top: 15px;
}

.success {
  background: #0d5f2d;
  padding: 12px;
  border-radius: 8px;
}

.error {
  background: #7a1111;
  padding: 12px;
  border-radius: 8px;
}
}