/* ==== GLOBAL STYLES ==== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #fff;
  background-color: #0d0d0d;
  overflow-x: hidden;
}

/* ==== NAVBAR (Centered Premium Style) ==== */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  height: 80px;
  background-color: rgba(15, 15, 15, 0.95);
  border-bottom: 2px solid #e50914;
  z-index: 10;

  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 45px;
  height: 45px;
  border-radius: 5px;
}

.logo h1 {
  color: #fff;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 1px;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 35px;
}

.nav-links a {
  color: #ccc;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
  letter-spacing: 0.5px;
}

.nav-links a:hover,
.nav-links a.active {
  color: #e50914;
}

/* ==== GLOBAL SECTION LAYOUT ==== */
section {
  padding: 140px 20px 100px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* ==== HERO SECTION ==== */
.hero {
  position: relative;
  height: 100vh;
  background: url("pic/9.jpeg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 80%;
  max-width: 800px;
  text-align: center;
}

.hero-content h2 {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #ccc;
}

/* ==== PACKAGES SECTION ==== */
.packages {
  max-width: 1200px;
  margin: 0 auto;
  padding: 160px 20px 100px; /* ruang tambahan supaya tak terlindung */
  text-align: center;
}

.packages h1 {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.packages h1 span {
  color: #e50914;
}

.packages h1::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #e50914;
  margin: 15px auto 0;
  border-radius: 3px;
}

.package-desc {
  color: #ccc;
  font-size: 16px;
  max-width: 800px;
  margin: 25px auto 60px;
  line-height: 1.7;
}

.package-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

/* ==== CARD STYLE ==== */
.card {
  background-color: #1a1a1a;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(229, 9, 20, 0.1);
  overflow: hidden;
  width: 320px;
  padding-bottom: 25px;
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(229, 9, 20, 0.25);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  filter: brightness(0.9);
}

.card h2 {
  color: #e50914;
  font-weight: 700;
  margin: 20px 0 10px;
  font-size: 22px;
}

.card p {
  font-size: 14px;
  padding: 0 20px;
  text-align: left;
  color: #ccc;
  line-height: 1.6;
}

.price {
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  margin-top: 15px;
}

/* ==== BOOK BUTTON ==== */
button {
  display: inline-block;
  background-color: #e50914;
  color: white;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  padding: 10px 30px;
  margin-top: 15px;
  cursor: pointer;
  transition: 0.3s;
  text-transform: uppercase;
}

button:hover {
  background-color: #ff1b2d;
  transform: scale(1.05);
}

/* ==== BOOKING PAGE ==== */
.booking-section {
  background-color: #111;
  border-radius: 15px;
  padding: 60px 40px;
  max-width: 700px;
  margin: 150px auto 100px;
  box-shadow: 0 8px 25px rgba(229, 9, 20, 0.15);
}

.booking-section h1 {
  font-size: 36px;
  color: #fff;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  text-align: left;
}

label {
  font-weight: 600;
  color: #e50914;
  display: block;
  margin-bottom: 5px;
}

input, select {
  width: 100%;
  padding: 10px;
  border: 1px solid #444;
  border-radius: 8px;
  background: #1a1a1a;
  color: #fff;
}

/* ==== WHY CHOOSE US ==== */
.why-us {
  background: #111;
  text-align: center;
  padding: 100px 20px;
}

.why-us h1 {
  font-size: 38px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 60px;
}

.why-us h1 span {
  color: #e50914;
}

.why-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.why-card {
  background: #1a1a1a;
  border-radius: 15px;
  padding: 30px 20px;
  width: 320px;
  box-shadow: 0 5px 15px rgba(229, 9, 20, 0.15);
  transition: 0.3s;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(229, 9, 20, 0.3);
}

.why-card h2 {
  color: #e50914;
  margin: 15px 0 10px;
}

.why-card p {
  color: #ccc;
  font-size: 14px;
  line-height: 1.6;
}

/* ==== ADDONS ==== */
.addons {
  padding: 100px 20px;
  text-align: center;
}

.addons h1 {
  font-size: 38px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 50px;
}

.addons h1 span {
  color: #e50914;
}

.addon-list ul {
  list-style: none;
  padding: 0;
  color: #ccc;
  font-size: 16px;
  line-height: 2;
}

/* ==== CONTACT INFO ==== */
.contact-info {
  background: #111;
  padding: 100px 20px;
  text-align: center;
}

.contact-info h1 {
  font-size: 38px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 50px;
}

.contact-info h1 span {
  color: #e50914;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.hours, .contact {
  background: #1a1a1a;
  padding: 30px 25px;
  border-radius: 15px;
  width: 320px;
  box-shadow: 0 5px 15px rgba(229, 9, 20, 0.15);
}

.hours h2, .contact h2 {
  color: #e50914;
  margin-bottom: 10px;
}

.hours p, .contact p {
  color: #ccc;
  line-height: 1.6;
  font-size: 14px;
}
/* ==== ABOUT PAGE ==== */
.about-section .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
}

.about-left {
  flex: 1 1 400px;
  text-align: left;
}

.about-left h1 {
  font-size: 38px;
  margin-bottom: 20px;
}

.about-left span {
  color: #e50914;
}

.about-left p {
  color: #ccc;
  line-height: 1.8;
  margin-bottom: 15px;
}

.about-right {
  flex: 1 1 300px;
}

.about-right .card {
  margin-bottom: 20px;
  text-align: left;
  padding: 25px;
}

/* ==== FAQ PAGE ==== */
.faq-section {
  max-width: 900px;
  margin: 150px auto 100px;
  text-align: left;
}

.faq-section h2 {
  text-align: center;
  font-size: 38px;
  margin-bottom: 40px;
  color: #fff;
  text-transform: uppercase;
}

.faq-item {
  background: #1a1a1a;
  padding: 20px 25px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(229, 9, 20, 0.15);
}

.faq-item h3 {
  color: #e50914;
  margin-bottom: 10px;
}

/* ==== FOOTER ==== */
footer {
  text-align: center;
  padding: 25px;
  background-color: #0b0b0b;
  color: #ccc;
  border-top: 2px solid #e50914;
  font-size: 14px;
  margin-top: 50px;
}

/* ==== RESPONSIVE ==== */
@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    gap: 10px;
  }

  .about-section .container {
    flex-direction: column;
    text-align: center;
  }

  .booking-section {
    margin-top: 120px;
    padding: 40px 20px;
  }

  .faq-section {
    margin-top: 120px;
  }
}




