/* ===========================
   PAGES
   =========================== */

.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #111113 55%, #1C1C1F 100%);
  color: var(--text-on-red); text-align: center; padding: 6rem 1rem 2.5rem;
  position: relative; overflow: hidden;
  width: 100%;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,255,255,.03) 0%, transparent 70%);
}
.ph-eng    { background: linear-gradient(135deg, var(--dark) 0%, #111113 60%, #1C1C1F 100%); }
.ph-tourism{ background: linear-gradient(135deg, var(--dark) 0%, #111113 60%, #1E1E21 100%); }
.ph-computer{background: linear-gradient(135deg, var(--dark) 0%, #0E0E10 60%, #1A1A1D 100%); }
.ph-arts   { background: linear-gradient(135deg, var(--dark) 0%, #0E0E10 60%, #1C1C1F 100%); }
.ph-icon { font-size: 3.6rem; margin-bottom: 1rem; position: relative; filter: drop-shadow(0 8px 20px rgba(0,0,0,.5)); }
.page-hero h1 { font-size: clamp(1.8rem,4vw,3rem); font-weight: 900; position: relative; animation: pageHeroIn .6s ease both; }
.page-hero p  { color: rgba(255,255,255,.65); margin-top: .6rem; position: relative; font-size: 1rem; animation: pageHeroIn .6s .15s ease both; }
@keyframes pageHeroIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ===========================
   HERO
   =========================== */
.hero {
  min-height: 100vh;
  height: 100vh;
  background: var(--dark);
  color: var(--white);
  position: relative; overflow: hidden;
}
@supports (height: 100dvh) { .hero { height: 100dvh; min-height: 100dvh; } }
.hero-media { position: absolute; inset: 0; z-index: 0; overflow: hidden; background: linear-gradient(135deg, var(--dark) 0%, #111113 55%, #1C1C1F 100%); }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(0,0,0,.33) 0%, rgba(0,0,0,.51) 55%, rgba(0,0,0,.76) 100%),
    linear-gradient(180deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.35) 45%, rgba(0,0,0,.72) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1.1rem;
    padding: 46.5rem 1.5rem 3rem;
}
.hero-badge {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: .45rem 1.4rem; border-radius: 2rem;
  font-size: .8rem; font-weight: 700; letter-spacing: .04em;
  color: #fff;
  animation: heroContentIn .8s .1s ease both;
}
.hero-title {
  font-size: clamp(1rem, 5.5vw, 4rem);
  font-weight: 900; color: #fff; line-height: 1.15; margin: 0;
  text-shadow: 0 6px 40px rgba(0,0,0,.6);
  animation: heroContentIn .8s .2s ease both;
}
.hero-title::after { content:''; display:block; width:90px; height:3px; background:var(--red); margin:.9rem auto 0; border-radius:2px; }
.hero-subtitle {
  color: rgba(255,255,255,.85);
  font-size: clamp(1rem, 2vw, 1.3rem); margin: 0;
  animation: heroContentIn .8s .32s ease both;
}
.hero-actions {
  display: flex; gap: .9rem; flex-wrap: wrap; justify-content: center;
  margin-top: .4rem;
  animation: heroContentIn .8s .45s ease both;
}
.hero-btn {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--red-gradient); color: #fff;
  padding: .75rem 2.2rem; border-radius: 2rem;
  font-size: .95rem; font-weight: 700; text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(var(--red-rgb),.45);
}
.hero-btn:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(var(--red-rgb),.55); }
.hero-btn-outline { background: transparent; border: 2px solid #fff; box-shadow: none; }
.hero-btn-outline:hover { background: #fff; color: var(--dark); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,.35); }
@keyframes heroContentIn { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 480px) {
  .hero-badge { font-size: .72rem; padding: .4rem 1.1rem; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-btn { justify-content: center; width: 100%; }
}
