
/* Custom CSS variables for theme consistency */
:root {
  --bs-primary: #2563eb;
  --bs-secondary: #64748b;
  --bs-success: #10b981;
  --bs-info: #06b6d4;
  --bs-warning: #f59e0b;
  --bs-danger: #ef4444;
  --bs-light: #f8fafc;
  --bs-dark: #1e293b;
}

/* Custom styles */
.hero-carousel {
  height: 100vh;
}

.hero-slide {
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.user-group-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.user-group-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
}

.icon-circle {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
}

.news-image {
  aspect-ratio: 16/9;
  object-fit: cover;
}

.stats-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 1rem;
}

.service-card {
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.announcement-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

.search-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

.bg-usergroup{
  background-color: #9a6533;
  color: white;
}

.alert-usergroup{
  background-color: #f2ece3;
  color: #9a6533;
}

.text-usergroup{
  color: #9a6533;
}

.bg-usergroup:hover{
  background-color: #b58a68;
  color: white;
}

.btn-outline-usergroup {
  border: #9a6533 solid 1px;
  background-color: white;
  color: #9a6533;
}

.btn-outline-usergroup:hover {
  border: #b58a68 solid 1px;
  background-color: white;
  color: #b58a68;
}

.bg-news{
  background-color: ;
}

.organization-value-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.organization-value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
}

.border-khk {
  background-color: white;
  border-color: #9a6533;
  color: #9a6533;
}

.border-khk:hover{
  background-color: #9a6533;
  color: white;
}

button:hover {
  filter: brightness(85%)
}