/* CSS Kustom untuk Template Bisnis */

/* Variabel (bisa mengadopsi dari style.css utama jika terintegrasi) */
:root {
  --oase-bs-primary: #0d6efd; /* Biru default Bootstrap sebagai contoh */
  --oase-bs-secondary: #6c757d;
  --oase-bs-light: #f8f9fa;
  --oase-bs-dark: #212529;
  --oase-bs-white: #ffffff;
  /* Anda bisa override dengan warna OASE Orange jika mau */
  /* --oase-bs-primary: #ff7f00; */
}

body {
  font-family: "Poppins", sans-serif;
  padding-top: 70px; /* Sesuaikan dengan tinggi navbar */
  color: var(--oase-bs-dark);
}

/* Navbar */
.navbar-brand {
  color: var(--oase-bs-primary) !important; /* Warna brand */
}
.navbar .nav-link {
  color: var(--oase-bs-dark);
  font-weight: 500;
  transition: color 0.3s ease;
}
.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--oase-bs-primary);
}
.navbar .btn-primary {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

/* Hero Section */
#hero {
  padding: 80px 0;
  background-color: var(--oase-bs-white);
  min-height: 85vh; /* Minimal tinggi */
}
#hero h1 {
  color: var(--oase-bs-dark);
}
.text-primary {
  /* Utility class Bootstrap */
  color: var(--oase-bs-primary) !important;
}
.hero-image {
  max-width: 85%;
  height: auto;
  animation: floatAnim 4s ease-in-out infinite;
}
/* Animasi sederhana untuk gambar hero */
@keyframes floatAnim {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* Layanan Section */
#layanan {
  padding: 60px 0;
}
.icon-box-bisnis {
  width: 70px;
  height: 70px;
  background-color: rgba(13, 110, 253, 0.1); /* Warna primary transparan */
  color: var(--oase-bs-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.service-card:hover .icon-box-bisnis {
  background-color: var(--oase-bs-primary);
  color: var(--oase-bs-white);
  transform: scale(1.1) rotate(10deg);
}
.service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1) !important;
}

/* Tentang Section */
#tentang {
  padding: 60px 0;
}
.about-image {
  max-width: 90%;
  height: auto;
}

/* Kontak Section */
#kontak {
  padding: 60px 0;
}

/* Footer */
footer {
  background-color: var(--oase-bs-dark);
}
footer p {
  font-size: 0.9rem;
}
footer small {
  color: #adb5bd; /* Abu-abu lebih terang */
}

/* Tombol Utama */
.btn-primary {
  background-color: var(--oase-bs-primary);
  border-color: var(--oase-bs-primary);
  transition: background-color 0.3s ease, border-color 0.3s ease,
    transform 0.2s ease;
  font-weight: 600;
}
.btn-primary:hover {
  background-color: #0b5ed7; /* Warna primary lebih gelap */
  border-color: #0a58ca;
  transform: translateY(-2px);
}
.btn-outline-secondary {
  font-weight: 600;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}
.btn-outline-secondary:hover {
  transform: translateY(-2px);
}
