/* ================================================
   CENTRALIZED STYLES FOR OTI GHANA MISSION WEBSITE
   ================================================ */

/* ROOT VARIABLES & COLOR OVERRIDES */
:root {
  --primary-color: #04132a;
  --primary-light: #052452;
  --text-dark: #07182e;
}

.bg-blue-900 {
  background-color: #04132a !important;
}

.text-blue-900 {
  color: #04132a !important;
}

.border-blue-900 {
  border-color: #04132a !important;
}

.hover\:bg-blue-900:hover {
  background-color: #04132a !important;
}

.focus\:ring-blue-900:focus {
  outline-color: #04132a !important;
}

.from-blue-900 {
  --tw-gradient-from: #04132a !important;
}

.to-blue-800 {
  --tw-gradient-to: #052452 !important;
}

/* ================================================
   ANIMATED BELIEF CARDS
   ================================================ */

.belief-card {
  width: 100%;
  min-height: 220px;
  background: #07182e;
  position: relative;
  display: flex;
  flex-direction: column;
  place-content: center;
  place-items: center;
  overflow: hidden;
  border-radius: 20px;
  padding: 1.5rem;
  cursor: pointer;
}

.belief-card h3,
.belief-card p {
  z-index: 1;
  position: relative;
}

.belief-card h3 {
  color: white;
  font-size: 1.1em;
  text-align: center;
}

.belief-card p {
  color: #e0e0e0;
  font-size: 0.9em;
  text-align: center;
}

.belief-card::before {
  content: "";
  position: absolute;
  width: 100px;
  background-image: linear-gradient(
    180deg,
    rgb(0, 183, 255),
    rgb(255, 48, 255)
  );
  height: 130%;
  transition: all 0.2s linear;
}

@keyframes rotBGimg {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.belief-card::after {
  content: "";
  position: absolute;
  background: #07182e;
  inset: 5px;
  border-radius: 15px;
  z-index: 0;
}

.belief-card:hover::before {
  animation: rotBGimg 2.5s linear infinite;
  background-image: linear-gradient(180deg, rgb(81, 255, 0), rgb(255, 48, 255));
}

/* ================================================
   SMOOTHSCROLL BEHAVIOR
   ================================================ */

html {
  scroll-behavior: smooth;
}

/* ================================================
   RESPONSIVE ADJUSTMENTS
   ================================================ */

@media (max-width: 768px) {
  .belief-card {
    min-height: 180px;
    padding: 1rem;
  }

  .belief-card h3 {
    font-size: 0.95em;
  }

  .belief-card p {
    font-size: 0.85em;
  }
}
