:root {
  --primary: #0d6efd;
  --light: #ffffff;
  --shadow: 0 6px 16px rgba(18,38,63,0.1);
  --radius: 14px;
}

body {
  padding-top: 100px;
  font-family: 'Poppins', sans-serif;
  margin: 0;
  color: #222;
  background: #fff;
}

/* HERO */
.hero-spot {
  position: relative;
  background: url('../images/ampera.jpg') center/cover no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-title {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
}

.hero-lead {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 50px;
}

/* FEATURE BAR DI HERO */
.feature-bar {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 15px 20px;
  display: inline-block;
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 10px;
  text-decoration: none;
  color: #333;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 12px;
}

.feature-card i {
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 8px;
}

.feature-card:hover {
  transform: translateY(-5px);
  color: var(--primary);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .feature-bar {
    padding: 10px;
  }
  .feature-card span {
    font-size: 0.9rem;
  }
}

/* TOUR GRID */
.tour-card {
  transition: all 0.3s ease;
  border-radius: 12px;
}
.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}
.tour-card img {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

/* RESPONSIVE NAVBAR FIX */
@media (max-width: 576px) {
    .navbar-brand img {
        width: 55px !important;
        height: 40px !important;
        margin-left: 0 !important;
        margin-right: 8px !important;
    }

    .hero-spot {
        min-height: 40vh; /* sesuaikan untuk HP */
        background-position: center top !important; 
    }

    .hero-title {
        font-size: 1.4rem !important;
    }

    .hero-lead {
        font-size: .9rem !important;
        padding: 0 15px;
    }

    #mainNav {
        padding: 8px 0 !important; /* lebih tipis di HP */
    }
}






