/* assets/styles.css */

/* -------------------------------
   BRAND COLOR OVERRIDES
   Primary brand color: #dfa53c
   -------------------------------- */

/* General primary helpers */
.text-primary {
  color: #dfa53c !important;
}

.bg-primary {
  background-color: #dfa53c !important;
}

.border-primary {
  border-color: #dfa53c !important;
}

/* Softer background version of primary */
.bg-soft-primary {
  background-color: rgba(223, 165, 60, 0.08);
}

/* Buttons */
.btn-primary {
  background-color: #dfa53c;
  border-color: #dfa53c;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background-color: #c78f33;
  border-color: #c78f33;
}

/* Outline primary button */
.btn-outline-primary {
  color: #dfa53c;
  border-color: #dfa53c;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
  background-color: #dfa53c;
  border-color: #dfa53c;
  color: #fff;
}

/* Badges */
.badge.bg-primary {
  background-color: #dfa53c !important;
}

.badge.bg-soft-primary {
  background-color: rgba(223, 165, 60, 0.08);
  color: #dfa53c;
}

/* Navbar active link + brand */
.navbar .nav-link.active {
  color: #dfa53c !important;
  font-weight: 600;
}

.navbar-light .navbar-brand span.fw-bold {
  color: #dfa53c !important;
}

/* --------------------------------
   GLOBAL
   -------------------------------- */

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
}

/* Sections */
.section-title {
  font-weight: 700;
}

/* Hero section */
.hero-section {
  background: linear-gradient(
    135deg,
    #fff9f0 0%,
    #ffffff 50%,
    #fff3dd 100%
  );
}

.hero-image-wrapper {
  position: relative;
  border-radius: 1.75rem;
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-wrapper .hero-pill {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  padding: 0.75rem 1.25rem;
  display: flex;
  flex-direction: column;
}

/* Cards / stats */
.stat-card {
  border-radius: 1.5rem;
}

.vision-card {
  border-radius: 1.5rem;
}

/* Icon circle using brand tint */
.icon-circle {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(223, 165, 60, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Partner card hover */
.partner-card .rounded-4 {
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.partner-card:hover .rounded-4 {
  transform: translateY(-3px);
  box-shadow: 0 0.75rem 1.5rem rgba(15, 23, 42, 0.1);
}

/* Course cards (Udemy-style) */
.course-card {
  border-radius: 1.25rem;
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.course-card img {
  object-fit: cover;
}

.course-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 0.9rem 1.8rem rgba(15, 23, 42, 0.12);
}

/* Search box */
.search-box {
  position: relative;
  min-width: 220px;
}

.search-box .bi-search {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  color: #6c757d;
  pointer-events: none;
}

.search-box .form-control {
  padding-left: 2rem;
  border-radius: 999px;
}

/* Footer */
.footer {
  font-size: 0.875rem;
}

/* Form */
#contactForm .form-control,
#contactForm .form-select {
  border-radius: 0.75rem;
}

#contactForm button[type="submit"] {
  border-radius: 999px;
}

.footer-social-link {
  color: #ffffff;
  text-decoration: none !important;
  font-size: 1.4rem;
  transition: 0.2s ease-in-out;
}

.footer-social-link:hover {
  color: #dfa53c;   /* your brand color */
  transform: translateY(-3px);
}
/* Admin tweaks */
.table-hover tbody tr:hover {
  background-color: rgba(223, 165, 60, 0.05);
}

.navbar-brand {
  color: #dfa53c !important;
}

.badge.bg-primary {
  background-color: #dfa53c !important;
}
