/* ===============================
   BARBERU PAMATI — EDUCATION STYLES
=============================== */

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

/* ================= HERO SECTION ================= */
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url('/static/img/barber_app_fons.png') center/cover no-repeat;
}

.hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 2rem;
}

.hero-content h1 {
  font-weight: 700;
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 0 0 20px rgba(0,0,0,0.8);
}

.hero-content p {
  font-size: 1.2rem;
  color: #ccc;
}

/* ================= MISSION SECTION ================= */
.mission {
  padding: 4rem 2rem;
  text-align: center;
  background-color: #10151b;
}

.mission h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.mission p {
  color: #aaa;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ================= FEATURES ================= */
.features-section {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.features-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-card {
  background-color: #12171d;
  transition: all 0.3s ease;
  border: 1px solid #1e2328;
  padding: 2rem;
  border-radius: 12px;
}

.feature-card:hover {
  background-color: #1a1f25;
  border-color: #b78a50;
  box-shadow: 0 6px 18px rgba(183, 138, 80, 0.25);
  transform: translateY(-6px);
}

.icon-wrapper {
  font-size: 2rem;
  color: #b78a50;
  transition: all 0.3s ease;
}

.feature-card:hover .icon-wrapper {
  transform: scale(1.2);
  color: #c9975c;
}

/* ================= BUTTONS ================= */
.btn-primary {
  background-color: #b78a50 !important;
  border-color: #b78a50 !important;
  color: #fff !important;
  padding: 12px 28px;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.btn-primary:hover {
  background-color: #c9975c !important;
  border-color: #c9975c !important;
  transform: translateY(-2px);
  color: #fff !important;
}

.btn-outline-light {
  border: 1.5px solid #b78a50 !important;
  color: #b78a50 !important;
  padding: 12px 28px;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.btn-outline-light:hover {
  background-color: #b78a50 !important;
  color: #fff !important;
  transform: translateY(-2px);
}

/* ================= CTA SECTION ================= */
.cta-section {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(145deg, #111418, #0b0f14);
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #fff;
}

.cta-section h2 {
  font-size: 2rem;
  font-weight: 600;
}

.cta-section p {
  color: #bdbdbd;
  margin-bottom: 1.5rem;
}

/* ===================== 13TH ROW PREMIUM FX (ADD-ON) ===================== */
:root{
  --gold: #b78a50;
}

/* Scroll reveal */
.reveal{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.reveal-in{
  opacity: 1;
  transform: translateY(0);
}

/* Soft glow + premium hover on cards/links/modules */
.feature-card,
.card-dark,
.side-link,
.list-group-item{
  position: relative;
  overflow: hidden;
}

.feature-card::before,
.card-dark::before,
.side-link::before,
.list-group-item::before{
  content:"";
  position:absolute;
  inset:-1px;
  background: radial-gradient(
    220px circle at var(--mx, 50%) var(--my, 40%),
    rgba(183,138,80,.22),
    transparent 60%
  );
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events:none;
}

.feature-card:hover::before,
.card-dark:hover::before,
.side-link:hover::before,
.list-group-item:hover::before{
  opacity: 1;
}

/* Keep your existing hover behavior, just add a tiny premium lift */
.feature-card,
.card-dark,
.side-link{
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}
.feature-card:hover,
.card-dark:hover,
.side-link:hover{
  transform: translateY(-2px);
}

/* Button shine (subtle) */
.btn-primary,
.btn-gold{
  position: relative;
  overflow: hidden;
}
.btn-primary::after,
.btn-gold::after{
  content:"";
  position:absolute;
  top:-40%;
  left:-60%;
  width: 40%;
  height: 180%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
  transform: rotate(12deg);
  opacity: 0;
  transition: left .45s ease, opacity .2s ease;
}
.btn-primary:hover::after,
.btn-gold:hover::after{
  left: 120%;
  opacity: 1;
}

/* Progress bar smoother (dashboard) */
.progress{
  height: 12px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255,255,255,0.08);
}
.progress-bar{
  transition: width .8s ease;
}
/* ======================================================================= */