/* v2 styles - Bootstrap friendly, minimal custom layer */
:root {
  --ul-primary: #0d6efd; /* Bootstrap primary */
  --ul-dark: #0b132b;
}

/* Typography tweaks */
h1, .display-4, .display-5, .display-6 { letter-spacing: -0.02em; }

/* Header */
.navbar .btn.btn-primary {
  padding-inline: 1rem;
}

/* Hero */
.hero { min-height: 100vh; display: grid; align-items: center; color: #fff; position: relative; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.2), rgba(0,0,0,.3)); pointer-events: none; }
.hero .hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center center; filter: brightness(0.8);
}
.hero .container { z-index: 10; position: relative; }
.hero h1 { 
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px rgba(255,255,255,0.8), 0 0 40px rgba(255,255,255,0.6);
  font-weight: 700; 
  filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.8));
}
.hero p.lead { 
  background: linear-gradient(135deg, #ffffff 0%, #e9ecef 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.25rem; 
  filter: drop-shadow(1px 1px 3px rgba(0,0,0,0.8));
  text-shadow: 0 0 15px rgba(255,255,255,0.6);
}
.hero .btn.btn-outline-light { 
  border-color: #fff; 
  color: #fff; 
  background: rgba(255,255,255,0.2); 
  backdrop-filter: blur(15px);
  font-weight: 600;
  padding: 12px 32px;
  border-width: 2px;
  text-shadow: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.hero .btn.btn-outline-light:hover { 
  background: rgba(255,255,255,0.9); 
  color: #000; 
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

/* Hero Stats Animation */
.hero-stat .h1 { 
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.8));
  text-shadow: 0 0 15px rgba(255,255,255,0.7);
  transition: all 0.3s ease;
}
.hero-stat .text-white-75 { 
  background: linear-gradient(135deg, #ffffff 0%, #e9ecef 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(1px 1px 3px rgba(0,0,0,0.8));
  text-shadow: 0 0 10px rgba(255,255,255,0.5);
}
.hero-stat:hover .h1 { 
  transform: scale(1.1); 
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px rgba(255,215,0,0.8);
}

/* Counter Animation */
.counter { 
  display: inline-block; 
  transition: all 0.3s ease;
}

/* Stats */
.stat .h2 { line-height: 1; }

/* Programs */
.program { text-decoration: none; border: 1px solid rgba(0,0,0,.06); transition: transform .2s ease, box-shadow .2s ease; }
.program:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.08); }
.program .card-img-top { aspect-ratio: 16/10; object-fit: cover; }

/* Footer */
footer.bg-dark {
  background-color: #121212 !important;
  background-image: none !important;
}
footer a { text-decoration: none; }
