/* Import Google Fonts */
body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background-color: #0e0e0e;
  color: #fff;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;

  /* Ganti 'hero-bg.jpg' dengan gambar jaketmu */
  background: url('L-23.jpg') center/cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6); /* overlay hitam transparan biar teks lebih jelas */
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 40px;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 15px;
  color: #fff;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 25px;
  color: #ddd;
}

.btn {
  background: linear-gradient(45deg, #c0392b, #e74c3c);
  color: #fff;
  padding: 14px 28px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.btn:hover {
  background: linear-gradient(45deg, #e74c3c, #ff6b5a);
  transform: translateY(-3px);
}

/* Produk Section */
.produk-section {
  padding: 70px 20px;
  text-align: center;
}

.produk-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.produk-card {
  background-color: #1a1a1a;
  border-radius: 15px;
  width: 300px;
  padding: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0,0,0,0.4);
  cursor: pointer;
}

.produk-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.6);
}

.produk-card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 15px;
}

/* Features Section */
.features-section {
  padding: 70px 20px;
  text-align: center;
  background: #181818;
}

.features {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  margin-top: 35px;
}

.feature {
  max-width: 200px;
  transition: transform 0.3s ease;
}

.feature img {
  width: 70px;
  margin-bottom: 15px;
}

.feature:hover {
  transform: scale(1.1);
}

/* Gallery */
.gallery-section {
  padding: 70px 20px;
  text-align: center;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 35px;
}

.gallery img {
  width: 100%;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0,0,0,0.5);
}

/* CTA */
.cta-section {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, #c0392b, #8e0000);
  color: #fff;
}

.cta-section h2 {
  margin-bottom: 15px;
  font-size: 2rem;
}

.cta-section p {
  margin-bottom: 25px;
  font-size: 1.2rem;
}

/* Footer */
footer {
  background-color: #000;
  text-align: center;
  padding: 25px;
  font-size: 0.95rem;
  border-top: 1px solid #222;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

