/* T.R.U.S.T. Academy Basketball Landing Page Styles */

/* Google Fonts Import */
@import url("https://fonts.googleapis.com/css2?family=Anton&family=Inter:wght@400;500;600;700&display=swap");

/* CSS Variables */
:root {
  --dark-blue: #1a2332;
  --silver: #c0c5ce;
  --light-silver: #e5e7eb;
  --accent: #4a90e2;
  --white: #ffffff;
  --light-bg: #f8f9fa;
  --dark: #0a0f1a;
  --text-dark: #1f2937;
}

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

body {
  font-family: "Inter", sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  margin: 0 !important;
  padding: 0 !important;
}

/* Override WordPress theme container and wrapper styles for full-width header */
body > div,
body > header,
#page,
#content,
.site,
.site-header-wrapper,
.elementor-section-wrap {
  margin: 0 !important;
  padding: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
}

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

.section {
  padding: 80px 0;
}

.section-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--silver);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.section-title {
  font-family: "Anton", sans-serif;
  font-size: 3rem;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: var(--dark);
  position: relative;
  padding-left: 20px;
}

.section-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: var(--accent);
}

.text-accent {
  color: var(--accent);
}

.section-subtitle {
  font-size: 1.125rem;
  color: #6b7280;
  max-width: 700px;
  margin-bottom: 2rem;
}

/* Header - Full Width */
/* Added stronger selectors and !important declarations to force full-width */
.site-header,
header.site-header,
.header,
header {
  background: var(--dark-blue) !important;
  padding: 20px 0 !important;
  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
  width: 100vw !important;
  max-width: 100vw !important;
  left: 0 !important;
  right: 0 !important;
  margin: 0 !important;
  margin-left: calc(-50vw + 50%) !important;
  margin-right: calc(-50vw + 50%) !important;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto !important;
  padding: 0 40px;
  width: 100%;
}

.header-logo .logo {
  height: 120px;
  width: auto;
  display: block;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header-nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.header-nav a:hover {
  color: var(--accent);
}

.header-nav .nav-cta {
  background: var(--accent);
  padding: 12px 24px;
  border-radius: 0;
}

.header-nav .nav-cta:hover {
  background: #3a7bc8;
  color: var(--white);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--white);
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 0;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-primary:hover {
  background: #3a7bc8;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--dark);
}

.btn-secondary:hover {
  background: var(--dark);
  color: var(--white);
}

.btn-large {
  padding: 20px 48px;
  font-size: 1rem;
}

/* Hero Slider */
.hero-slider {
  position: relative;
  height: 600px;
  overflow: hidden;
  background: var(--dark-blue);
}

.slider-container {
  position: relative;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  pointer-events: none;
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
}

.slide-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  gap: 60px;
}

.slide-text {
  flex: 1;
  max-width: 600px;
  color: var(--white);
}

.slide-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--light-silver);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.slide-title {
  font-family: "Anton", sans-serif;
  font-size: 3.5rem;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.slide-description {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  color: var(--light-silver);
}

.slide-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.slide-actions .btn-secondary {
  border-color: var(--white);
  color: var(--white);
}

.slide-actions .btn-secondary:hover {
  background: var(--white);
  color: var(--dark-blue);
}

.slide-image {
  flex: 1;
  height: 500px;
  position: relative;
}

.slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

/* Slider Navigation */
.slider-dots {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--accent);
  transform: scale(1.2);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: var(--white);
  border: none;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.slider-arrow:hover {
  background: var(--accent);
}

.slider-arrow.prev {
  left: 20px;
}

.slider-arrow.next {
  right: 20px;
}

/* Hero Section */
.hero {
  background: var(--light-bg);
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-text {
  flex: 1;
}

.hero-title {
  font-family: "Anton", sans-serif;
  font-size: 3.5rem;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  padding-left: 20px;
  position: relative;
}

.hero-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: var(--accent);
}

.hero-subtitle {
  font-size: 1.125rem;
  color: #6b7280;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-features {
  list-style: none;
  margin-bottom: 2.5rem;
}

.hero-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 500;
}

.hero-features svg {
  color: var(--accent);
  flex-shrink: 0;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image {
  flex: 1;
  max-width: 500px;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Experience Section */
.experience {
  background: var(--white);
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.experience-card {
  background: var(--white);
  border: 2px solid var(--light-silver);
  padding: 40px 30px;
  transition: all 0.3s ease;
}

.experience-card:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
}

.card-icon {
  margin-bottom: 1.5rem;
}

.card-icon svg {
  stroke: var(--accent);
}

.experience-card h3 {
  font-family: "Anton", sans-serif;
  font-size: 1.25rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--dark);
}

.experience-card p {
  color: #6b7280;
  line-height: 1.7;
}

/* T.R.U.S.T. Values Section */
.trust-values {
  background: var(--dark-blue);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.trust-values::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-image: url("/placeholder.svg?height=800&width=800");
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  pointer-events: none;
}

.trust-values .container {
  position: relative;
  z-index: 1;
}

.trust-values .section-label {
  color: var(--light-silver);
}

.trust-values .section-title {
  color: var(--white);
  max-width: 600px;
}

.trust-values .section-title::before {
  background: var(--accent);
}

.trust-values .section-subtitle {
  color: var(--light-silver);
}

/* Changed grid to display all 5 TRUST values in one row */
.values-grid {
  display: flex;
  gap: 40px;
  margin-top: 50px;
  flex-wrap: nowrap;
}

.value-card {
  text-align: center;
  flex: 1;
  min-width: 180px;
}

.value-badge {
  width: 80px;
  height: 80px;
  background: transparent;
  border: 3px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
}

.value-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.value-card p {
  color: var(--light-silver);
  line-height: 1.6;
}

/* Academics Section */
.academics {
  background: var(--light-bg);
}

.academics-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.academics-text {
  flex: 1;
}

.academics-list {
  list-style: none;
}

.academics-list li {
  display: flex;
  gap: 16px;
  margin-bottom: 2rem;
}

.academics-list svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 4px;
}

.academics-list strong {
  display: block;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.academics-list p {
  color: #6b7280;
  line-height: 1.7;
}

.academics-image {
  flex: 1;
  max-width: 500px;
}

.academics-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Coaching Section */
.coaching {
  background: var(--white);
}

.coach-featured {
  display: flex;
  gap: 40px;
  margin-top: 50px;
  padding: 40px;
  background: var(--light-bg);
  border-left: 5px solid var(--accent);
}

.coach-image {
  width: 300px;
  flex-shrink: 0;
}

.coach-image img {
  width: 100%;
  height: auto;
  display: block;
}

.coach-info h3 {
  font-family: "Anton", sans-serif;
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.coach-title {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.coach-bio {
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.coaching-staff {
  margin-top: 60px;
}

.staff-title {
  font-family: "Anton", sans-serif;
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 2rem;
  color: var(--dark);
}

.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.staff-card {
  background: var(--white);
  border: 2px solid var(--light-silver);
  padding: 0;
  transition: all 0.3s ease;
}

.staff-card:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
}

.staff-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.staff-card h4 {
  font-family: "Anton", sans-serif;
  font-size: 1.25rem;
  text-transform: uppercase;
  margin: 1.5rem 1.5rem 0.5rem;
  color: var(--dark);
}

.staff-role {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  margin: 0 1.5rem 1rem;
}

.staff-card p:last-child {
  color: #6b7280;
  line-height: 1.7;
  margin: 0 1.5rem 1.5rem;
}

/* Target Audience Section */
.target-audience {
  background: var(--light-bg);
}

.target-content {
  max-width: 900px;
  margin: 0 auto;
}

.target-checklist {
  list-style: none;
  margin-top: 40px;
}

.target-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  font-weight: 500;
}

.target-checklist svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

/* FAQ Section */
.faq {
  background: var(--white);
}

.faq-container {
  max-width: 900px;
  margin: 50px auto 0;
}

.faq-item {
  margin-bottom: 1rem;
  border: 2px solid var(--light-silver);
  background: var(--white);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  background: transparent;
  border: none;
  font-size: 1.125rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  color: var(--dark);
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--accent);
}

.faq-question svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 24px 24px;
  color: #6b7280;
  line-height: 1.8;
}

/* Application Section */
.application {
  background: var(--light-bg);
}

.application-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.application-form-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  padding: 50px;
  border: 2px solid var(--light-silver);
}

.form-section {
  margin-bottom: 3rem;
}

.form-section-title {
  font-family: "Anton", sans-serif;
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: var(--dark);
  padding-left: 15px;
  border-left: 4px solid var(--accent);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--light-silver);
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-group textarea {
  resize: vertical;
}

/* Final CTA */
.final-cta {
  background: var(--dark-blue);
  color: var(--white);
  text-align: center;
  padding: 80px 20px;
}

.final-cta h2 {
  font-family: "Anton", sans-serif;
  font-size: 3rem;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

/* Footer */
.footer {
  background: var(--dark);
  color: var(--light-silver);
  padding: 80px 20px 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
}

.footer-column h4 {
  font-family: "Anton", sans-serif;
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.footer-logo-col {
  max-width: 300px;
}

.footer-logo-img {
  height: 80px;
  width: auto;
  margin-bottom: 1.5rem;
}

.footer-tagline {
  color: var(--light-silver);
  line-height: 1.7;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a,
.footer-column p a {
  color: var(--light-silver);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-column p a:hover {
  color: var(--accent);
}

.footer-column p {
  margin-bottom: 0.75rem;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  color: var(--light-silver);
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--silver);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .section-title {
    font-size: 2.5rem;
  }

  .hero-title,
  .slide-title {
    font-size: 2.5rem;
  }

  .values-grid {
    flex-wrap: wrap;
  }

  .value-card {
    min-width: 150px;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }

  .footer-logo-col {
    max-width: 100%;
  }
}

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

  .section-title {
    font-size: 2rem;
  }

  .hero-title,
  .slide-title {
    font-size: 2rem;
  }

  .hero-content,
  .slide-content,
  .academics-content {
    flex-direction: column;
  }

  .slide-image {
    height: 300px;
  }

  .hero-image,
  .academics-image {
    max-width: 100%;
  }

  .coach-featured {
    flex-direction: column;
  }

  .coach-image {
    width: 100%;
  }

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

  .application-form-wrapper {
    padding: 30px;
  }

  .slider-dots {
    right: 20px;
  }

  .final-cta h2 {
    font-size: 2rem;
  }

  .values-grid {
    flex-direction: column;
  }

  .value-card {
    min-width: 100%;
  }

  /* Mobile header navigation */
  .mobile-menu-toggle {
    display: flex;
  }

  .header-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark-blue);
    flex-direction: column;
    padding: 20px;
    gap: 20px;
    display: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

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

  .header-nav .nav-cta {
    display: block;
    text-align: center;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.75rem;
  }

  .hero-title,
  .slide-title {
    font-size: 1.75rem;
  }

  .btn {
    padding: 14px 24px;
    font-size: 0.8rem;
  }

  .btn-large {
    padding: 16px 32px;
  }

  .application-form-wrapper {
    padding: 20px;
  }
}
