/* Basketball Academy CSS - Custom Styles */

/* Color Variables */
:root {
  --hoops-orange: #FF6B00;
  --hoops-charcoal: #1A1A1D;
  --hoops-gold: #FFD700;
  --hoops-white: #FFFFFF;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}


body {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--hoops-charcoal);
  background-color: var(--hoops-white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--hoops-charcoal);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

/* Utility Classes */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--hoops-charcoal);
  margin-bottom: 1.5rem;
  text-align: center;
}

.section-description {
  font-size: 1.125rem;
  color: var(--gray-600);
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
  line-height: 1.6;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.text-white {
  color: var(--hoops-white);
}

.text-white-80 {
  color: rgba(255, 255, 255, 0.8);
}

.desktop-only {
  display: inline-flex;
}

/* Animations */
@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    transform: translateY(0);
  }
  40%, 43% {
    transform: translateY(-10px);
  }
  70% {
    transform: translateY(-5px);
  }
  90% {
    transform: translateY(-2px);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* Header Styles */
.header {
  background-color: var(--hoops-white);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  background-color: var(--hoops-orange);
  padding: 0.5rem;
  border-radius: 50%;
  color: var(--hoops-white);
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--hoops-charcoal);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--hoops-charcoal);
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--hoops-orange);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.join-btn {
  background-color: var(--hoops-orange);
  color: var(--hoops-white);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.join-btn:hover {
  background-color: var(--hoops-gold);
  color: var(--hoops-charcoal);
  transform: translateY(-2px);
}

.mobile-menu-btn {
  background: none;
  border: none;
  color: var(--hoops-charcoal);
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.3s ease;
}

.mobile-menu-btn:hover {
  color: var(--hoops-orange);
}

.nav-mobile {
  display: none;
  padding: 1rem 0;
  border-top: 1px solid var(--gray-200);
}

.nav-mobile.active {
  display: block;
}

.mobile-nav-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav-link {
  color: var(--hoops-charcoal);
  text-decoration: none;
  padding: 0.5rem 0.5rem;
  transition: color 0.3s ease;
}

.mobile-nav-link:hover {
  color: var(--hoops-orange);
}

.mobile-join-btn {
  margin: 1rem 0.5rem 0;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, 
    rgba(26, 26, 29, 0.8), 
    rgba(26, 26, 29, 0.6), 
    rgba(26, 26, 29, 0.4)
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1rem;
  max-width: 64rem;
  margin: 0 auto;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--hoops-white);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  background-color: var(--hoops-orange);
  color: var(--hoops-white);
  border: none;
  padding: 1.5rem 2rem;
  border-radius: 9999px;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.hero-cta:hover {
  background-color: var(--hoops-gold);
  color: var(--hoops-charcoal);
  transform: scale(1.05);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-indicator-inner {
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 9999px;
  padding: 0.25rem;
}

.scroll-indicator-dot {
  width: 0.25rem;
  height: 0.75rem;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 9999px;
  margin: 0 auto;
  animation: pulse 2s infinite;
}

/* About Section */
.about {
  padding: 4rem 0 6rem;
  background-color: var(--hoops-white);
}

.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.about-image-container {
  order: 2;
}

.about-image-wrapper {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.about-image {
  width: 100%;
  height: 25rem;
  object-fit: cover;
}

.about-decor-1 {
  position: absolute;
  top: -1rem;
  right: -1rem;
  width: 5rem;
  height: 5rem;
  background-color: var(--hoops-orange);
  border-radius: 50%;
  opacity: 0.8;
}

.about-decor-2 {
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  width: 3rem;
  height: 3rem;
  background-color: var(--hoops-gold);
  border-radius: 50%;
  opacity: 0.6;
}

.about-content {
  order: 1;
  text-align: center;
}

.about-description {
  font-size: 1.125rem;
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.about-values {
  margin-top: 2rem;
}

.value-item {
  border-left: 4px solid var(--hoops-orange);
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.value-item.value-gold {
  border-left-color: var(--hoops-gold);
}

.value-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--hoops-charcoal);
  margin-bottom: 0.5rem;
}

.value-description {
  color: var(--gray-600);
}

/* Programs Section */
.programs {
  padding: 4rem 0 6rem;
  background-color: var(--gray-50);
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  align-items: stretch;
  margin-bottom: 4rem;
}

.program-btn {
  margin-top: auto;
}


.program-card {
  background-color: var(--hoops-white);
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left; 
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: none;
  height: 100%; 
}


.program-card:hover {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  transform: translateY(-8px);
}

.program-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--hoops-orange);
  color: var(--hoops-white);
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
}

.program-card:hover .program-icon {
  background-color: var(--hoops-gold);
  color: var(--hoops-charcoal);
}

.program-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--hoops-charcoal);
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.program-card:hover .program-title {
  color: var(--hoops-orange);
}

.program-description {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.program-features {
  list-style: none;
  margin-bottom: 1.5rem;
  padding: 0;
  text-align: justify;
}

.program-features li {
  display: flex;
  align-items: flex-start;       
  justify-content: flex-start;   
  font-size: 0.95rem;
  color: var(--gray-600);
  margin-bottom: 0.5rem;
  line-height: 1.6;
  text-align: justify;
  padding-left: 1rem;           
}

.program-features li::before {
  content: '';
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--hoops-orange);
  border-radius: 50%;
  margin-right: 0.75rem;
  margin-top: 0.45rem;
  flex-shrink: 0;              
}


.program-btn {
  border: 2px solid var(--hoops-orange);
  background-color: transparent;
  color: var(--hoops-orange);
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.program-btn:hover {
  background-color: var(--hoops-orange);
  color: var(--hoops-white);
}

.programs-cta {
  background-color: var(--hoops-charcoal);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
}

.cta-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--hoops-white);
  margin-bottom: 1rem;
}

.cta-description {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-btn {
  background-color: var(--hoops-orange);
  color: var(--hoops-white);
  border: none;
  padding: 1.5rem 2rem;
  border-radius: 9999px;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background-color: var(--hoops-gold);
  color: var(--hoops-charcoal);
}

/* Coaches Section */
.coaches {
  padding: 4rem 0 6rem;
  background-color: var(--hoops-white);
}

.coaches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  align-items: stretch; 
  justify-items: center;
  margin-bottom: 4rem;
}

.coach-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: var(--hoops-white);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}


.coach-card {
  background-color: var(--hoops-white);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.coach-card:hover {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  transform: translateY(-8px);
}

.coach-image-wrapper {
  position: relative;
  overflow: hidden;
}

.coach-image {
  width: 100%;
  height: 20rem;                 
  object-fit: cover;             
  object-position: center top;  
  border-radius: 0.5rem;         
  transition: transform 0.3s ease;
}


.coach-card:hover .coach-image {
  transform: scale(1.05);
}

.coach-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, 
    rgba(26, 26, 29, 0.6), 
    transparent, 
    transparent
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.coach-card:hover .coach-overlay {
  opacity: 1;
}

.coach-content {
  padding: 1.5rem;
}

.coach-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--hoops-charcoal);
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.coach-card:hover .coach-name {
  color: var(--hoops-orange);
}

.coach-role {
  color: var(--hoops-orange);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.coach-expertise {
  color: var(--gray-600);
  font-size: 0.875rem;
  line-height: 1.6;
}

.coaches-stats {
  background-color: var(--hoops-orange);
  border-radius: 1rem;
  padding: 2rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  color: var(--hoops-white);
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: rgba(255, 255, 255, 0.8);
}

/* Gallery Section */
.gallery {
  padding: 4rem 0 6rem;
  background-color: var(--gray-50);
}

.gallery-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-item:hover {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  transform: translateY(-8px);
}

.gallery-image {
  width: 100%;
  height: 16rem;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, 
    rgba(26, 26, 29, 0.8), 
    transparent, 
    transparent
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 1rem;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-content {
  color: var(--hoops-white);
}

.gallery-title {
  font-size: 1.125rem;
  font-weight: 600;
}

.gallery-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background-color: var(--hoops-orange);
  border-radius: 50%;
  color: var(--hoops-white);
}

.gallery-cta {
  text-align: center;
}

.view-more-btn {
  background-color: var(--hoops-orange);
  color: var(--hoops-white);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.view-more-btn:hover {
  background-color: var(--hoops-gold);
  color: var(--hoops-charcoal);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 100;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 64rem;
  max-height: 100%;
}

.lightbox-close {
  position: absolute;
  top: -3rem;
  right: 0;
  background: none;
  border: none;
  color: var(--hoops-white);
  cursor: pointer;
  transition: color 0.3s ease;
}

.lightbox-close:hover {
  color: var(--hoops-orange);
}

.lightbox-image {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 0.5rem;
}

/* Testimonials Section */
.testimonials {
  padding: 4rem 0 6rem;
  background-color: var(--hoops-charcoal);
}

.testimonials-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 4rem;
}

.testimonial-card {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-8px);
}

.testimonial-stars {
  display: flex;
  margin-bottom: 1rem;
}

.star {
  color: var(--hoops-gold);
  margin-right: 0.25rem;
}

.testimonial-quote {
  color: var(--hoops-white);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-image {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1rem;
}

.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-name {
  font-weight: 600;
  color: var(--hoops-white);
}

.author-role {
  color: var(--hoops-gold);
  font-size: 0.875rem;
}

.testimonials-cta {
  text-align: center;
}

.rating-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.rating-stars {
  display: flex;
}

.rating-text {
  font-size: 1.25rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.rating-subtitle {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2rem;
}

.testimonials-btn {
  background-color: var(--hoops-orange);
  color: var(--hoops-white);
  border: none;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonials-btn:hover {
  background-color: var(--hoops-gold);
  color: var(--hoops-charcoal);
}

/* Contact Section */
.contact {
  padding: 4rem 0 6rem;
  background-color: var(--hoops-white);
}

.contact-badge {
  background-color: var(--hoops-orange);
  color: var(--hoops-white);
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  display: inline-block;
  font-weight: 600;
  font-size: 1.125rem;
  margin-top: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-badge-link {
  text-decoration: none;
}

.contact-badge {
  background-color: var(--hoops-orange);
  color: var(--hoops-white);
  display: inline-block;
  padding: 1rem 2rem;
  font-weight: 700;
  border-radius: 2rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.contact-badge:hover {
  background-color: var(--hoops-gold);
  color: var(--hoops-charcoal);
  transform: translateY(-3px);
}


.contact-grid {
  display: grid;
  gap: 4rem;
  margin-top: 4rem;
}

.contact-form-card {
  background-color: var(--hoops-white);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-radius: 1rem;
  padding: 2rem;
}

.form-title {
  font-size: 1.5rem;
  color: var(--hoops-charcoal);
  margin-bottom: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid var(--gray-300);
  border-radius: 0.5rem;
  padding: 0.75rem;
  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(--hoops-orange);
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

.form-submit-btn {
  background-color: var(--hoops-orange);
  color: var(--hoops-white);
  border: none;
  padding: 1.5rem;
  border-radius: 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-submit-btn:hover {
  background-color: var(--hoops-gold);
  color: var(--hoops-charcoal);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  background-color: var(--hoops-orange);
  color: var(--hoops-white);
  padding: 0.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-content h3 {
  font-weight: 600;
  color: var(--hoops-charcoal);
  margin-bottom: 0.25rem;
}

.contact-content p {
  color: var(--gray-600);
}

.map-placeholder {
  background-color: var(--gray-200);
  border-radius: 0.5rem;
  height: 16rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.map-content {
  text-align: center;
  color: var(--hoops-orange);
}

.map-title {
  font-weight: 500;
  color: var(--gray-600);
  margin-top: 1rem;
}

.map-subtitle {
  font-size: 0.875rem;
  color: var(--gray-500);
}

.quick-contact-card {
  background-color: var(--hoops-charcoal);
  color: var(--hoops-white);
  padding: 1.5rem;
  border-radius: 0.5rem;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.quick-contact-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.quick-contact-description {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

.quick-contact-btn {
  background-color: var(--hoops-orange);
  color: var(--hoops-white);
  border: none;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.quick-contact-btn:hover {
  background-color: var(--hoops-gold);
  color: var(--hoops-charcoal);
}

.join-link {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  cursor: pointer;
}

.join-link:hover {
  color: var(--hoops-orange);
  transform: scale(1.03);
}



/* Footer */
.footer {
  background-color: var(--hoops-charcoal);
  color: var(--hoops-white);
}

.footer-main {
  padding: 3rem 0;
  display: grid;
  gap: 2rem;
}

.footer-brand {
  grid-column: span 2;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.footer-logo-icon {
  background-color: var(--hoops-orange);
  padding: 0.5rem;
  border-radius: 50%;
  color: var(--hoops-white);
}

.footer-logo-text {
  font-size: 1.25rem;
  font-weight: 700;
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  max-width: 28rem;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--hoops-white);
  padding: 0.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background-color: var(--hoops-orange);
  transform: scale(1.1);
}

.footer-section-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--hoops-gold);
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--hoops-orange);
}

.newsletter-section {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.newsletter-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--hoops-gold);
  margin-bottom: 0.5rem;
}

.newsletter-description {
  color: rgba(255, 255, 255, 0.8);
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 28rem;
}

.newsletter-form input {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
  padding: 0.75rem;
  color: var(--hoops-white);
  transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--hoops-orange);
  background-color: rgba(255, 255, 255, 0.2);
}

.newsletter-form button {
  background-color: var(--hoops-orange);
  color: var(--hoops-white);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.newsletter-form button:hover {
  background-color: var(--hoops-gold);
  color: var(--hoops-charcoal);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

.copyright {
  color: rgba(255, 255, 255, 0.6);
}

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.875rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--hoops-orange);
}

/* Responsive Design */

/* Tablet Styles */
@media (min-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }

  .nav-desktop {
    display: flex;
  }

  .mobile-menu-btn {
    display: none;
  }

  .hero-title {
    font-size: 3.5rem;
  }

  .hero-subtitle {
    font-size: 1.5rem;
  }

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

  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .about-content {
    text-align: left;
  }

  .about-image-container {
    order: 1;
  }

  .about-content {
    order: 2;
  }

  .about-image {
    height: 31.25rem;
  }

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

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

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

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

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

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

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

  .footer-main {
    grid-template-columns: repeat(4, 1fr);
  }

  .newsletter-section {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .newsletter-form {
    flex-direction: row;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .footer-legal {
    flex-direction: row;
    gap: 2rem;
  }

  .cta-title {
    font-size: 2.25rem;
  }
}

/* Desktop Styles */
@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }

  .hero-title {
    font-size: 4rem;
  }

  .hero-subtitle {
    font-size: 1.75rem;
  }

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

  .about {
    padding: 6rem 0 8rem;
  }

  .programs {
    padding: 6rem 0 8rem;
  }

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

  .coaches {
    padding: 6rem 0 8rem;
  }

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

  .gallery {
    padding: 6rem 0 8rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonials {
    padding: 6rem 0 8rem;
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact {
    padding: 6rem 0 8rem;
  }

  .cta-title {
    font-size: 3rem;
  }

  .programs-cta {
    padding: 3rem;
  }
}

/* Large Desktop Styles */
@media (min-width: 1440px) {
  .hero-title {
    font-size: 4.5rem;
  }

  .hero-subtitle {
    font-size: 2rem;
  }

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

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus States for Accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
  outline: 2px solid var(--hoops-orange);
  outline-offset: 2px;
}

/* Loading States */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* Form Validation Styles */
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: #dc2626;
}

.form-group.error label {
  color: #dc2626;
}

.error-message {
  color: #dc2626;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.success-message {
  color: #16a34a;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}