.elementor-1480 .elementor-element.elementor-element-81d041e{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-474ca06 *//* ========== ROOT VARIABLES ========== */
:root{
  --brand-yellow: #F7EE29;
  --bg: #080808;
  --card-bg: #101013;
  --muted: #c1c1c6;
  --radius: 14px;
}

/* ===== GENERAL ===== */
body{
  margin:0;
  font-family:"Mulish", sans-serif;
  background: var(--bg);
  color:#eee;
}

/* Layout container */
.container{max-width:1200px;margin:0 auto;padding:0 20px}

/* BUTTONS */
.btn{
  display:inline-block;
  padding:12px 28px;
  border-radius:999px;
  font-family:"Oswald";
  font-weight:600;
  cursor:pointer;
  transition:.25s ease;
}
.btn-primary{
  background:var(--brand-yellow);
  color:#0f0f0f;
}
.btn-primary:hover{
  transform:translateY(-4px);
}
.btn-outline{
  border:1.5px solid rgba(255,255,255,0.12);
  color:#fff;
}

/* ===== HERO (FULL WIDTH) ===== */
.hero-wrap{
  width:100vw;
  position:relative;
  left:50%;right:50%;
  margin-left:-50vw;margin-right:-50vw;
  background:linear-gradient(180deg,rgba(0,0,0,.4),rgba(0,0,0,.2)),url('hero.jpg') center/cover no-repeat;
  min-height:520px;
  display:flex;align-items:center;
}
.hero-inner{width:100%}
.hero-card{
  display:flex;justify-content:space-between;gap:30px;
}
.hero-title{
  font-family:"Oswald";
  font-size:48px;
  color:var(--brand-yellow);
  margin:0 0 12px;
}
.hero-lead{
  color:var(--muted);
  max-width:70ch;
  margin-bottom:22px;
}
.hero-right .card{
  background:rgba(255,255,255,0.02);
  padding:0;border-radius:12px;
  overflow:hidden;
}
.hero-right img{width:100%;display:block}

/* ===== MARQUEE ===== */
.marquee-wrap{background:#0b0b0b;padding:12px 0}
.marquee{overflow:hidden;white-space:nowrap}
.marquee p{
  display:inline-block;
  padding-left:100%;
  color:var(--brand-yellow);
  text-transform:uppercase;
  animation:marquee 22s linear infinite;
}
.marquee:hover p{animation-play-state:paused}
@keyframes marquee{
  0%{transform:translateX(0)}
  100%{transform:translateX(-100%)}
}

/* ===== ABOUT ===== */
.about-section{
  padding:60px 0;
  background:#0e0e0f;
}
.section-title{
  font-family:"Oswald";
  text-align:center;
  color:var(--brand-yellow);
  font-size:32px;
  margin-bottom:8px;
}
.section-sub{
  text-align:center;
  color:var(--muted);
  max-width:780px;
  margin:0 auto 28px;
}
.about-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:20px;
}
.about-card{
  background:var(--card-bg);
  padding:22px;
  border-radius:12px;
  border-left:6px solid var(--brand-yellow);
  transition:.25s ease;
}
.about-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 40px rgba(0,0,0,0.5);
}
.about-card h3{
  font-family:"Oswald";
  margin:0 0 10px;
  color:var(--brand-yellow);
}

/* ===== WEEKLY SCHEDULE (GRID) ===== */
.weekly{padding:60px 0;background:#070707}
.schedule-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:20px;
}
.event-card{
  background:rgba(255,255,255,0.03);
  padding:20px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,0.05);
  transition:.25s ease;
}
.event-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 50px rgba(0,0,0,0.5);
}
.event-card h4{
  font-family:"Oswald";
  color:var(--brand-yellow);
  margin:0 0 6px;
}
.event-card time{color:var(--muted);font-weight:600}

/* GALLERY PREVIEW */
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(140px,1fr));
  gap:10px;
  margin-top:25px;
}
.gallery-grid img{
  width:100%;
  height:130px;
  object-fit:cover;
  border-radius:8px;
}

/* ===== CTA FULL-WIDTH (YELLOW) ===== */
.cta-full{
  width:100vw;
  left:50%;right:50%;
  margin-left:-50vw;margin-right:-50vw;
  background:var(--brand-yellow);
  color:#0d0d0d;
  text-align:center;
  padding:50px 20px;
}
.cta-full h3{
  font-family:"Oswald";
  margin:0 0 8px;
}
.cta-full p{
  max-width:780px;
  margin:0 auto 20px;
  color:#000;
}

/* ===== CONTACT CTA ===== */
.contact-cta{
  padding:70px 20px;
  background:#0c0c0c;
  text-align:center;
}
.contact-cta h3{
  font-family:"Oswald";
  color:var(--brand-yellow);
  margin-bottom:8px;
}
.contact-cta p{
  color:var(--muted);
  max-width:780px;
  margin:0 auto 18px;
}

/* FOOTER */
footer{
  text-align:center;
  padding:28px 0;
  color:var(--muted);
  font-size:14px;
}

/* ===== RESPONSIVE ===== */
@media(max-width:900px){
  .hero-card{flex-direction:column}
  .hero-title{font-size:34px}
}
@media(max-width:600px){
  .hero-title{font-size:28px}
}/* End custom CSS */