body {
  background: #643102;
  color: white;
  font-family: Arial;
  margin: 0;
}

nav {
  background: #351b02;
  padding: 15px;
  display: flex;
  justify-content: space-between;
}

nav a {
  color: gold;
  margin: 10px;
  text-decoration: none;
  transition: 0.3s;
}

nav a:hover {
  color: white;
}

.logo {
  color: gold;
  font-weight: bold;
}

.grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.card {
  background: #ff7b00;
  margin: 15px;
  padding: 15px;
  width: 220px;
  border-radius: 10px;
  text-align: center;
  transition: 0.3s;
}

.card:hover {
  transform: scale(1.05);
}

.card img {
  width: 100%;
  border-radius: 10px;
}

button {
  background: gold;
  border: none;
  padding: 8px;
  margin: 5px;
  cursor: pointer;
}

.search {
  text-align: center;
  margin: 20px;
}

.center {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.detail {
  padding: 30px;
}

.video {
  text-align: center;
  margin: 30px;
}
/* ================= ABOUT PAGE ================= */

.about-container {
  max-width: 900px;
  margin: 60px auto;
  padding: 30px;
  background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
  animation: fadeIn 1s ease;
}

.about-container h2 {
  text-align: center;
  color: gold;
  margin-bottom: 20px;
}

.about-container p {
  line-height: 1.8;
  font-size: 16px;
  text-align: justify;
  color: #ddd;
}

.map-box {
  margin-top: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

iframe {
  width: 100%;
  height: 350px;
  border: none;
}

/* animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
} /* ================= FINAL BOSS UI ================= */

/* glass background */
.card,
.about-container {
  backdrop-filter: blur(12px);
  background: rgba(20, 20, 20, 0.75);
  border: 1px solid rgba(255, 215, 0, 0.25);
}

/* glowing hover */
.card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.5);
}

/* button luxury */
button {
  background: linear-gradient(45deg, gold, #ffb700);
  color: black;
  font-weight: bold;
  border-radius: 8px;
  transition: 0.3s;
}

button:hover {
  transform: scale(1.1);
  box-shadow: 0 0 15px gold;
}

/* navbar glow */
nav {
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

/* logo animation */
.logo {
  animation: glow 2s infinite alternate;
}

@keyframes glow {
  from {
    text-shadow: 0 0 5px gold;
  }
  to {
    text-shadow: 0 0 20px gold;
  }
}

/* detail image */
.detail-img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

/* loading screen */
#loading {
  position: fixed;
  width: 100%;
  height: 100%;
  background: black;
  display: flex;
  justify-content: center;
  align-items: center;
  color: gold;
  font-size: 30px;
  z-index: 9999;
  animation: fadeOut 2s forwards 1.5s;
}

@keyframes fadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

/* responsive */
@media (max-width: 768px) {
  .grid {
    flex-direction: column;
    align-items: center;
  }
} /* ================= CONTACT SECTION ================= */

.contact {
  margin-top: 40px;
  text-align: center;
}

.contact h3 {
  color: gold;
  margin-bottom: 10px;
}

.social-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.social {
  padding: 12px 20px;
  border-radius: 10px;
  text-decoration: none;
  color: white;
  font-weight: bold;
  transition: 0.3s;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.social:hover {
  transform: scale(1.15);
  box-shadow: 0 0 15px gold;
}

.wa {
  background: #25d366;
}
.ig {
  background: #c13584;
}
.tt {
  background: #000000;
  border: 1px solid #fff;
} /* ================= NAV SOCIAL ================= */

.nav-social a {
  margin-left: 10px;
  font-size: 20px;
  transition: 0.3s;
}

.nav-social a:hover {
  transform: scale(1.3);
  text-shadow: 0 0 10px gold;
}

/* ================= FOOTER ================= */

footer {
  text-align: center;
  padding: 20px;
  background: black;
  color: #aaa;
  margin-top: 40px;
  border-top: 1px solid gold;
}

/* ================= CONTACT FORM ================= */

.contact-form {
  margin-top: 40px;
  text-align: center;
}

.contact-form input,
.contact-form textarea {
  width: 90%;
  max-width: 500px;
  margin: 8px auto;
  padding: 10px;
  border-radius: 8px;
  border: none;
  display: block;
  background: #1a1a1a;
  color: white;
}

.contact-form textarea {
  height: 100px;
  resize: none;
}

.contact-form button {
  margin-top: 10px;
}
/* =========================
   EXPLORE PAGE
========================= */

.about-container {
  max-width: 1000px;
  margin: 120px auto 60px;
  padding: 40px;
  background: #111;
  border-radius: 14px;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.05);
  animation: fadeIn 1.2s ease;
}

.about-container h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 20px;
  color: #f5c518;
}

.about-container h3 {
  margin-top: 30px;
  color: #f5c518;
}

.about-container p {
  line-height: 1.8;
  color: #ccc;
  margin-top: 15px;
  text-align: justify;
}

.about-container img {
  margin-top: 20px;
  border-radius: 12px;
  transition:
    transform 0.5s ease,
    box-shadow 0.5s ease;
}

.about-container img:hover {
  transform: scale(1.03);
  box-shadow: 0 0 25px rgba(245, 197, 24, 0.5);
}

/* Fade animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
