/* ================================================
   Master PH Tutorial Center — Stylesheet
   Dark theme with gold accents
   ================================================ */

/*@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');*/

/*@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');*/
@import url('https://fonts.googleapis.com/css2?family=Saira+Stencil:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --bg-dark:    #0d0d0d;
  --bg-card:    #1a1a1a;
  --bg-card2:   #222222;
  --gold:       #c9a84c;
  --gold-light: #e2c070;
  --gold-dim:   rgba(201,168,76,0.15);
  --gold-border:rgba(201,168,76,0.25);
  --white:      #ffffff;
  --gray:       #999999;
  --gray-light: #cccccc;
  --border:     rgba(255,255,255,0.08);
  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  20px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-dark);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13,13,13,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-icon {
  width: 38px; height: 38px;
 /* background: var(--gold);*/
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 16px;
  color: var(--bg-dark);
}

.nav-logo-text {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
}
.nav-logo-text span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }

.nav-enroll {
  background: var(--gold);
  color: var(--bg-dark) !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700 !important;
  font-size: 14px;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-enroll:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* ---- SECTIONS SHARED ---- */
.section { padding: 100px 40px; }
.section-center { text-align: center; }

.badge {
  display: inline-block;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.section-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-heading .gold { color: var(--gold); }

.section-sub {
  color: var(--gray);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 56px;
  line-height: 1.8;
}

.container { max-width: 1200px; margin: 0 auto; }

/* ---- HERO ---- */
#hero {
  min-height: 100vh;
  /*background: var(--bg-dark);*/
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 40px 60px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201,168,76,0.07) 0%, transparent 70%);
  pointer-events: none;
}


/* HERO BACKGROUND - Greyscale Version */
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/construction-bg.jpg');   /* ← Change path if needed */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -2;
  
  /* Makes the image greyscale */
  filter: grayscale(85%);        /* 85% greyscale - looks professional */
  /* filter: grayscale(100%); */ /* Use this if you want FULL black & white */
}

.hero-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.82);   /* Slightly darker overlay for better text contrast */
  z-index: -1;
}


.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/construction-bg.jpg');   /* Change path if needed */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -2;
}



.hero-line {
  width: 100%;
  max-width: 900px;
  height: 1px;
  background: var(--border);
  margin: 48px auto 0;
}

#hero h1 {
  font-family: sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
 /* font-weight: 900;*/
  line-height: 1.1;
  margin-bottom: 24px;
  max-width: 900px;
  letter-spacing: 10px;
  text-transform: uppercase;

}
#hero h1 .gold { color: var(--gold); }

#hero p.hero-sub {
  color: var(--gray-light);
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

#hero p.hero-sub strong { color: var(--white); font-weight: 600; }
#hero p.hero-sub .gold  { color: var(--gold); }

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.25s;
  font-family: 'Inter', sans-serif;
}

.btn-gold {
  background: var(--gold);
  color: var(--bg-dark);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-outline:hover {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.05);
}

.hero-stats {
  display: flex;
  gap: 64px;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 40px;
}

.hero-stat-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: 13px;
  color: var(--gray);
  margin-top: 6px;
}

/* ---- ABOUT ---- */
#about {
  background: var(--bg-dark);
  padding: 100px 40px;
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-left .badge { margin-bottom: 20px; }
.about-left h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}
.about-left h2 .gold { color: var(--gold); }

.about-left p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.9;
  margin-bottom: 16px;
}

.about-mini-stats {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.about-mini-stat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  flex: 1;
  min-width: 110px;
}
.about-mini-stat-num {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gold);
}
.about-mini-stat-label {
  font-size: 12px;
  color: var(--gray);
  margin-top: 4px;
}

.about-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: border-color 0.2s;
}
.about-card:hover { border-color: var(--gold-border); }

.about-card-icon {
  width: 44px; height: 44px;
  background: var(--gold-dim);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.about-card-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 2; }

.about-card h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
}
.about-card p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.7;
}

/* ---- PROGRAMS ---- */
#programs {
  background: #111111;
  padding: 100px 40px;
}

.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--gray);
  font-family: 'Inter', sans-serif;
  transition: all 0.2s;
}
.filter-tab.active, .filter-tab:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg-dark);
  font-weight: 700;
}

.programs-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.prog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s;
}
.prog-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
}

.prog-card-icon {
  width: 54px; height: 54px;
  background: var(--gold-dim);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.prog-card-icon svg { width: 26px; height: 26px; stroke: var(--gold); fill: none; stroke-width: 2; }

.prog-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(59,93,168,0.25);
  color: #7da4f0;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.prog-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.prog-card p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 18px;
}

.prog-card-meta {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: var(--gray);
}
.prog-card-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.prog-card-meta svg { width: 14px; height: 14px; stroke: var(--gray); fill: none; stroke-width: 2; }

/* ---- SCHEDULE ---- */
#schedule {
  background: var(--bg-dark);
  padding: 100px 40px;
}

.schedule-table-wrap {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
}

.schedule-table thead tr {
  border-bottom: 1px solid var(--border);
}

.schedule-table th {
  padding: 18px 24px;
  text-align: left;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray);
  background: rgba(255,255,255,0.02);
}

.schedule-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.schedule-table tbody tr:last-child { border-bottom: none; }
.schedule-table tbody tr:hover { background: rgba(255,255,255,0.02); }

.schedule-table td {
  padding: 20px 24px;
  font-size: 14px;
  vertical-align: middle;
}

.sched-program-name {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 4px;
}

.sched-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 50px;
  margin-top: 4px;
}
.sched-tag.professional { background: rgba(201,168,76,0.15); color: var(--gold); }
.sched-tag.student      { background: rgba(59,93,168,0.2);  color: #7da4f0; }

.sched-datetime { color: var(--gray-light); }
.sched-datetime .date {
  display: flex; align-items: center; gap: 6px;
  margin-bottom: 4px;
}
.sched-datetime .time {
  display: flex; align-items: center; gap: 6px;
  color: var(--gray); font-size: 13px;
}
.sched-datetime svg { width: 14px; height: 14px; stroke: var(--gold); fill: none; stroke-width: 2; }

.sched-location {
  display: flex; align-items: center; gap: 6px;
  color: var(--gray-light);
}
.sched-location svg { width: 14px; height: 14px; stroke: var(--gold); fill: none; stroke-width: 2; }

.sched-avail {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px;
  font-weight: 600;
}
.sched-avail.few  { color: #f87171; }
.sched-avail.some { color: var(--gold); }
.sched-avail.many { color: #4ade80; }
.sched-avail svg  { width: 14px; height: 14px; fill: none; stroke-width: 2; stroke: currentColor; }

.btn-enroll-sm {
  background: var(--gold);
  color: var(--bg-dark);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}
.btn-enroll-sm:hover { background: var(--gold-light); transform: translateY(-1px); }

/* ---- INSTRUCTORS ---- */
#instructors {
  background: #111111;
  padding: 100px 40px;
}

.instructors-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.instructor-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.instructor-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
}

.instructor-img {
  width: 100%;
  aspect-ratio: 3/3.5;
  object-fit: cover;
  background: var(--bg-card2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: var(--gold);
}
.navM-img {
  width: 100%;
  aspect-ratio: 3/3.5;
  object-fit: cover;
/*  background: var(--bg-card2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: var(--gold);*/
}

.instructor-img-placeholder {
  width: 100%;
  aspect-ratio: 3/3.5;
  background: linear-gradient(160deg, var(--bg-card2), #2a2a2a);
  display: flex;
  align-items: center;
  justify-content: center;
}

.instructor-info { padding: 20px; }

.instructor-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 4px;
}

.instructor-role {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 12px;
}

.instructor-bio {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.7;
}

/* ---- FACEBOOK FEED ---- */
#facebook {
  background: var(--bg-dark);
  padding: 100px 40px;
}

.fb-plugin-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}

.fb-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.fb-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.fb-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
}

.fb-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
}

.fb-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #1877f2;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px; color: #fff;
  flex-shrink: 0;
}

.fb-page-name { font-size: 13px; font-weight: 600; }
.fb-post-date { font-size: 11px; color: var(--gray); margin-top: 1px; }

.fb-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: var(--bg-card2);
}

.fb-card-img-placeholder {
  width: 100%; aspect-ratio: 16/9;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  display: flex; align-items: center; justify-content: center;
  color: #1877f2;
  font-size: 32px;
}

.fb-card-body { padding: 14px 18px; }

.fb-card-body p {
  font-size: 13px;
  color: var(--gray-light);
  line-height: 1.7;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.fb-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 18px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--gray);
}

.fb-card-footer a {
  color: #1877f2;
  font-weight: 600;
  font-size: 12px;
  transition: opacity 0.2s;
}
.fb-card-footer a:hover { opacity: 0.8; }

.fb-loading {
  text-align: center;
  padding: 60px 20px;
  color: var(--gray);
}

.fb-error {
  grid-column: 1/-1;
  text-align: center;
  padding: 40px;
  color: var(--gray);
}

/* ---- CONTACT ---- */
#contact {
  background: #111111;
  padding: 100px 40px;
}

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact-form-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.contact-form-box h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.contact-form-box > p {
  color: var(--gray);
  font-size: 13px;
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group { margin-bottom: 16px; }

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-light);
  margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #555; }
.form-group select option { background: var(--bg-card2); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}

.form-group textarea { min-height: 120px; resize: vertical; }

#form-status {
  display: none;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  margin-top: 14px;
}
#form-status.success {
  display: block;
  background: rgba(74,222,128,0.1);
  border: 1px solid rgba(74,222,128,0.3);
  color: #4ade80;
}
#form-status.error {
  display: block;
  background: rgba(248,113,113,0.1);
  border: 1px solid rgba(248,113,113,0.3);
  color: #f87171;
}

.contact-info-side { padding-top: 8px; }

.contact-info-side h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.2;
}
.contact-info-side h2 .gold { color: var(--gold); }
.contact-info-side > p {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 32px;
  line-height: 1.8;
}

.contact-detail-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 16px;
  transition: border-color 0.2s;
}
.contact-detail-card:hover { border-color: var(--gold-border); }

.contact-detail-icon {
  width: 44px; height: 44px;
  background: var(--gold-dim);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 2; }

.contact-detail-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-detail-value {
  font-size: 14px;
  color: var(--gray-light);
  line-height: 1.6;
}

/* ---- FOOTER ---- */
footer {
  background: #080808;
  padding: 60px 40px 32px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.footer-brand p {
  color: var(--gray);
  font-size: 13px;
  line-height: 1.8;
  margin-top: 14px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 13px;
  color: var(--gray);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
  max-width: 1200px;
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--gray);
}

.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 32px; height: 32px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray);
  font-size: 13px;
  transition: all 0.2s;
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ---- FADE IN REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---- MOBILE ---- */
@media (max-width: 1024px) {
  .instructors-grid { grid-template-columns: repeat(2, 1fr); }
  .programs-grid    { grid-template-columns: repeat(2, 1fr); }
  .about-inner      { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner     { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .navbar { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: rgba(13,13,13,0.98);
    padding: 20px 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
  }
  .nav-toggle { display: flex; }

  .section { padding: 70px 20px; }
  #hero     { padding: 100px 20px 60px; }
  #about, #programs, #schedule, #instructors, #facebook, #contact { padding: 70px 20px; }
  footer    { padding: 50px 20px 24px; }

  .hero-stats { gap: 32px; }
  .programs-grid { grid-template-columns: 1fr; }
  .instructors-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-inner { grid-template-columns: 1fr; }
  .fb-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .about-right { grid-template-columns: 1fr; }

  .schedule-table { display: block; overflow-x: auto; }
}

@media (max-width: 480px) {
  .hero-stats { flex-direction: column; gap: 24px; }
  .instructors-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .about-mini-stats { flex-direction: column; }
}
