/* ============================================
   BEND FC LISTENS - Main Stylesheet
   Colors: Black #0a0a0a, Gold #c9a84c, White #ffffff
   ============================================ */

:root {
  --black: #0a0a0a;
  --dark: #1a1a1a;
  --dark-gray: #2a2a2a;
  --medium-gray: #444444;
  --light-gray: #e5e5e5;
  --off-white: #f5f5f5;
  --white: #ffffff;
  --gold: #c9a84c;
  --gold-light: #d4b96a;
  --gold-dark: #a8893d;
  --red-accent: #c0392b;
  --green-accent: #27ae60;
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.2);
  --radius: 8px;
  --transition: 0.3s ease;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--gold-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }
img { max-width: 100%; height: auto; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  transition: all var(--transition);
}
.navbar.scrolled {
  background: rgba(10, 10, 10, 0.98);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}
.nav-logo-img { height: 80px; width: auto; }
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

/* Mobile Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  opacity: 0.35;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.6) 0%, rgba(10, 10, 10, 0.3) 40%, rgba(10, 10, 10, 0.7) 100%);
}
.hero-content {
  position: relative;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 800px;
}
.hero-logo {
  width: 338px;
  height: auto;
  margin-bottom: 32px;
  animation: fadeInUp 0.8s ease;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
  animation: fadeInUp 0.8s ease 0.2s both;
}
.hero-tagline {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.4s both;
}
.hero-description {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease 0.6s both;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.8s both;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-align: center;
}
.btn-primary {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--black);
}
.title-underline {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 16px auto 0;
}
.section-subtitle {
  margin-top: 16px;
  font-size: 1.05rem;
  color: var(--medium-gray);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   ABOUT
   ============================================ */
.about { background: var(--off-white); }
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}
.about-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all var(--transition);
  border-top: 3px solid transparent;
}
.about-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-top-color: var(--gold);
}
.about-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  color: var(--gold);
}
.about-icon svg { width: 100%; height: 100%; }
.about-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.about-card p {
  color: var(--medium-gray);
  font-size: 0.95rem;
  line-height: 1.7;
}
.communication-policy {
  background: var(--white);
  border-left: 4px solid var(--gold);
  padding: 32px;
  border-radius: 0 var(--radius) var(--radius) 0;
  max-width: 800px;
  margin: 0 auto;
}
.communication-policy h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.communication-policy p {
  color: var(--medium-gray);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================
   FEEDBACK FORM
   ============================================ */
.feedback { background: var(--black); }
.feedback .section-title { color: var(--white); }
.feedback .section-subtitle { color: rgba(255,255,255,0.6); }
.feedback-form {
  max-width: 800px;
  margin: 0 auto;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group { display: flex; flex-direction: column; }
.form-group.full-width {
  grid-column: 1 / -1;
  margin-bottom: 20px;
}
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.optional { font-weight: 400; color: rgba(255,255,255,0.4); text-transform: none; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  background: var(--dark-gray);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.2);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group select option { background: var(--dark-gray); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 120px; }
.checkbox-label {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  text-transform: none !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
}
.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--gold);
}
.form-routing {
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 24px;
  color: var(--gold);
  font-size: 0.95rem;
}
/* Form Selector Tabs */
.form-selector {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.form-tab {
  flex: 1;
  padding: 16px 24px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  background: transparent;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all var(--transition);
}
.form-tab:hover {
  border-color: rgba(201,168,76,0.5);
  color: rgba(255,255,255,0.8);
}
.form-tab.active {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.btn-submit {
  width: 100%;
  padding: 18px;
  font-size: 1.1rem;
  margin-top: 8px;
}

/* Form Success */
.form-success {
  text-align: center;
  padding: 60px 0;
  max-width: 500px;
  margin: 0 auto;
}
.success-icon {
  width: 80px;
  height: 80px;
  color: var(--green-accent);
  margin: 0 auto 24px;
}
.success-icon svg { width: 100%; height: 100%; }
.form-success h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.form-success p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
  line-height: 1.7;
}

/* ============================================
   STAFF DIRECTORY / ORG CHART
   ============================================ */
.directory { background: var(--off-white); }
.org-chart { margin-bottom: 40px; }
.org-level {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.org-connector {
  width: 2px;
  height: 32px;
  background: var(--gold);
  margin: 0 auto;
}
.org-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  min-width: 220px;
  max-width: 260px;
  flex: 1;
}
.org-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.org-card-header {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 8px;
}
.org-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.org-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-dark);
  margin-bottom: 10px;
}
.org-contact-for {
  font-size: 0.78rem;
  color: var(--medium-gray);
  line-height: 1.5;
}
.org-card-executive {
  border-top: 3px solid var(--gold);
  background: var(--dark);
  min-width: 300px;
}
.org-card-executive h3 { color: var(--white); }
.org-card-executive .org-title { color: var(--gold); }
.org-card-executive .org-contact-for { color: rgba(255,255,255,0.6); }
.org-card-management { border-top: 3px solid var(--dark-gray); }
.org-card-staff { border-top: 2px solid var(--light-gray); }


/* ============================================
   CALENDAR
   ============================================ */
.calendar { background: var(--white); }
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.calendar-month {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 28px;
  transition: all var(--transition);
  border-left: 3px solid var(--gold);
}
.calendar-month:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.calendar-month h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}
.calendar-month ul { list-style: none; }
.calendar-month li {
  font-size: 0.88rem;
  color: var(--medium-gray);
  padding: 6px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  line-height: 1.5;
}
.calendar-month li:last-child { border-bottom: none; }
.calendar-month li.highlight {
  color: var(--black);
  font-weight: 600;
}

/* ============================================
   COACHING STANDARDS
   ============================================ */
.coaching { background: var(--off-white); }
.coaching-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}
.coaching-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.coaching-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.coaching-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.coaching-level {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.coaching-timeline {
  font-size: 0.85rem;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 16px;
}
.coaching-card ol {
  padding-left: 20px;
  list-style: decimal;
}
.coaching-card ol li {
  font-size: 0.88rem;
  color: var(--medium-gray);
  padding: 4px 0;
  line-height: 1.5;
}

.coaching-standards-footer {
  background: var(--dark);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
}
.coaching-standards-footer h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.standards-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.standard-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
}
.standard-item svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ============================================
   CONTACT
   ============================================ */
.contact { background: var(--black); color: var(--white); }
.contact .section-title { color: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 800px;
  margin: 0 auto;
}
.contact-info h3,
.contact-quick-links h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.contact-info p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
  line-height: 1.7;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}
.contact-detail svg {
  width: 24px;
  height: 24px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-detail div {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  line-height: 1.6;
}
.contact-detail a { color: var(--gold); }
.contact-detail a:hover { color: var(--gold-light); }
.contact-quick-links ul { list-style: none; }
.contact-quick-links li { margin-bottom: 12px; }
.contact-quick-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.contact-quick-links a::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
.contact-quick-links a:hover { color: var(--gold); padding-left: 4px; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  padding: 40px 0;
}
.footer-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}
.footer-logo-img { height: 60px; width: auto; opacity: 0.8; }
.footer-text p { color: rgba(255,255,255,0.5); font-size: 0.85rem; }
.footer-tagline { color: var(--gold) !important; font-size: 0.9rem !important; letter-spacing: 1px; }
.footer-est { margin-top: 4px; }
.footer-admin { margin-top: 12px; }
.footer-admin a { color: rgba(255,255,255,0.25); font-size: 0.75rem; text-decoration: none; }
.footer-admin a:hover { color: var(--gold); }

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: var(--black);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-md);
  z-index: 999;
}
.back-to-top svg { width: 24px; height: 24px; }
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-3px); background: var(--gold-light); }

/* ============================================
   PHOTO BANNERS & GALLERY
   ============================================ */
.photo-banner {
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
}
.photo-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.photo-gallery {
  padding: 0;
  background: var(--black);
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4px;
  height: 320px;
}
.gallery-item {
  overflow: hidden;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 90px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    padding: 24px;
    gap: 0;
    transform: translateY(-120%);
    transition: transform var(--transition);
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  }
  .nav-links.active { transform: translateY(0); }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 1rem;
  }
  .form-row { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .org-card { max-width: 100%; min-width: unset; }
  .org-level { flex-direction: column; align-items: center; }
  .org-card-executive { min-width: unset; width: 100%; max-width: 400px; }
  .standards-list { flex-direction: column; align-items: flex-start; padding: 0 20px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; height: 280px; }
  .photo-banner { height: 220px; }
}

@media (max-width: 480px) {
  .hero-content { padding: 100px 16px 60px; }
  .hero-logo { width: 225px; }
  .section { padding: 60px 0; }
  .section-header { margin-bottom: 40px; }
  .coaching-standards-footer { padding: 24px; }
  .gallery-grid { grid-template-columns: 1fr; height: auto; }
  .gallery-item { height: 220px; }
  .photo-banner { height: 180px; }
}
