/* RESET & GLOBAL STYLES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #0a0a0a;
  color: #fff;
  line-height: 1.6;
}

/* NAVBAR */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 60px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(10px);

}

.logo-text {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.logo-one {
  font-size: 2.4rem;
  color: #00aa66;
  font-weight: 700;
  line-height: 1;
}

.logo-rest {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: #fff;
  font-weight: 700;
}

nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #00aa66;
}

/* UNIVERSAL SECTION STYLING */
section {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* HERO */
.hero {
  height: 90vh;
  background: url('images/hero-bg.jpg') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 0 40px;
  padding-top: 100px; /* height of navbar */

}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: #00aa66;
}

.hero p {
  color: #ddd;
  font-size: 1.1rem;
  margin: 20px 0 35px;
}

.btn {
  background: #00aa66;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  display: inline-block;
}

.btn:hover {
  background: #008a55;
}

/* BOOKING */
.booking {
  text-align: center;
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: #00aa66;
}

.subtitle {
  color: #bbb;
  margin: 20px auto 40px;
  max-width: 700px;
}

.booking-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 25px;
}

.qr-container img {
  width: 100px;
  border-radius: 10px;
  border: 2px solid #00aa66;
}

.qr-container p {
  color: #ccc;
  margin-top: 10px;
}

/* ===== FLEET CAROUSEL ===== */
.fleet {
  padding: 50px 20px;
  text-align: center;
}

.fleet h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.fleet-carousel {
  position: relative;
  margin: 20px auto;
  max-width: 1200px;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.fleet-carousel .card {
  min-width: 300px;
  margin: 10px;
  background: #222;
  color: #fff;
  border-radius: 10px;
  text-align: center;
  flex-shrink: 0;
}

.fleet-carousel .card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.fleet-carousel .card h3 {
  margin: 10px 0 5px;
}

.fleet-carousel .card p {
  font-size: 0.9rem;
  padding: 0 10px 10px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  border: none;
  color: #fff;
  font-size: 2rem;
  padding: 5px 12px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
}

.carousel-btn.prev { left: 10px; }
.carousel-btn.next { right: 10px; }

@media (max-width: 768px) {
  .fleet-carousel .card {
    min-width: 250px;
  }
}
.carousel-track-container {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.fleet-carousel .card {
  flex: 0 0 280px; /* each card width */
  margin: 0 10px;
}
/* SERVICES */
.services {
  text-align: center;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.service {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 15px;
  width: 300px;
  padding: 25px;
  transition: 0.3s;
}

.service:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(0,170,102,0.4);
}

/* CONTACT */
.contact {
  background: #111;
  text-align: center;
}

.contact-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 15px;
  display: inline-block;
  padding: 40px;
  max-width: 420px;
  margin-top: 30px;
}

.contact-logo {
  width: 140px;
  margin-bottom: 25px;
}

.contact a {
  color: #00aa66;
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}

/* FOOTER */
footer {
  background: #000;
  color: #aaa;
  text-align: center;
  padding: 25px 40px;
  font-size: 0.95rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    padding: 15px 25px;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .logo-one {
    font-size: 2rem;
  }

  .logo-rest {
    font-size: 1.2rem;
  }

  .card, .service {
    width: 90%;
  }

  section {
    padding: 80px 20px;
  }
}

body {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  cursor: default;
}

/* Keep links, buttons, and inputs interactive */
a, button, input, textarea, select {
  user-select: auto;
  cursor: pointer;
}

