* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #111;
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* HEADER */
header {
  background: #000;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

/* LOGO */
.logo {
  color: #fff;
  font-size: 22px;
  font-weight: bold;
}

/* MENU DESKTOP */
.nav-menu {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
}

/* CONTACT */
.contact-btn {
  background: #ff4d4d;
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
}

/* HAMBURGER */
.hamburger {
  display: none;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
  z-index: 1100;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 25px;
  transition: 0.4s ease;
  z-index: 1050;
}

.mobile-menu.active {
  right: 0;
}

/* CLOSE BUTTON (FIX UTAMA DI SINI) */
.close-btn {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
  z-index: 1200; /* PENTING */
}

/* LINKS */
.mobile-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  text-transform: uppercase;
}

/* CONTACT MOBILE */
.mobile-contact {
  margin-top: 20px;
  background: #ff4d4d;
  padding: 12px 25px;
  border-radius: 25px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-menu,
  .contact-btn {
    display: none;
  }

  .hamburger {
    display: block;
  }
}

/* HERO SECTION */
.hero {
  position: relative;
  height: 100vh;
  background: url('https://images.unsplash.com/photo-1507874457470-272b3c8d8ee2') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* OVERLAY GELAP */
.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.65);
  top: 0;
  left: 0;
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

/* TITLE */
.hero-content h1 {
  font-size: 60px;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

/* SUBTITLE */
.hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.85;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: #ff4d4d;
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #fff;
  color: #000;
}

.btn-secondary {
  border: 1px solid #fff;
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.btn-secondary:hover {
  background: #fff;
  color: #000;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content p {
    font-size: 16px;
  }
}

/* ABOUT SECTION */
.about-band {
  padding: 80px 0;
  background: #111;
  color: #fff;
}

.about-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
}

/* IMAGE */
.about-image img {
  width: 100%;
  border-radius: 15px;
}

/* CONTENT */
.about-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 16px;
  opacity: 0.8;
  margin-bottom: 30px;
}

/* FEATURES */
.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.feature h4 {
  font-size: 16px;
  margin-bottom: 5px;
}

.feature p {
  font-size: 14px;
  opacity: 0.7;
}

/* BUTTON */
.about-btn {
  display: inline-block;
  background: #ff4d4d;
  color: #fff;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  transition: 0.3s;
}

.about-btn:hover {
  background: #fff;
  color: #000;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .about-wrapper {
    flex-direction: column;
  }

  .about-content h2 {
    font-size: 28px;
  }
}


/* LIVE SHOWS */
.live-shows {
  padding: 80px 0;
  background: #000;
  color: #fff;
}

/* HEADER */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.section-header p {
  font-size: 16px;
  opacity: 0.7;
}

/* GRID */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.event-card {
  background: #111;
  padding: 25px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: 0.3s;
  border: 1px solid rgba(255,255,255,0.05);
}

.event-card:hover {
  transform: translateY(-5px);
  border-color: #ff4d4d;
}

/* DATE */
.event-date {
  text-align: center;
}

.event-date .day {
  display: block;
  font-size: 26px;
  font-weight: bold;
}

.event-date .month {
  font-size: 12px;
  opacity: 0.7;
}

/* INFO */
.event-info h3 {
  font-size: 16px;
  margin-bottom: 5px;
}

.event-info p {
  font-size: 13px;
  opacity: 0.6;
}

.event-time {
  font-size: 12px;
  color: #ff4d4d;
}

/* BUTTON */
.event-btn {
  background: #ff4d4d;
  color: #fff;
  padding: 8px 15px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 12px;
  transition: 0.3s;
}

.event-btn:hover {
  background: #fff;
  color: #000;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .events-grid {
    grid-template-columns: 1fr;
  }

  .event-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

/* PACKAGES */
.packages {
  padding: 80px 0;
  background: #111;
  color: #fff;
}

/* GRID */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.package-card {
  background: #000;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  transition: 0.3s;
  border: 1px solid rgba(255,255,255,0.05);
  position: relative;
}

.package-card:hover {
  transform: translateY(-8px);
  border-color: #ff4d4d;
}

/* FEATURED */
.package-card.featured {
  border: 2px solid #ff4d4d;
  transform: scale(1.05);
}

.package-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
}

/* BADGE */
.badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: #ff4d4d;
  padding: 5px 12px;
  font-size: 12px;
  border-radius: 20px;
}

/* TITLE */
.package-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

/* PRICE */
.price {
  font-size: 14px;
  margin-bottom: 20px;
}

.price strong {
  font-size: 28px;
  color: #ff4d4d;
}

/* LIST */
.package-card ul {
  list-style: none;
  margin-bottom: 25px;
}

.package-card ul li {
  margin: 10px 0;
  font-size: 14px;
  opacity: 0.8;
}

/* BUTTON */
.package-btn {
  display: inline-block;
  background: #ff4d4d;
  color: #fff;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  transition: 0.3s;
}

.package-btn:hover {
  background: #fff;
  color: #000;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .packages-grid {
    grid-template-columns: 1fr;
  }

  .package-card.featured {
    transform: scale(1);
  }
}

/* TESTIMONIALS */
.testimonials {
  padding: 80px 0;
  background: #000;
  color: #fff;
}

/* GRID */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.testimonial-card {
  background: #111;
  padding: 25px;
  border-radius: 15px;
  transition: 0.3s;
  border: 1px solid rgba(255,255,255,0.05);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: #ff4d4d;
}

/* QUOTE */
.quote {
  font-size: 14px;
  opacity: 0.85;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* CLIENT */
.client {
  display: flex;
  align-items: center;
  gap: 12px;
}

.client img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
}

.client h4 {
  font-size: 14px;
}

.client span {
  font-size: 12px;
  opacity: 0.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* CTA SECTION */
.cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #ff4d4d, #b30000);
  text-align: center;
  color: #fff;
}

/* CONTENT */
.cta-wrapper h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.cta-wrapper p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 30px;
}

/* BUTTONS */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.cta-primary {
  background: #fff;
  color: #000;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.cta-primary:hover {
  background: #000;
  color: #fff;
}

.cta-secondary {
  border: 1px solid #fff;
  color: #fff;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.cta-secondary:hover {
  background: #fff;
  color: #000;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .cta-wrapper h2 {
    font-size: 26px;
  }

  .cta-wrapper p {
    font-size: 14px;
  }
}


/* FOOTER */
.footer {
  background: #000;
  color: #fff;
  padding-top: 60px;
}

/* GRID */
.footer-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 40px;
}

/* COLUMN */
.footer-col h3,
.footer-col h4 {
  margin-bottom: 15px;
}

.footer-col p {
  font-size: 14px;
  opacity: 0.7;
  line-height: 1.6;
}

/* LINKS */
.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin: 10px 0;
}

.footer-col ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  opacity: 0.7;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  opacity: 1;
  color: #ff4d4d;
}

/* SOCIAL */
.socials {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.socials a {
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  opacity: 0.7;
  transition: 0.3s;
}

.socials a:hover {
  opacity: 1;
  color: #ff4d4d;
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  padding: 20px 0;
  font-size: 13px;
  opacity: 0.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .socials {
    align-items: center;
  }
}

/* BLOG */
.blog {
  padding: 80px 0;
  background: #111;
  color: #fff;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.blog-card {
  background: #000;
  border-radius: 15px;
  overflow: hidden;
  transition: 0.3s;
  border: 1px solid rgba(255,255,255,0.05);
}

.blog-card:hover {
  transform: translateY(-5px);
  border-color: #ff4d4d;
}

/* IMAGE */
.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* CONTENT */
.blog-content {
  padding: 20px;
}

.blog-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.blog-content p {
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 15px;
}

/* BUTTON */
.blog-btn {
  text-decoration: none;
  color: #ff4d4d;
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* LAYOUT */
.article {
  padding: 80px 0;
  background: #111;
  color: #fff;
}

.article-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
}

/* MAIN */
.article-main h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

.article-meta {
  font-size: 14px;
  opacity: 0.6;
  margin-bottom: 30px;
}

.article-main img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 30px;
}

.article-main p {
  line-height: 1.8;
  margin-bottom: 20px;
}

.article-main h2 {
  margin-top: 30px;
}

/* SIDEBAR */
.sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-widget {
  background: #000;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.sidebar-widget h4 {
  margin-bottom: 15px;
}

.sidebar-widget ul {
  list-style: none;
}

.sidebar-widget ul li {
  margin: 10px 0;
}

.sidebar-widget a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  opacity: 0.8;
}

.sidebar-widget a:hover {
  color: #ff4d4d;
}

.sidebar-widget input {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: none;
}

/* CTA */
.sidebar-cta {
  background: #ff4d4d;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.sidebar-cta a {
  display: inline-block;
  margin-top: 10px;
  background: #fff;
  color: #000;
  padding: 10px 20px;
  border-radius: 20px;
  text-decoration: none;
}

/* ARTICLE CTA */
.article-cta {
  margin-top: 50px;
  padding: 30px;
  background: #000;
  border-radius: 15px;
  text-align: center;
}

.article-cta a {
  display: inline-block;
  margin-top: 15px;
  background: #ff4d4d;
  color: #fff;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
}

/* MOBILE */
@media (max-width: 768px) {
  .article-layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
  }
}

/* MEDIA */
.media {
  padding: 80px 0;
  background: #111;
  color: #fff;
}

/* HEADER */
.media-header {
  text-align: center;
  margin-bottom: 50px;
}

.media-header h1 {
  font-size: 36px;
}

/* VIDEO GRID */
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* VIDEO CARD */
.video-card iframe {
  width: 100%;
  height: 300px;
  border-radius: 10px;
}

/* GALLERY */
.gallery {
  margin-top: 80px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 10px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .video-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* BOOKING */
.booking {
  padding: 80px 0;
  background: #111;
  color: #fff;
}

/* WRAPPER */
.booking-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1100px;
  margin: auto;
}

/* FORM */
.booking-form {
  background: #000;
  padding: 30px;
  border-radius: 15px;
}

.booking-form h2 {
  margin-bottom: 20px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  margin-bottom: 15px;
  padding: 12px;
  border: none;
  border-radius: 8px;
}

.booking-form button {
  width: 100%;
  background: #ff4d4d;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
}

/* INFO */
.booking-info h2 {
  margin-bottom: 20px;
}

.booking-info p {
  margin-bottom: 15px;
  opacity: 0.8;
}

/* QUICK CTA */
.quick-book {
  margin-top: 30px;
  background: #ff4d4d;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
}

.quick-book a {
  display: inline-block;
  margin-top: 10px;
  background: #fff;
  color: #000;
  padding: 10px 20px;
  border-radius: 20px;
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .booking-wrapper {
    grid-template-columns: 1fr;
  }
}

