body {
    font-family: 'Cinzel', serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
}

.hero-section {
    position: relative;
    text-align: center;
    color: white;
    font-family: 'Cinzel', serif;
    overflow: hidden;

}

.hero-section img {
    width: 100%;
    height: 100vh;
    /* Gunakan seluruh tinggi viewport */
    object-fit: cover;
    /* Gambar tidak terdistorsi */
    display: block;
    opacity: 0.7;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    /* overlay gelap */
    z-index: 1;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;

    padding: 30px 50px;
    border-radius: 10px;

}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: bold;
    padding-bottom: 20px;
    margin: 0;
}

.hero-text h2 {
    font-size: 1.5rem;
    margin: 10px 0;
}

.hero-text .btn {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 1rem;
    background-color: #ffffff;
    color: #000;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.hero-text .btn:hover {
    background-color: #ddd;
}



.navbar {
    position: sticky;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 1000;
    /* Pastikan navbar berada di atas elemen lainnya */
    background-color: #fff;
    /* Berikan warna latar belakang */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    /* Tambahkan bayangan untuk estetika */
}

.navbar-brand img {
    height: 80px;
    width: 70%;
    padding-right: 40px;
    padding-left: 30px;
}

.navbar-nav .nav-item {
    margin-left: 15px;
    margin-right: 15px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    /* Selaraskan logo dan teks secara vertikal */
}

/* Responsif untuk perangkat mobile */
@media (max-width: 768px) {
    .navbar {
        padding: 10px;
        /* Kurangi padding di perangkat kecil */
    }

    .navbar-brand img {
        height: 50px;
        /* Sesuaikan ukuran logo */
        width: 50%;
        /* Sesuaikan lebar logo */
    }

    .navbar-brand {

        text-align: center;
        /* Teks tetap di tengah */
    }

    .navbar-nav {
        flex-direction: column;
        /* Buat elemen menu vertikal */
        text-align: center;
    }

    .navbar-nav .nav-item {
        margin: 10px 0;
        /* Sesuaikan margin antar elemen */
    }
}


@media (max-width: 1024px) {
    .hero-section img {
        max-height: 450px;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .hero-text h2 {
        font-size: 1.25rem;
    }

    .hero-text .btn {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .hero-section img {
        max-height: 300px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text h2 {
        font-size: 0.8rem;
    }

    .hero-text .btn {
        font-size: 0.875rem;
        padding: 8px 15px;
    }

    .navbar-nav .nav-item {
        margin-left: 5px;
        margin-right: 5px;
    }
}
/* Styling utama */
.music-info {
  position: relative;
  text-align: center;
  color: white;
  padding-top: 100px;
  padding-bottom: 100px;
}

.music-info img {
  width: 100%;
  height: auto;
  max-height: 600px;
  margin: 0;
  display: block;
  opacity: 0.8;
  object-fit: cover;
  background: rgba(0, 0, 0, 0.5); 
}

.music-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 90%; /* Mengisi area secara responsif */
  max-width: 600px;
  font-size: 1.2rem;
  line-height: 1.5;
}

/* Tombol */
.hero-text .btn {
  margin-top: 20px;
  padding: 10px 20px;
  font-size: 1rem;
}

/* Responsiveness untuk perangkat kecil */
@media (max-width: 768px) {
  .music-info {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .music-text {
    font-size: 1rem; /* Ukuran font lebih kecil */
    line-height: 1.4;
  }
}

@media (max-width: 480px) {
  .music-info {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .music-text {
    font-size: 0.9rem; /* Ukuran font lebih kecil lagi */
    line-height: 1.3;
  }
}


body, html {
  height: 100%;
  margin: 0;
  font-family: 'Times New Roman', Times, serif;
}
.bg {
  background-image: url('https://placehold.co/1920x1080');
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  color: white;
  text-align: center;
}
.bg .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.bg h1 {
  font-size: 3rem;
  font-weight: bold;
}
.bg h2 {
  font-size: 1.5rem;
  margin-top: 1rem;
}
.bg .btn {
  margin-top: 2rem;
  padding: 0.5rem 2rem;
  font-size: 1rem;
  border: 2px solid #fff;
  color: #fff;
  background-color: transparent;
  transition: background-color 0.3s, color 0.3s;
}
.bg .btn:hover {
  background-color: #fff;
  color: #000;
}




body {
  background-color: #f8f9fa;
}

.product-title {
  padding: 50px;
  font-size: 35px;
  font-weight: bold;
  margin-bottom: 20px;
}

/* Kartu Produk */
.product-card {
  position: relative;
  background-color: #000;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Gambar */
.product-card img {
  width: 100%;
  height: 300px;
  /* Tinggi default */
  object-fit: cover;
  transition: transform 0.3s ease;
}

/* Nama Produk */
.product-name {
  position: absolute;
  bottom: 0;
  width: 100%;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  padding: 10px 0;
  text-align: center;
}

/* Hover Effect */
.product-card:hover img {
  transform: scale(1.1);
}

/* Responsive Styling */
@media (max-width: 768px) {

  /* Mengatur tinggi gambar untuk perangkat kecil */
  .product-card img {
    height: 200px;
    /* Tinggi lebih pendek untuk layar kecil */
  }

  /* Membuat grid 2x2 untuk tampilan HP */
  .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }

  .row .col-md-3,
  .row .col-sm-6 {
    flex: 1 0 calc(50% - 10px);
    /* Dua kolom dalam satu baris */
    margin: 5px;
    /* Jarak antar kartu */
  }
}

body {
  background-color: #f8f9fa;
  font-family: Arial, sans-serif;
}
.about-section {
  text-align: center;
  padding-bottom: 50px;
  padding-top:200px;
}
.about-section h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}
.about-section h2::before,
.about-section h2::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 50px;
  height: 2px;
  background-color: #d4af37;
}
.about-section h2::before {
  left: -60px;
}
.about-section h2::after {
  right: -60px;
}
.about-section p {
  font-size: 18px;
  color: #6c757d;
  max-width: 600px;
  margin: 0 auto;
}


.logo-item img {
  max-width: 100%;
  height: auto;
}
.tokopedia p {
  color: #40B549;
}
.shopee p {
  color: #FF5722;
}
.product-id{
text-align: center;
font-weight: bold;
margin: 30px 0;
padding-top: 30px;
}
.product-id h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  padding-top: 150px;
}


body {
  font-family: Arial, sans-serif;
  background-color: #f8f9fa;
  color: #333;
}
.section-title {
  text-align: center;
  margin: 40px 0;
}
.section-title h2 {
  font-size: 2rem;
  font-weight: bold;
  position: relative;
  display: inline-block;
}
.section-title h2::after {
  content: '';
  width: 50px;
  height: 3px;
  background-color: #d4af37;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}
.branch {
  text-align: center;
  margin-bottom: 20px;
}
.branch img {
  width: 100%;
  height: auto;
  border: 1px solid #ddd;
  border-radius: 5px;
}

iframe {
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: 8px;
  padding-bottom: 30px;
}

.contact-us h2 {
  padding-bottom: 40px;
  font-weight: bold;
  font-size: 2rem;
}

.contact-us {
  text-align: center;
  margin: 30px 0;
  padding-bottom: 150px;
  padding-top: 30px;
}

.contact-us a {
  text-decoration: none;
  color: #fff;
  background-color: #25d366;
  padding: 15px 30px;
  /* Memberikan jarak di dalam tombol */
  border-radius: 10px;
  font-size: 1.2rem;
  display: inline-flex;
  /* Membuat kotak lebih fleksibel */
  align-items: center;
  /* Membuat ikon dan teks sejajar vertikal */
  gap: 10px;
  /* Memberikan jarak antara ikon dan teks */
}

.contact-us a:hover {
  background-color: #20b857;
  /* Efek hover */
}



.footer {
  padding: 30px;
  background-color: #4a4a4a;
  color: #ffffff;
  text-align: center; /* Untuk memusatkan konten */
}
.footer .logo {
  font-size: 28px;
  font-weight: bold;
}
.footer .description {
  margin: 20px 0;
  font-size: 16px;
  line-height: 1.6;
}
.footer .social-icons a {
  color: #ffffff;
  margin-right: 10px;
  font-size: 18px;
}
.copyright {
  text-align: center;
  font-size: 14px;
  padding: 15px 20px;
  color: #d1d1d1;
  background-color: #333;
}
