/* ============================================================
   MSLBRA — Mid-States Little Britches Rodeo Association
   Main Stylesheet
   ============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Rye&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Lato:wght@300;400;700;900&display=swap');

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  /* Brand Colors */
  --primary:        #8B1A1A;
  --primary-dark:   #5C0E0E;
  --primary-light:  #B52828;
  --secondary:      #C49019;
  --secondary-dark: #9A7012;
  --secondary-light:#E2B020;
  --accent:         #1B3A5C;
  --accent-dark:    #0F2240;

  /* Neutrals */
  --dark:           #1C0F06;
  --brown:          #5C3010;
  --brown-light:    #8B5E3C;
  --brown-lighter:  #A67C52;
  --cream:          #F5EAD0;
  --cream-dark:     #EDD9AD;
  --light:          #FBF5EC;
  --gray-light:     #E8E0D5;
  --gray:           #8B8080;
  --gray-dark:      #5C5550;
  --white:          #FFFFFF;

  /* Text */
  --text-dark:  #2C1810;
  --text-body:  #3C2818;
  --text-muted: #7C6858;

  /* Typography */
  --font-display: 'Rye', Georgia, serif;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Lato', 'Segoe UI', Arial, sans-serif;

  /* Spacing */
  --sp-xs:  0.25rem;
  --sp-sm:  0.5rem;
  --sp-md:  1rem;
  --sp-lg:  1.5rem;
  --sp-xl:  2rem;
  --sp-2xl: 3rem;
  --sp-3xl: 4rem;
  --sp-4xl: 6rem;

  /* Layout */
  --max-w:    1200px;
  --pad:      1.5rem;

  /* Shadows */
  --shadow-sm: 0 2px 8px  rgba(28,15,6,.12);
  --shadow-md: 0 4px 20px rgba(28,15,6,.18);
  --shadow-lg: 0 8px 40px rgba(28,15,6,.24);

  /* Borders */
  --radius:    4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --border:    #D4C8B8;

  /* Transitions */
  --tr:    all 0.3s ease;
  --tr-f:  all 0.15s ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--light);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: var(--tr-f); }
a:hover { color: var(--primary-dark); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
p { margin-bottom: var(--sp-md); }
p:last-child { margin-bottom: 0; }

/* ===== TYPOGRAPHY ===== */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  line-height: 1.3;
  font-weight: 700;
}
h1 { font-size: clamp(2rem,   5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--text-dark);
  margin-bottom: var(--sp-sm);
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  font-weight: 300;
}
.section-header { text-align: center; margin-bottom: var(--sp-2xl); }
.section-header .section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--secondary);
  margin: var(--sp-md) auto 0;
}

/* ===== LAYOUT ===== */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad); }
.section    { padding: var(--sp-4xl) 0; }
.section-sm { padding: var(--sp-2xl) 0; }
.section-lg { padding: 5rem 0; }

.grid   { display: grid; gap: var(--sp-xl); }
.grid-2 { grid-template-columns: repeat(2,1fr); }
.grid-3 { grid-template-columns: repeat(3,1fr); }
.grid-4 { grid-template-columns: repeat(4,1fr); }

.bg-light  { background: var(--light); }
.bg-cream  { background: var(--cream); }
.bg-white  { background: var(--white); }
.bg-dark   { background: var(--dark); }
.bg-brown  { background: var(--brown); }
.bg-primary{ background: var(--primary); }

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: var(--primary);
  color: var(--cream);
  text-align: center;
  padding: 0.55rem 3rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  position: relative;
}
.announcement-bar a { color: var(--secondary-light); text-decoration: underline; }
.announcement-close {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--cream);
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0.7;
  padding: 0.25rem;
}
.announcement-close:hover { opacity: 1; }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--dark);
  box-shadow: var(--shadow-md);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad);
  max-width: var(--max-w);
  margin: 0 auto;
  height: 68px;
}
.navbar-brand {
  display: flex;
  flex-direction: column;
  color: var(--cream);
  text-decoration: none;
  line-height: 1.1;
  flex-shrink: 0;
}
.navbar-brand-main {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--secondary-light);
  letter-spacing: 1px;
}
.navbar-brand-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: rgba(245,234,208,0.7);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 300;
}
.navbar-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
.navbar-nav a {
  color: var(--cream);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.45rem 0.7rem;
  border-radius: var(--radius);
  transition: var(--tr-f);
  white-space: nowrap;
}
.navbar-nav a:hover,
.navbar-nav a.active { color: var(--secondary-light); background: rgba(196,144,25,0.12); }
.navbar-nav .nav-ext { color: var(--secondary-light); }

.navbar-right {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  margin-left: var(--sp-sm);
  border-left: 1px solid rgba(255,255,255,0.15);
  padding-left: var(--sp-md);
}
.navbar-right a {
  color: rgba(245,234,208,0.8);
  font-size: 1.1rem;
  transition: var(--tr-f);
  display: flex;
  align-items: center;
}
.navbar-right a:hover { color: var(--secondary-light); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.4rem;
  cursor: pointer;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: var(--tr);
  transform-origin: center;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  color: var(--white);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-home {
  min-height: 88vh;
  background:
    linear-gradient(135deg, rgba(139,26,26,.88) 0%, rgba(28,15,6,.96) 100%),
    url('../images/FinalsPicture.jpg') center/cover no-repeat;
}
.hero-inner {
  min-height: 36vh;
  background:
    linear-gradient(to right, rgba(28,15,6,.92) 0%, rgba(92,14,14,.82) 100%),
    url('../images/FinalsPicture.jpg') center/cover no-repeat;
}
.hero-content { position: relative; z-index: 2; width: 100%; }
.hero-home .hero-content {
  text-align: center;
  padding: 7rem var(--pad) 5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.hero-inner .hero-content {
  padding: 3.5rem var(--pad);
  max-width: var(--max-w);
  margin: 0 auto;
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--secondary-light);
  margin-bottom: var(--sp-md);
  display: block;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6.5vw, 4.8rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: var(--sp-md);
  text-shadow: 2px 3px 10px rgba(0,0,0,.5);
}
.hero-title span { color: var(--secondary-light); }
.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(245,234,208,.9);
  max-width: 640px;
  margin: 0 auto var(--sp-xl);
  font-weight: 300;
  line-height: 1.8;
}
.hero-page-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  color: var(--white);
  margin-bottom: 0.5rem;
}
.hero-breadcrumb {
  font-size: 0.9rem;
  color: rgba(245,234,208,.75);
}
.hero-breadcrumb a { color: var(--secondary-light); }
.hero-breadcrumb a:hover { color: var(--white); }
.hero-actions {
  display: flex;
  gap: var(--sp-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--sp-xl);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius);
  transition: var(--tr);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-secondary { background: var(--secondary); color: var(--dark); border-color: var(--secondary); }
.btn-secondary:hover { background: var(--secondary-dark); border-color: var(--secondary-dark); color: var(--dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--dark); }

.btn-outline-primary { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline-primary:hover { background: var(--primary); color: var(--white); }

.btn-facebook { background: var(--white); color: #1877f2; border-color: var(--white); font-weight: 700; }
.btn-facebook:hover { background: #f0f4ff; color: #1251aa; }

.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.78rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }

/* ===== CARDS ===== */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--tr);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-img { width: 100%; height: 210px; object-fit: cover; }
.card-body { padding: var(--sp-lg); }
.card-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.2rem 0.65rem;
  border-radius: 2px;
  background: var(--secondary);
  color: var(--dark);
  margin-bottom: var(--sp-sm);
}
.card-tag-blue { background: var(--accent); color: var(--white); }
.card-tag-red  { background: var(--primary); color: var(--white); }

.card-title {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  color: var(--text-dark);
  margin-bottom: var(--sp-sm);
  line-height: 1.4;
}
.card-meta {
  font-size: 0.83rem;
  color: var(--text-muted);
  margin-bottom: var(--sp-sm);
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  flex-wrap: wrap;
}
.card-text { font-size: 0.95rem; color: var(--text-body); margin-bottom: var(--sp-md); }
.card-link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: var(--tr-f);
}
.card-link:hover { color: var(--primary-dark); gap: 0.55rem; }

/* ===== EVENT CARDS ===== */
.event-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  transition: var(--tr);
  border-left: 5px solid var(--primary);
}
.event-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.event-card.past { border-left-color: var(--gray); }
.event-card.finals { border-left-color: var(--secondary); }

.event-date {
  background: var(--primary);
  color: var(--white);
  padding: var(--sp-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  text-align: center;
}
.event-card.past .event-date  { background: var(--gray-dark); }
.event-card.finals .event-date { background: var(--secondary); color: var(--dark); }

.event-date .month { font-size: 0.7rem; font-weight: 900; text-transform: uppercase; letter-spacing: 1px; }
.event-date .day   { font-family: var(--font-heading); font-size: 2.1rem; font-weight: 700; line-height: 1; }
.event-date .year  { font-size: 0.68rem; opacity: 0.8; }

.event-body { padding: var(--sp-lg); flex: 1; }
.event-title {
  font-family: var(--font-heading);
  font-size: 1.12rem;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}
.event-location {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: var(--sp-xs);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.event-detail { font-size: 0.83rem; color: var(--text-muted); margin-bottom: var(--sp-sm); }
.event-actions { display: flex; gap: var(--sp-sm); flex-wrap: wrap; margin-top: var(--sp-sm); }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.2rem 0.65rem;
  border-radius: 20px;
}
.badge-upcoming { background: rgba(27,58,92,.1);   color: var(--accent); }
.badge-past     { background: rgba(140,128,128,.15); color: var(--gray-dark); }
.badge-results  { background: rgba(196,144,25,.15); color: var(--secondary-dark); }
.badge-finals   { background: rgba(139,26,26,.1);  color: var(--primary-dark); }

/* ===== STATS BAR ===== */
.stats-bar { background: var(--dark); padding: var(--sp-3xl) 0; }
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--secondary-light);
  display: block;
  line-height: 1;
  margin-bottom: var(--sp-sm);
}
.stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(245,234,208,.7);
  font-weight: 700;
}

/* ===== FEATURE BOXES ===== */
.feature-box {
  text-align: center;
  padding: var(--sp-xl);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--tr);
}
.feature-box:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-md);
  font-size: 1.6rem;
}
.feature-title { font-family: var(--font-heading); font-size: 1.15rem; margin-bottom: var(--sp-sm); }
.feature-text  { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; margin: 0; }

/* ===== ABOUT SECTION ===== */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3xl);
  align-items: center;
}
.about-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.about-img-wrap img { width: 100%; height: 460px; object-fit: cover; }
.about-img-wrap::after {
  content: '';
  position: absolute;
  bottom: -14px;
  right: -14px;
  width: 80%;
  height: 80%;
  border: 4px solid var(--secondary);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.about-text .section-title { text-align: left; }
.about-text .section-title::after { margin: var(--sp-md) 0 0; }

/* ===== CALLOUT / NLBRA SECTION ===== */
.callout-section {
  background: linear-gradient(135deg, var(--brown) 0%, var(--dark) 100%);
  color: var(--cream);
  padding: var(--sp-3xl) 0;
  text-align: center;
}
.callout-section h2 { color: var(--secondary-light); font-family: var(--font-heading); margin-bottom: var(--sp-md); }
.callout-section p  { color: rgba(245,234,208,.85); max-width: 600px; margin: 0 auto var(--sp-xl); font-size: 1.05rem; }

/* ===== FACEBOOK SECTION ===== */
.facebook-section {
  background: linear-gradient(135deg, #1251aa 0%, #1877f2 100%);
  color: var(--white);
  padding: var(--sp-3xl) 0;
  text-align: center;
}
.facebook-section h2 { color: var(--white); margin-bottom: var(--sp-md); }
.facebook-section p  { color: rgba(255,255,255,.9); max-width: 540px; margin: 0 auto var(--sp-xl); }

/* ===== MISSION SECTION ===== */
.mission-section {
  background: var(--primary);
  color: var(--white);
  padding: var(--sp-3xl) 0;
}
.mission-section h2 { color: var(--secondary-light); text-align: center; margin-bottom: var(--sp-xl); }
.mission-text {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.08rem;
  line-height: 1.9;
  color: rgba(255,255,255,.92);
}

/* ===== ACCORDION ===== */
.accordion { border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-item:last-child { border-bottom: none; }
.accordion-btn {
  width: 100%;
  text-align: left;
  padding: 1.2rem var(--sp-lg);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--tr-f);
  border: none;
}
.accordion-btn:hover { background: var(--light); }
.accordion-btn.open  { background: var(--primary); color: var(--white); }
.accordion-btn .acc-sub {
  display: block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 2px;
}
.accordion-btn.open .acc-sub { color: rgba(245,234,208,.8); }
.acc-icon {
  font-size: 1rem;
  transition: var(--tr);
  flex-shrink: 0;
  margin-left: var(--sp-md);
}
.accordion-btn.open .acc-icon { transform: rotate(45deg); }
.accordion-panel {
  display: none;
  padding: var(--sp-lg) var(--sp-xl);
  background: var(--light);
  border-top: 1px solid var(--border);
  animation: slideDown 0.2s ease;
}
.accordion-panel.open { display: block; }
.accordion-panel ul { list-style: disc; padding-left: var(--sp-xl); line-height: 1.95; }
.accordion-panel ul li { margin-bottom: var(--sp-sm); color: var(--text-body); }
.accordion-panel h4 { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; color: var(--primary); margin: var(--sp-md) 0 var(--sp-sm); font-family: var(--font-body); font-weight: 700; }
.accordion-panel .info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--sp-md);
  margin-bottom: var(--sp-md);
}
.info-chip {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.65rem 1rem;
  font-size: 0.88rem;
}
.info-chip strong { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.5px; color: var(--primary); margin-bottom: 2px; }

@keyframes slideDown { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }

/* ===== RULES SECTIONS ===== */
.rules-intro {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: var(--sp-xl);
  margin-bottom: var(--sp-2xl);
  border-left: 5px solid var(--secondary);
}
.rules-intro p:last-child { margin-bottom: 0; }

.general-rules {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--sp-xl);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--sp-2xl);
}
.general-rules h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: var(--sp-lg);
  padding-bottom: var(--sp-sm);
  border-bottom: 2px solid var(--secondary);
}
.rules-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xl);
}
.rules-group h4 {
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  margin-bottom: var(--sp-sm);
  font-family: var(--font-body);
  font-weight: 700;
}
.rules-group ul { list-style: none; padding: 0; }
.rules-group ul li {
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--gray-light);
  font-size: 0.92rem;
  color: var(--text-body);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.rules-group ul li:last-child { border-bottom: none; }
.rules-group ul li i { color: var(--secondary); margin-top: 4px; flex-shrink: 0; font-size: 0.75rem; }

/* ===== SCHEDULE TABS ===== */
.filter-row {
  display: flex;
  gap: var(--sp-sm);
  flex-wrap: wrap;
  margin-bottom: var(--sp-xl);
  align-items: center;
}
.filter-label {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-right: var(--sp-sm);
}
.filter-btn {
  padding: 0.45rem 1.1rem;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid var(--border);
  border-radius: 20px;
  color: var(--text-muted);
  background: var(--white);
  cursor: pointer;
  transition: var(--tr-f);
}
.filter-btn:hover  { border-color: var(--primary); color: var(--primary); }
.filter-btn.active { background: var(--primary); border-color: var(--primary); color: var(--white); }

.schedule-events { display: flex; flex-direction: column; gap: var(--sp-md); }

/* ===== DIVISION CARDS ===== */
.division-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--tr);
}
.division-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.division-header {
  background: var(--primary);
  color: var(--white);
  padding: var(--sp-md) var(--sp-lg);
}
.division-header h3 { font-size: 1.1rem; margin-bottom: 2px; }
.division-header span { font-family: var(--font-body); font-size: 0.82rem; color: var(--secondary-light); font-weight: 400; }
.division-body { padding: var(--sp-lg); }
.division-body ul { list-style: none; padding: 0; }
.division-body ul li {
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--gray-light);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.division-body ul li:last-child { border-bottom: none; }
.division-body ul li::before { content: '★'; color: var(--secondary); font-size: 0.7rem; }

/* ===== BOARD CARDS ===== */
.board-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--sp-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--tr);
}
.board-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.board-avatar {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--brown-light);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.7rem;
  margin: 0 auto var(--sp-md);
  font-weight: 700;
}
.board-name { font-family: var(--font-heading); font-size: 1rem; margin-bottom: 2px; }
.board-role { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; color: var(--primary); font-weight: 700; }
.board-email { font-size: 0.83rem; color: var(--text-muted); margin-top: var(--sp-sm); }
.board-email a { color: var(--primary); }

/* ===== NEWS LAYOUT ===== */
.news-layout { display: grid; grid-template-columns: 2fr 1fr; gap: var(--sp-2xl); }
.news-featured { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); margin-bottom: var(--sp-xl); }
.news-featured img { width: 100%; height: 340px; object-fit: cover; }
.news-featured-body { padding: var(--sp-xl); }
.news-featured-body .card-title { font-size: 1.5rem; }

.sidebar-widget {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--sp-lg);
  margin-bottom: var(--sp-xl);
  box-shadow: var(--shadow-sm);
}
.sidebar-widget h3 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary);
  padding-bottom: var(--sp-sm);
  border-bottom: 2px solid var(--secondary);
  margin-bottom: var(--sp-md);
  font-family: var(--font-body);
  font-weight: 700;
}
.recent-news-item {
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--gray-light);
  font-size: 0.88rem;
}
.recent-news-item:last-child { border-bottom: none; }
.recent-news-item a { color: var(--text-dark); font-weight: 700; line-height: 1.4; display: block; margin-bottom: 2px; }
.recent-news-item a:hover { color: var(--primary); }
.recent-news-item .meta { font-size: 0.78rem; color: var(--text-muted); }

/* ===== CONTACT ===== */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-2xl); align-items: start; }
.contact-info-item { display: flex; gap: var(--sp-md); margin-bottom: var(--sp-xl); align-items: flex-start; }
.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.contact-info-text h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  margin-bottom: 2px;
  font-family: var(--font-body);
  font-weight: 700;
}
.contact-info-text p { margin: 0; font-size: 0.95rem; }

/* ===== FORMS ===== */
.form-group { margin-bottom: var(--sp-lg); }
.form-label {
  display: block;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--text-dark);
  margin-bottom: var(--sp-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-body);
  background: var(--white);
  transition: var(--tr-f);
}
.form-control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(139,26,26,.1); }
.form-control::placeholder { color: var(--gray); }
textarea.form-control { resize: vertical; min-height: 140px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-md); }

/* ===== ALERTS ===== */
.alert {
  padding: var(--sp-md) var(--sp-lg);
  border-radius: var(--radius-md);
  border-left: 4px solid;
  margin-bottom: var(--sp-lg);
  font-size: 0.95rem;
}
.alert-info    { background: rgba(27,58,92,.08);   border-color: var(--accent);   color: var(--accent-dark); }
.alert-warning { background: rgba(196,144,25,.1);   border-color: var(--secondary); color: var(--secondary-dark); }
.alert-success { background: rgba(30,100,50,.08);   border-color: #1e6432;          color: #1e6432; }

/* ===== FOOTER ===== */
.footer { background: var(--dark); color: var(--cream); }
.footer-main { padding: var(--sp-3xl) 0 var(--sp-xl); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--sp-2xl); }

.footer-brand h3 { font-family: var(--font-display); font-size: 1.15rem; color: var(--secondary-light); margin-bottom: var(--sp-sm); }
.footer-brand p  { font-size: 0.88rem; color: rgba(245,234,208,.65); line-height: 1.85; margin-bottom: var(--sp-md); }
.nlbra-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(196,144,25,.15);
  border: 1px solid rgba(196,144,25,.3);
  color: var(--secondary-light);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  margin-bottom: var(--sp-md);
}

.footer-social { display: flex; gap: var(--sp-sm); }
.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,.1);
  color: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: var(--tr-f);
}
.footer-social a:hover { background: var(--secondary); color: var(--dark); }

.footer-section h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--secondary-light);
  margin-bottom: var(--sp-md);
}
.footer-section ul li { margin-bottom: 0.45rem; }
.footer-section ul li a {
  color: rgba(245,234,208,.65);
  font-size: 0.88rem;
  transition: var(--tr-f);
}
.footer-section ul li a:hover { color: var(--secondary-light); padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: var(--sp-lg) var(--pad);
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(245,234,208,.45);
  flex-wrap: wrap;
  gap: var(--sp-md);
}
.footer-bottom a { color: rgba(245,234,208,.65); }
.footer-bottom a:hover { color: var(--secondary-light); }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  border: none;
  font-size: 1.1rem;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--tr);
  z-index: 900;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--primary-dark); }

/* ===== SEASON BANNER ===== */
.season-banner {
  background: linear-gradient(135deg, var(--brown) 0%, var(--dark) 100%);
  color: var(--cream);
  padding: var(--sp-lg) 0;
  text-align: center;
}
.season-banner h2 { font-family: var(--font-display); font-size: 1.4rem; color: var(--secondary-light); margin: 0; }
.season-banner p  { margin: 0.4rem 0 0; font-size: 0.9rem; color: rgba(245,234,208,.75); }

/* ===== UTILITY ===== */
.text-center   { text-align: center; }
.text-primary  { color: var(--primary); }
.text-secondary{ color: var(--secondary); }
.text-muted    { color: var(--text-muted); }
.text-cream    { color: var(--cream); }
.fw-bold       { font-weight: 700; }
.mb-0  { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--sp-sm); }
.mb-md { margin-bottom: var(--sp-md); }
.mb-lg { margin-bottom: var(--sp-lg); }
.mb-xl { margin-bottom: var(--sp-xl); }
.mb-2xl{ margin-bottom: var(--sp-2xl); }
.mt-xl { margin-top: var(--sp-xl); }
.mt-2xl{ margin-top: var(--sp-2xl); }
.divider {
  height: 2px;
  background: linear-gradient(to right, transparent, var(--secondary), transparent);
  margin: var(--sp-2xl) 0;
  border: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-layout { grid-template-columns: 1fr; }
  .about-img-wrap::after { display: none; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .rules-columns { grid-template-columns: 1fr; }
  .news-layout { grid-template-columns: 1fr; }
  .news-layout aside { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-md); }
}

@media (max-width: 768px) {
  :root { --pad: 1rem; }

  .navbar-nav {
    display: none;
    position: fixed;
    inset: 68px 0 0 0;
    background: var(--dark);
    flex-direction: column;
    align-items: flex-start;
    padding: var(--sp-xl);
    gap: var(--sp-xs);
    overflow-y: auto;
    z-index: 999;
  }
  .navbar-nav.open { display: flex; }
  .navbar-nav a { font-size: 1rem; padding: 0.7rem 1rem; width: 100%; }
  .navbar-right { display: none; }
  .nav-toggle { display: flex; }
  .nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .hero-home { min-height: 100vh; }
  .hero-actions { flex-direction: column; align-items: center; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }

  .event-card { flex-direction: column; }
  .event-date  { flex-direction: row; gap: var(--sp-sm); padding: var(--sp-md); justify-content: center; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .contact-layout { grid-template-columns: 1fr; }
  .form-row       { grid-template-columns: 1fr; }

  .stats-bar .grid-4 { grid-template-columns: repeat(2,1fr); }

  .news-layout aside { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .announcement-bar { padding: 0.55rem 2.5rem; font-size: 0.78rem; }
  .back-to-top { bottom: 1rem; right: 1rem; }
}
