* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.about-content {
  display: flex;
  align-items: flex-start; /* Align items to the start */
  margin-bottom: 20px; /* Add some space between sections */
} 

.about-image-container {
  margin-right: px; /* Space between image and text */
}

.about-image {
  max-width: 600px; /* Set a max width for the image */
  height: auto; /* Maintain aspect ratio */
}
body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  background-color: #f4f4f4;
  color: #333;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}
.navbar {
  background-color: rgba(44, 24, 16, 0.95);
  color: white;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.logo {
  font-size: 28px;
  font-weight: bold;
  color: white;
  text-decoration: none;
  letter-spacing: 2px;
  transition: all 0.3s ease;
}
.logo:hover {
  color: #f4a460;
  transform: scale(1.05);
}
.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 30px;
}
.nav-links li {
  position: relative;
}
.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 8px 0;
  transition: all 0.3s ease;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #f4a460;
  left: 0;
  bottom: 0;
  transition: width 0.3s ease;
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-links a:hover {
  color: #f4a460;
}
.hero-carousel {
  position: sticky;
  top: 60px;
  height: calc(80vh - 60px);
  z-index: 100;
  background-color: #fff;
  overflow: hidden;
  margin-top: 60px;
}
.carousel-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}
.carousel-item.active {
  opacity: 1;
}
.carousel-content {
  background: rgba(0, 0, 0, 0.6);
  padding: 30px;
  border-radius: 10px;
  max-width: 600px;
}
.carousel-content h1 {
  font-size: 32px;
  margin-bottom: 10px;
}
.carousel-content p {
  font-size: 16px;
}
.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 10px 15px;
  text-decoration: none;
  z-index: 10;
}
.carousel-control.prev {
  left: 20px;
}
.carousel-control.next {
  right: 20px;
}
.section-title {
  text-align: center;
  margin-bottom: 40px;
  color: #2c1810;
}
.produk-grid,
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.produk-card,
.gallery-item {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}
.produk-card:hover,
.gallery-item:hover {
  transform: scale(1.05);
}
.produk-card img,
.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.produk-card-content,
.gallery-item-content {
  padding: 15px;
  text-align: center;
}
.maps-section {
  background-color: #f4a460;
  padding: 50px 0;
  color: white;
}
.maps-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.maps-location {
  background: rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 15px;
}
.maps-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.maps-info {
  flex: 1;
}
.maps-embed {
  flex: 1;
}
.maps-embed iframe {
  width: 100%;
  height: 400px;
  border-radius: 10px;
}
.footer {
  background-color: #2c1810;
  color: white;
  padding: 40px 0;
  text-align: center;
}
@media (max-width: 768px) {
  .maps-content {
    flex-direction: column;
  }
  .maps-info,
  .maps-embed {
    width: 100%;
  }
  .maps-embed iframe {
    height: 300px;
  }
}
.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  color: white;
  padding: 5px;
  transition: all 0.3s ease;
}
.hamburger i {
  font-size: 24px;
  transition: transform 0.3s ease;
}
.hamburger:hover i {
  transform: scale(1.1);
  color: #f4a460;
}
.navbar.scrolled {
  background-color: rgba(44, 24, 16, 0.98);
  padding: 10px 0;
}
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgba(44, 24, 16, 0.98);
    flex-direction: column;
    padding: 20px 0;
    gap: 15px;
    backdrop-filter: blur(10px);
    transform: translateY(-10px);
    opacity: 0;
    transition: all 0.3s ease;
  }
  .nav-links.active {
    display: flex;
    transform: translateY(0);
    opacity: 1;
  }
  .nav-links li {
    text-align: center;
    width: 100%;
  }
  .nav-links a {
    display: block;
    padding: 12px 0;
  }
  .nav-links a::after {
    display: none;
  }
  .nav-links a:hover {
    background-color: rgba(244, 164, 96, 0.1);
  }
  .hero-carousel {
    height: calc(50vh - 60px);
  }
  .carousel-content {
    padding: 20px;
    width: 90%;
  }
  .carousel-content h1 {
    font-size: 24px;
  }
  .carousel-content p {
    font-size: 14px;
  }
  .produk-grid,
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
  }
  .produk-card img,
  .gallery-item img {
    height: 200px;
  }
  .maps-content {
    flex-direction: column;
  }
  .maps-info,
  .maps-embed {
    width: 100%;
  }
  .maps-embed iframe {
    height: 300px;
  }
}
@media (max-width: 480px) {
  .container {
    width: 95%;
    padding: 10px;
  }
  .hero-carousel {
    height: calc(40vh - 60px);
  }
  .carousel-content {
    padding: 15px;
  }
  .carousel-content h1 {
    font-size: 20px;
  }
  .section-title {
    font-size: 24px;
  }
}
.content-below-slider {
  position: relative;
  z-index: 200;
  background-color: #fff;
  padding-top: 40px;
}

.content-below-slider1 {
  position: relative;
  z-index: 200;
  background-color: #fff;
  padding-top: 40px;
  box-shadow: 0 -10px 20px rgba(0, 0, 0, 0.1);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.gallery-item {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.gallery-item:hover {
  transform: scale(1.03);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
  }
}
/* Style untuk semua h1 */
h1 {
  font-family: "Poppins", sans-serif; /* Tambahkan font Poppins */
  color: #2c1810;
  margin-bottom: 20px;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Style khusus untuk h1 di carousel */
.carousel-content h1 {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 15px;
  text-transform: uppercase;
}

.carousel-content h1::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #f4a460;
  border-radius: 2px;
}

/* Style untuk h1 di section titles */
.section-title h1 {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h1::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: #f4a460;
}

.section-title h1::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: #2c1810;
}

/* Animasi untuk h1 saat muncul */
.section-title h1 {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive styles */
@media (max-width: 768px) {
  .carousel-content h1 {
    font-size: 32px;
  }

  .section-title h1 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .carousel-content h1 {
    font-size: 24px;
  }

  .section-title h1 {
    font-size: 24px;
  }
}

/* Style untuk judul section lokasi */
.maps-section .section-title {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  padding-top: 20px;
}

.maps-section .section-title h1 {
  font-family: "Poppins", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  position: relative;
  display: inline-block;
}

/* Efek dekoratif untuk judul lokasi */
.maps-section .section-title h1::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 4px;
  background: #fff;
  border-radius: 2px;
}

.maps-section .section-title h1::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #fff;
  border-radius: 2px;
}

/* Subtitle untuk lokasi */
.maps-section .section-title p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 25px;
  font-weight: 300;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Animasi untuk judul */
.maps-section .section-title {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards 0.2s;
}

/* Style untuk judul cabang */
.maps-location h3 {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  position: relative;
}

.maps-location h3::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: #fff;
}

/* Responsive styles */
@media (max-width: 768px) {
  .maps-section .section-title h1 {
    font-size: 28px;
  }

  .maps-section .section-title p {
    font-size: 14px;
    padding: 0 20px;
  }

  .maps-location h3 {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .maps-section .section-title h1 {
    font-size: 24px;
  }
}

.about-section {
  display: flex;
  align-items: center;
  padding: 40px 20px; /* Padding untuk memberi ruang */
  background-color: #f4f4f4; /* Warna latar belakang */
  margin-bottom: 60px; /* Tambahkan margin bawah untuk memberi ruang */
}

.about-content {
  display: flex;
  flex-direction: row; /* Default untuk desktop */
  gap: 20px; /* Jarak antara gambar dan teks */
}

.about-image {
  width: 50%; /* Lebar gambar */
  border-radius: 10px; /* Sudut melengkung */
  object-fit: cover; /* Memastikan gambar tidak terdistorsi */
}

.about-text {
  flex: 1; /* Mengambil sisa ruang yang tersedia */
}

.about-text h2 {
  font-size: 28px; /* Ukuran font untuk judul */
  margin-bottom: 15px; /* Jarak bawah judul */
  color: #2c1810; /* Warna teks */
}

.about-text p {
  font-size: 20px; /* Ukuran font untuk paragraf */
  color: #333; /* Warna teks */
  line-height: 1.6; /* Jarak antar baris */
}

/* Media Query untuk perangkat kecil */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column; /* Ubah menjadi kolom untuk perangkat kecil */
    align-items: center; /* Rata tengah */
  }

  .about-image {
    width: 100%; /* Gambar mengambil lebar penuh */
    margin-bottom: 20px; /* Jarak bawah untuk gambar */
  }

  .about-text {
    text-align: center; /* Rata tengah teks */
  }

  .about-text h2 {
    font-size: 24px; /* Ukuran font untuk judul lebih kecil */
  }

  .about-text p {
    font-size: 14px; /* Ukuran font untuk paragraf lebih kecil */
  }
}
