/* =========================
   GLOBAL
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #ffffff;
  color: #0c3c00;
  line-height: 1.65;
}

a {
  text-decoration: none;
  color: inherit;
}

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

.container {
  width: min(1120px, 90%);
  margin: auto;
}

.section {
  padding: 90px 0;
}

.alt-section {
  background: #f7f7f7;
}

.dark-section {
  background: #111111;
  color: white;
}

.section-label {
  color: #d71920;
  font-size: 0.78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 16px;
}

.dark-section .section-label,
.png-night .section-label,
.leadership-hero .section-label {
  color: #ffd100;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  align-items: flex-end;
  margin-bottom: 55px;
}

.section-heading h2,
.two-column h2,
.contact-content h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
  max-width: 650px;
}

.section-heading p,
.two-column > div > p,
.contact-content > div > p {
  max-width: 520px;
  color: #666;
}

.dark-section p {
  color: #bbb;
}

/* =========================
   NAVIGATION
========================= */

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.94);
  color: white;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.nav-container {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
}

.logo-image {
  width: 55px;
  height: 55px;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text strong {
  font-size: 1.5rem;
  letter-spacing: 1px;
}

.logo-text span {
  color: #ffd100;
  font-size: .75rem;
  letter-spacing: 2px;
  margin-top: 4px;
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  color: #ddd;
  font-size: .88rem;
  transition: color .2s ease;
}

.nav-links a:hover {
  color: #ffd100;
}

.menu-button {
  display: none;
  background: transparent;
  color: white;
  border: 0;
  font-size: 1.7rem;
  cursor: pointer;
}

/* =========================
   HEROES
========================= */

.hero {
  min-height: 95vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  color: white;
  background:
    linear-gradient(rgba(0,0,0,.58), rgba(0,0,0,.72)),
    linear-gradient(135deg, #000 0%, #b40000 55%, #f0a400 140%);
}

.hero-content {
  max-width: 850px;
}

.eyebrow {
  color: #ffd100;
  text-transform: uppercase;
  font-size: .8rem;
  letter-spacing: 4px;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(4rem, 9vw, 7rem);
  line-height: .92;
}

.hero-text {
  margin: 30px 0;
  max-width: 680px;
  color: #eee;
  font-size: 1.15rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.page-hero,
.leadership-hero {
  padding: 160px 0 80px;
  color: white;
  background:
    linear-gradient(rgba(0,0,0,.60), rgba(0,0,0,.72)),
    linear-gradient(135deg, #000, #b40000, #ffd100);
}

.page-hero h1,
.leadership-hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  line-height: 1.05;
  margin-bottom: 20px;
}

.page-hero p,
.leadership-hero p {
  max-width: 750px;
  color: #eee;
}

/* =========================
   BUTTONS
========================= */

.btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.primary-btn {
  background: #ffd100;
  color: #111;
}

.primary-btn:hover {
  background: #ffe24f;
}

.secondary-btn {
  border: 1px solid currentColor;
}

.text-link {
  display: inline-block;
  margin-top: 18px;
  color: #d71920;
  font-weight: 800;
}

/* =========================
   CARDS / GRIDS
========================= */

.feature-grid,
.resource-grid,
.guide-grid,
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card,
.resource-card {
  padding: 32px;
  border: 1px solid #ddd;
  background: white;
  transition: transform .2s ease, box-shadow .2s ease;
}

.feature-card:hover,
.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
}

.feature-card h3,
.resource-card h3 {
  margin-bottom: 12px;
  font-size: 1.4rem;
}

.feature-card p,
.resource-card p {
  color: #666;
}

.resource-card a {
  color: #d71920;
  display: inline-block;
  margin-top: 20px;
  font-weight: 800;
}

/* =========================
   TWO COLUMN / FORMS
========================= */

.two-column,
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.membership-benefits {
  margin-top: 30px;
}

.membership-benefits p {
  margin: 8px 0;
}

.form-card {
  padding: 32px;
  background: white;
  border: 1px solid #ddd;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #171717;
}

.form-card h3 {
  margin-bottom: 12px;
}

.form-card label {
  font-weight: 700;
  font-size: .9rem;
}

.form-card input,
.form-card textarea,
.form-card select {
  width: 100%;
  padding: 13px;
  border: 1px solid #ccc;
  font: inherit;
  outline: none;
  background: white;
}

.form-card input:focus,
.form-card textarea:focus,
.form-card select:focus {
  border-color: #d71920;
}

/* =========================
   EVENTS
========================= */

.event-grid {
  display: grid;
  gap: 20px;
}

.event-card {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 25px;
  border-top: 1px solid #ddd;
  padding: 30px 0;
}

.event-date {
  border: 1px solid #ddd;
  padding: 15px;
  text-align: center;
}

.event-date span {
  display: block;
  color: #d71920;
  font-weight: 800;
  letter-spacing: 2px;
}

.event-date strong {
  display: block;
  font-size: 2rem;
}

.event-type {
  color: #d71920;
  text-transform: uppercase;
  font-size: .75rem;
  letter-spacing: 2px;
  font-weight: 800;
}

.event-card h3 {
  font-size: 1.6rem;
  margin: 5px 0 8px;
}

.event-card p {
  color: #666;
}

.event-info {
  margin-top: 12px;
  font-weight: bold;
}

/* =========================
   NEW STUDENTS
========================= */
.background-page{
  background:  #ffffff
  
}
.guide-card {
  padding: 30px;
  background: #1c1c1c;
  border: 1px solid #333;
  transition: transform .2s ease, border-color .2s ease;
}

.guide-card:hover {
  transform: translateY(-4px);
  border-color: #ffd100;
}

.guide-card span {
  color: #ffd100;
  font-size: .8rem;
  font-weight: 800;
}

.guide-card h3 {
  margin: 30px 0 10px;
}

.guide-card p {
  color: #bbb;
}

/* =========================
   STEPS
========================= */

.steps {
  max-width: 900px;
}

.step {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  padding: 25px 0;
  border-top: 1px solid #ccc;
}

.step-number {
  color: #d71920;
  font-size: 1.5rem;
  font-weight: 900;
}

/* =========================
   MAP
========================= */

.map-placeholder {
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px;
  color: white;
  background:
    linear-gradient(rgba(0,0,0,.35), rgba(0,0,0,.65)),
    linear-gradient(135deg, #b40000, #000);
}

.map-placeholder h3 {
  font-size: 2rem;
  margin-bottom: 10px;
}

/* =========================
   PNG NIGHT
========================= */

.png-night {
  color: white;
  background: linear-gradient(135deg, #000, #7c0000);
}

.png-night .two-column > div > p {
  color: #ddd;
}

.png-night-card {
  padding: 35px;
  border: 1px solid rgba(255,255,255,.2);
}

.png-night-card p {
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,.15);
  font-size: 1.15rem;
}

/* =========================
   GALLERY
========================= */

.gallery-placeholder {
  min-height: 220px;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  color: white;
  font-weight: 800;
  background:
    linear-gradient(rgba(0,0,0,.15), rgba(0,0,0,.75)),
    #555;
  transition: transform .2s ease;
}

.gallery-placeholder:hover {
  transform: scale(1.02);
}

/* =========================
   LEADERSHIP
========================= */

.executive-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.executive-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  background: white;
  border: 1px solid #ddd;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}

.executive-photo {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  background: #eee;
}

.placeholder-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #777;
}

.executive-info {
  padding: 28px;
}

.executive-role {
  color: #d71920;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: .78rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.executive-info h3 {
  font-size: 1.7rem;
  margin-bottom: 8px;
}

.executive-details {
  color: #777;
  font-size: .92rem;
  margin-bottom: 16px;
  font-weight: 600;
}

.executive-bio {
  color: #555;
}

/* =========================
   CONTACT / FOOTER
========================= */

.contact-section {
  background: #f4f4f4;
}

footer {
  background: #111;
  color: white;
  padding: 50px 0 30px;
}

.footer-divider {
  width: 100%;
  height: 2px;
  margin-bottom: 40px;
  background: linear-gradient(90deg, transparent, #d71920, #ffd100, #d71920, transparent);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-brand p {
  color: #aaa;
}

.social-container {
  text-align: center;
}

.social-container h4 {
  color: #ffd100;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.social-icons a {
  width: 52px;
  height: 52px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.15);
  color: white;
  font-size: 1.4rem;
}

.social-icons a:hover {
  color: #ffd100;
  border-color: #ffd100;
}

.copyright {
  text-align: center;
  margin-top: 40px;
  padding-top: 25px;
  border-top: 1px solid rgba(255,255,255,.1);
  color: #aaa;
  font-size: .9rem;
}

/* =========================
   RESPONSIVE
========================= */

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

@media (max-width: 1100x) {
  .menu-button {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    left: 0;
    top: 78px;
    width: 100%;
    padding: 25px;
    flex-direction: column;
    align-items: flex-start;
    background: #111;
  }

  .nav-links.active {
    display: flex;
  }

  .section-heading,
  .two-column,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .section-heading {
    display: grid;
  }

  .feature-grid,
  .guide-grid,
  .resource-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .section {
    padding: 70px 0;
  }

  .hero {
    min-height: 85vh;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 14vw, 5rem);
  }

  .page-hero,
  .leadership-hero {
    padding: 130px 0 65px;
  }

  .executive-card {
    grid-template-columns: 1fr;
  }

  .executive-photo {
    height: 350px;
    min-height: auto;
  }
}

@media (max-width: 450px) {
  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .event-card,
  .step {
    grid-template-columns: 1fr;
  }

  .event-date {
    width: 90px;
  }
}
