html {
  scroll-behavior: smooth;
}
/* ===== GLOBAL ===== */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  background: url('foto/bg4.webp') no-repeat center / cover fixed;
  color: #1f2937;
  line-height: 1.7;
}

/* ===== HERO HEADER ===== */
.hero {
  background: url('foto/bg7.webp') no-repeat center / cover;
  padding: 120px 20px;
  text-align: center;
  color: #ffffff;
}

.hero-inner {
  max-width: 900px;
  margin: auto;
  background: rgba(0,0,0,0.45);
  padding: 40px;
  border-radius: 20px;
}

.hero h1 {
  font-size: 48px !important;
  font-weight: 700;
  margin-bottom: 15px;
}

.hero p {
  font-size: 20px;
  font-weight: 400;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1100px;
  margin: 60px auto;
  padding: 40px;
  background: rgba(255,255,255,0.85);
  border-radius: 20px;
}

/* ===== HEADINGS ===== */
h2 {
  font-size: 32px !important;
  font-weight: 600;
  margin: 40px 0 15px;
  color: #111827;
}

p {
  font-size: 16px;
}

ul {
  padding-left: 20px;
}

ul li {
  margin-bottom: 8px;
}

/* ===== GALLERY ===== */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 34px !important;
  }

  .hero p {
    font-size: 16px;
  }

  h2 {
    font-size: 26px !important;
  }

  .container {
    padding: 25px;
  }
}
 @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }
        
        .modern-button {
            background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .modern-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }
        
        .modern-button:hover::before {
            left: 100%;
        }
        
        .stats-counter {
            font-variant-numeric: tabular-nums;
        }
        /* ===== GALLERY SLIDER ===== */
.gallery-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 40px 0;
}

.slider-track {
  display: flex;
  gap: 20px;
  scroll-behavior: smooth;
  overflow-x: auto;
  padding: 10px 40px;
}

.slider-track::-webkit-scrollbar {
  display: none;
}

.slider-track img {
  min-width: 280px;
  height: 200px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  flex-shrink: 0;
}

/* Tombol Navigasi */
.gallery-slider .nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  color: white;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
  z-index: 5;
}

.gallery-slider .prev {
  left: 10px;
}

.gallery-slider .next {
  right: 10px;
}

.gallery-slider .nav:hover {
  background: rgba(0,0,0,0.85);
}

/* Responsive */
@media (max-width: 768px) {
  .slider-track img {
    min-width: 240px;
    height: 170px;
  }
}
/* ===== FOOTER COPYRIGHT ===== */
footer {
  text-align: center;
  padding: 12px 0;
  font-size: 14px;
  color: #666;
  background: transparent;  /* atau warna footer pilihanmu */
}

footer p {
  margin: 0;
  line-height: 1.5;
}

footer a {
  color: #222;
  text-decoration: none;
  font-weight: 500;
}
.alat {
  display: flex;
  gap: 0; /* kalau mau nempel tanpa jarak */
}

.alat img {
  width: 200px; /* sesuaikan */
  height: auto;
}
