@charset "utf-8";

:root{
  --blue:#2f76ff;
  --yellow:#f2c94c;
  --dark:#0b1220;
  --panel:rgba(12,18,32,.85);
  --text:#e8eefc;
  --muted:#aab6d6;
  --border:rgba(255,255,255,.14);
}

*{box-sizing:border-box;}

body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  color:var(--text);
  background:var(--dark) url("Background.png") no-repeat center top fixed;
  background-size:cover;
}

img{
  display:block;
  max-width:100%;
}

main{
  width:min(1100px,92%);
  margin:40px auto;
}


.site-header{
  text-align:center;
  background:rgba(7,12,22,.85);
  padding:25px 0 15px;
  border-bottom:1px solid var(--border);
}

.header-inner{
  width:min(1100px,92%);
  margin:0 auto;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
}

.brand-logo{
  width:150px;
  margin:0 auto 10px;
}

.brand-text h1{
  margin:0;
  font-size:1.9rem;
  letter-spacing:.3px;
}

.brand-text p{
  margin:0;
  color:var(--muted);
}

.site-nav{
  margin-top:10px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  justify-content:center;
}

.nav-link{
  padding:9px 16px;
  color:var(--text);
  font-weight:700;
  text-decoration:none;
  border-radius:12px;
  border:1px solid transparent;
  transition:.2s ease;
}

.nav-link:hover{
  border-color:rgba(47,118,255,.45);
  background:rgba(47,118,255,.18);
}

.nav-link.active{
  border-color:rgba(242,201,76,.65);
  background:rgba(242,201,76,.16);
}


.hero-card{
  background:var(--panel);
  padding:35px;
  border-radius:20px;
  border:1px solid var(--border);
  text-align:center;
}

.hero-card h2{
  margin-top:0;
}

.hero-lead{
  max-width:750px;
  margin:0 auto 22px;
}

.hero-actions{
  display:flex;
  justify-content:center;
  gap:16px;
  flex-wrap:wrap;
  margin-bottom:28px;
}

.btn{
  padding:12px 22px;
  border-radius:14px;
  font-weight:800;
  letter-spacing:.3px;
  text-decoration:none;
  border:1px solid rgba(47,118,255,.6);
  background:rgba(47,118,255,.25);
  color:var(--text);
  min-width:170px;
  text-align:center;
  transition:.2s ease;
}

.btn:hover{
  background:rgba(47,118,255,.35);
}

.btn-outline{
  border-color:rgba(242,201,76,.65);
  background:rgba(242,201,76,.18);
}

.btn-outline:hover{
  background:rgba(242,201,76,.28);
}

.quick-stats{
  list-style:none;
  padding:0;
  margin:0 auto;
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
  max-width:800px;
}

.quick-stats li{
  flex:1 1 220px;
  max-width:240px;
  border:1px solid rgba(255,255,255,.15);
  border-radius:18px;
  padding:16px 20px;
  background:rgba(0,0,0,.28);
  text-align:center;
}

.quick-stats strong{
  display:block;
  color:var(--yellow);
  font-size:1.1rem;
  margin-bottom:5px;
}

.quick-stats span{
  color:var(--muted);
  font-size:.95rem;
}


.content{
  background:var(--panel);
  padding:30px;
  border-radius:18px;
  border:1px solid var(--border);
}

.section-title{
  text-align:center;
  margin-top:0;
}

.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:22px;
  margin-top:20px;
}

.card{
  background:rgba(0,0,0,.28);
  border-radius:16px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  transition:.2s ease;
}

.card:hover{
  transform:translateY(-4px);
  border-color:rgba(242,201,76,.35);
}

.card-img{
  width:100%;
  height:210px;
  object-fit:cover;
}

.card h3{
  color:var(--blue);
  padding:16px 16px 6px;
  margin:0;
  text-align:center;
}

.card p{
  padding:0 16px 18px;
  margin:0;
  color:var(--muted);
  text-align:center;
}

.card-anchor{
  display:block;
  text-decoration:none;
  color:inherit;
}


.table-wrap{
  overflow-x:auto;
  margin-top:15px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
}

.program-table{
  width:100%;
  border-collapse:collapse;
  min-width:900px;
  background:rgba(0,0,0,.25);
}

.program-table th{
  padding:14px;
  background:rgba(47,118,255,.25);
  color:var(--text);
  text-align:left;
}

.program-table td{
  padding:14px;
  border-bottom:1px solid rgba(255,255,255,.1);
  color:var(--muted);
}

.program-table tbody tr:nth-child(even){
  background:rgba(242,201,76,.07);
}

.table-note{
  margin-top:12px;
  color:var(--muted);
  font-size:.92rem;
}


.program{
  display:grid;
  grid-template-columns:320px 1fr;
  gap:20px;
  padding:20px;
  border-radius:16px;
  background:rgba(0,0,0,.25);
  border:1px solid rgba(255,255,255,.12);
  margin-top:22px;
}

.program-img{
  width:100%;
  height:230px;
  object-fit:cover;
  border-radius:14px;
}

.program-body h3{
  margin-top:0;
  color:var(--blue);
}

.program-list{
  padding-left:20px;
  color:var(--muted);
}

.program-note{
  margin-top:10px;
  color:var(--yellow);
  font-weight:700;
}


.contact-page{
  background:var(--panel);
  padding:30px;
  border-radius:18px;
  border:1px solid var(--border);
}

.contact-page h2{
  text-align:center;
}

.contact-page fieldset{
  border:none;
  display:grid;
  grid-template-columns:1fr 2fr;
  gap:14px 18px;
}

.contact-page input,
.contact-page select,
.contact-page textarea{
  padding:10px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.2);
  background:rgba(0,0,0,.3);
  color:var(--text);
}

.contact-page input[type="submit"],
.contact-page input[type="reset"]{
  grid-column:1/-1;
  border:none;
  padding:12px;
  border-radius:14px;
  font-weight:800;
  cursor:pointer;
}

.contact-page input[type="submit"]{
  background:rgba(47,118,255,.35);
}

.contact-page input[type="reset"]{
  margin-top:10px;
  background:rgba(242,201,76,.25);
}


.site-footer{
  text-align:center;
  padding:22px;
  background:rgba(7,12,22,.85);
  margin-top:50px;
  border-top:1px solid rgba(255,255,255,.12);
}


@media(max-width:900px){
  .program{
    grid-template-columns:1fr;
  }
}

@media(max-width:768px){
  .contact-page fieldset{
    grid-template-columns:1fr;
  }

  .quick-stats{
    flex-direction:column;
    align-items:center;
  }
}