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

html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #ffffff;
}

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

/* Header Styles */
.header {
  background-color: #000;
  color: #fff;
  padding: 1rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Page Header Styles for Individual Pages */
.page-header {
  background: linear-gradient(135deg, #000 0%, #333 100%);
  color: #fff;
  padding: 8rem 0 4rem 0;
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.page-header p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
}

/* Overview Section Styles for Home Page */
.overview-section {
  padding: 4rem 0;
  background-color: #f8f9fa;
}

.overview-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.overview-section > .container > p {
  text-align: center;
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 3rem auto;
  color: #666;
  line-height: 1.7;
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.overview-card {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.overview-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.overview-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.overview-card h3 a {
  color: #dc143c;
  text-decoration: none;
  transition: color 0.3s ease;
}

.overview-card h3 a:hover {
  color: #b8102e;
}

.overview-card p {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.card-link {
  display: inline-block;
  background-color: #dc143c;
  color: #fff;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.card-link:hover {
  background-color: #b8102e;
}

/* Programs Showcase Section */
.programs-showcase-section {
  padding: 4rem 0;
  background-color: #fff;
}

.programs-showcase-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.programs-showcase-section > .container > p {
  text-align: center;
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 3rem auto;
  color: #666;
  line-height: 1.7;
}

/* Slideshow Section */
.slideshow-section {
  padding: 4rem 0;
  background-color: #fff;
}

.slideshow-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #333;
}

.slideshow-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.slideshow-wrapper {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  display: flex;
  flex-direction: column;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 350px;
  object-fit: contain;
  object-position: center;
  background-color: #f8f9fa;
}

.slide-caption {
  background: linear-gradient(135deg, #dc143c, #b8102e);
  color: white;
  padding: 1.5rem;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.slide-caption h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.slide-caption p {
  font-size: 1rem;
  margin: 0;
  opacity: 0.9;
}

/* Navigation Arrows */
.slideshow-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(220, 20, 60, 0.8);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slideshow-nav:hover {
  background: rgba(220, 20, 60, 1);
  transform: translateY(-50%) scale(1.1);
}

.slideshow-nav.prev {
  left: 20px;
}

.slideshow-nav.next {
  right: 20px;
}

/* Slide Indicators */
.slideshow-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid white;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active,
.indicator:hover {
  background: white;
}

/* Responsive Design */
@media (max-width: 768px) {
  .slideshow-container {
    margin: 0 1rem;
  }
  
  .slideshow-wrapper {
    height: 400px;
  }
  
  .slide img {
    height: 250px;
    object-fit: contain;
  }
  
  .slide-caption {
    padding: 1rem;
  }
  
  .slide-caption h3 {
    font-size: 1.3rem;
  }
  
  .slide-caption p {
    font-size: 0.9rem;
  }
  
  .slideshow-nav {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .slideshow-nav.prev {
    left: 10px;
  }
  
  .slideshow-nav.next {
    right: 10px;
  }
}

@media (max-width: 480px) {
  .slideshow-section {
    padding: 2rem 0;
  }
  
  .slideshow-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  .slideshow-wrapper {
    height: 350px;
  }
  
  .slide img {
    height: 200px;
    object-fit: contain;
  }
  
  .slide-caption {
    padding: 0.75rem;
  }
  
  .slide-caption h3 {
    font-size: 1.1rem;
  }
  
  .slide-caption p {
    font-size: 0.8rem;
  }
}

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

.logo-icon {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo-icon:hover {
  transform: scale(1.05);
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-list a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-list a:hover {
  color: #dc143c;
}

.nav-list a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 50%;
  background-color: #dc143c;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-list a:hover::after {
  width: 100%;
}

/* Dropdown Menu Styles */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  color: #fff;
  font-family: inherit;
  font-size: inherit;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}

.dropdown-toggle:hover,
.dropdown-toggle:focus {
  color: #dc143c;
  outline: none;
}

.dropdown-toggle::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 50%;
  background-color: #dc143c;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.dropdown-toggle:hover::after,
.dropdown-toggle:focus::after {
  width: 100%;
}

.dropdown-toggle i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i,
.dropdown:focus-within .dropdown-toggle i {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #000;
  min-width: 200px;
  list-style: none;
  padding: 0;
  margin: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1001;
  border: 1px solid #333;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: #fff;
  text-decoration: none;
  font-weight: 400;
  transition: all 0.3s ease;
  border-bottom: none;
}

.dropdown-menu a:hover {
  background-color: #dc143c;
  color: #fff;
}

.dropdown-menu a::after {
  display: none;
}

/* Contact CTA Button */
.contact-cta {
  background-color: #dc143c;
  padding: 0.75rem 1.5rem;
  border-radius: 0px;
  transition: all 0.3s ease;
}

.contact-cta:hover {
  background-color: #b91c3c;
  transform: translateY(-2px);
}

.contact-cta::after {
  display: none;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 3px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: #fff;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  height: 100vh;
  background-image: linear-gradient(rgba(220, 20, 60, 0.3), rgba(220, 20, 60, 0.3)), url('photos/header/rvwrestling_header.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.4);
  padding: 4rem 2rem;
  border-radius: 10px;
  backdrop-filter: blur(2px);
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.cta-button {
  display: inline-block;
  background-color: #dc143c;
  color: #fff;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
}

.cta-button:hover {
  background-color: #b91c3c;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(220, 20, 60, 0.4);
}

/* Program Sections */
.program-section {
  padding: 5rem 0;
  background-color: #fff;
}

.program-section.alt-bg {
  background-color: #f8f9fa;
}

.program-section h2 {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 2rem;
  color: #000;
  position: relative;
}

.program-section h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #dc143c;
  margin: 1rem auto;
}

.program-section p {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #555;
}

.program-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.detail-card {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
  border-top: 4px solid #dc143c;
}

.detail-card:hover {
  transform: translateY(-5px);
}

.detail-card h3 {
  color: #dc143c;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.detail-card p {
  color: #666;
  font-size: 1.1rem;
  margin: 0;
}

/* Coaches Section */
.coaches-section {
  padding: 5rem 0;
  background-color: #000;
  color: #fff;
}

.coaches-section h2 {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 3rem;
  color: #fff;
  position: relative;
}

.coaches-section h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #dc143c;
  margin: 1rem auto;
}

.coaches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.coach-card {
  background: #fff;
  color: #333;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s ease;
  box-shadow: 0 10px 30px rgba(220, 20, 60, 0.1);
}

.coach-card:hover {
  transform: translateY(-10px);
}

.coach-image {
  margin-bottom: 1.5rem;
}

.coach-image img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 4px solid #dc143c;
  object-fit: cover;
}

.coach-card h3 {
  color: #000;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.coach-card h4 {
  color: #dc143c;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.coach-card p {
  color: #666;
  line-height: 1.6;
}

/* Schedule Section */
.schedule-section {
  padding: 5rem 0;
  background-color: #000000;
}

.schedule-section h2 {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 3rem;
  color: #ffffff;
  position: relative;
}

.schedule-section h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #dc143c;
  margin: 1rem auto;
}

.schedule-table-container {
  overflow-x: auto;
  margin-top: 2rem;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.schedule-table th {
  background-color: #dc143c;
  color: #fff;
  padding: 1.5rem;
  text-align: left;
  font-weight: bold;
  font-size: 1.1rem;
}

.schedule-table td {
  padding: 1.5rem;
  border-bottom: 1px solid #eee;
  color: #333;
}

.schedule-table tr:hover {
  background-color: #f8f9fa;
}

.schedule-table tr:last-child td {
  border-bottom: none;
}

/* News & Events Section */
.news-events-section {
  padding: 5rem 0;
  background-color: #fff;
}

.news-events-section h2 {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 3rem;
  color: #000;
  position: relative;
}

.news-events-section h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #dc143c;
  margin: 1rem auto;
}

.news-events-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.news-column h3,
.events-column h3 {
  color: #dc143c;
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.news-item {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  border-left: 4px solid #dc143c;
}

.news-item h4 {
  color: #000;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.news-item p {
  color: #666;
  margin-bottom: 0.5rem;
}

.news-item .date {
  color: #dc143c;
  font-weight: bold;
  font-size: 0.9rem;
}

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

.events-list li {
  background: #f8f9fa;
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  border-left: 4px solid #dc143c;
}

.events-list strong {
  color: #dc143c;
}

/* Tournament Schedule Section */
.tournament-schedule-section {
  padding: 5rem 0;
  background-color: #fff;
}

.tournament-schedule-section h2 {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 1rem;
  color: #000;
  position: relative;
}

.tournament-schedule-section h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #dc143c;
  margin: 1rem auto;
}

.tournament-schedule-section > .container > p {
  text-align: center;
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 3rem auto;
  color: #666;
  line-height: 1.7;
}

/* Documents Section */
.documents-section {
  padding: 5rem 0;
  background-color: #f8f9fa;
  scroll-margin-top: 80px;
}

.documents-section h2 {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 2rem;
  color: #000;
  position: relative;
}

.documents-section h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #dc143c;
  margin: 1rem auto;
}

.documents-section p {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #555;
}

.documents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.document-category {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.document-category:hover {
  transform: translateY(-5px);
}

.document-category-header {
  background: #dc143c;
  color: #fff;
  padding: 1.5rem 2rem;
  text-align: center;
}

.document-category-header h3 {
  font-size: 1.5rem;
  margin: 0;
}

.document-list {
  padding: 2rem;
}

.document-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid #eee;
  transition: background-color 0.3s ease;
}

.document-item:last-child {
  border-bottom: none;
}

.document-item:hover {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding-left: 1rem;
  padding-right: 1rem;
}

.document-item h4 {
  color: #333;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.document-date {
  color: #666;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 0.8rem;
}

.document-link {
  color: #dc143c;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.document-link:hover {
  color: #b91c3c;
  text-decoration: underline;
}

/* Contact Section */
.contact-section {
  padding: 5rem 0;
  background-color: #000;
  color: #fff;
}

.contact-section h2 {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 3rem;
  color: #fff;
  position: relative;
}

.contact-section h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #dc143c;
  margin: 1rem auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.contact-info h3,
.contact-form h3 {
  color: #dc143c;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.contact-item {
  margin-bottom: 2rem;
}

.contact-item strong {
  color: #dc143c;
  display: block;
  margin-bottom: 0.5rem;
}

.contact-item p {
  color: #ccc;
  margin: 0;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 1rem;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #dc143c;
}

.submit-button {
  background-color: #dc143c;
  color: #fff;
  padding: 1rem 2rem;
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-button:hover {
  background-color: #b91c3c;
}

/* Registration Section */
.registration-section {
  padding: 4rem 0;
  background-color: #1a1a1a;
}

.registration-section h2 {
  text-align: center;
  color: #dc143c;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.registration-section > .container > p {
  text-align: center;
  color: #ccc;
  max-width: 800px;
  margin: 0 auto 3rem auto;
}

.registration-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.registration-card {
  background-color: #252525;
  padding: 2.5rem;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.registration-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(220, 20, 60, 0.3);
}

.registration-icon {
  font-size: 3rem;
  color: #dc143c;
  margin-bottom: 1.5rem;
}

.registration-card h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.registration-card p {
  color: #ccc;
  margin-bottom: 1.5rem;
}

/* Photo Gallery Section */
.photo-gallery-section {
  padding: 4rem 0;
  background-color: #0a0a0a;
}

.photo-gallery-section h2 {
  text-align: center;
  color: #dc143c;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.photo-gallery-section > .container > p {
  text-align: center;
  color: #ccc;
  margin-bottom: 3rem;
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  color: #fff;
  padding: 1.5rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h4 {
  margin: 0 0 0.5rem 0;
  font-size: 1.2rem;
  color: #dc143c;
}

.gallery-overlay p {
  margin: 0;
  font-size: 0.9rem;
  color: #ccc;
}

/* Video Highlights Section */
.video-section {
  padding: 4rem 0;
  background-color: #1a1a1a;
}

.video-section h2 {
  text-align: center;
  color: #dc143c;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.video-section > .container > p {
  text-align: center;
  color: #ccc;
  margin-bottom: 3rem;
}

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

.video-item {
  background-color: #252525;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(220, 20, 60, 0.3);
}

.video-placeholder {
  aspect-ratio: 16/9;
  background-color: #0a0a0a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: #dc143c;
}

.video-placeholder i {
  font-size: 3rem;
}

.video-placeholder p {
  color: #ccc;
  margin: 0;
}

.video-item h4 {
  padding: 1rem;
  margin: 0;
  color: #fff;
  font-size: 1.1rem;
}

.video-date {
  display: block;
  padding: 0 1rem 1rem 1rem;
  color: #999;
  font-size: 0.9rem;
}

/* Instagram Feed Section */
.instagram-section {
  padding: 4rem 0;
  background-color: #0a0a0a;
  text-align: center;
}

.instagram-section h2 {
  color: #dc143c;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.instagram-section > .container > p {
  color: #ccc;
  margin-bottom: 3rem;
}

.instagram-feed {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.instagram-post {
  background-color: #252525;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.instagram-post:hover {
  transform: translateY(-5px);
}

.instagram-placeholder {
  aspect-ratio: 1/1;
  background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 3rem;
}

.instagram-link {
  display: block;
  padding: 1rem;
  color: #fff;
  text-decoration: none;
  background-color: #252525;
  transition: background-color 0.3s ease;
}

.instagram-link:hover {
  background-color: #dc143c;
}

.instagram-cta {
  margin-top: 2rem;
  background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
  border: none;
}

.instagram-cta:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background-color: #333;
  color: #fff;
  padding: 3rem 0 2rem 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.footer-social h4 {
  color: #dc143c;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  text-align: left;
}

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

.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  text-decoration: none;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  background-color: rgba(255, 255, 255, 0.1);
  border: 2px solid transparent;
}

.social-link:hover {
  background-color: #dc143c;
  border-color: #dc143c;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(220, 20, 60, 0.3);
}

.social-link.facebook:hover {
  background-color: #1877f2;
  border-color: #1877f2;
  box-shadow: 0 6px 15px rgba(24, 119, 242, 0.3);
}

.social-link.instagram:hover {
  background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
  border-color: #e1306c;
  box-shadow: 0 6px 15px rgba(225, 48, 108, 0.3);
}

.social-icon {
  font-size: 1.2rem;
}

.social-text {
  font-weight: 600;
  font-size: 1rem;
}

.footer-copyright {
  text-align: right;
}

.footer-copyright p {
  margin: 0;
  color: #ccc;
}

/* Footer Mobile Responsiveness */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  
  .footer-social h4 {
    text-align: center;
  }
  
  .footer-copyright {
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .social-links {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .social-link {
    width: 200px;
    justify-content: center;
  }
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
  .header .container {
    padding: 0 1rem;
  }
  
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #000;
    z-index: 999;
  }
  
  .nav-list {
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  
  .nav-list.mobile-menu-open {
    max-height: 500px;
    overflow-y: auto;
  }
  
  .nav-list li {
    border-bottom: 1px solid #333;
  }
  
  .nav-list li:last-child {
    border-bottom: none;
  }
  
  .nav-list a {
    display: block;
    padding: 1rem 2rem;
    transition: background-color 0.3s ease;
  }
  
  .nav-list a:hover {
    background-color: #dc143c;
    color: #fff;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  /* Mobile Dropdown Styles */
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background-color: #000;
    border: none;
    border-radius: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .dropdown.mobile-dropdown-open .dropdown-menu {
    max-height: 300px;
    border-top: 1px solid #333;
  }

  .dropdown-menu a {
    padding: 0.75rem 2.5rem;
    font-size: 0.9rem;
    background-color: #111;
    border-bottom: 1px solid #222;
  }

  .dropdown-menu a:hover {
    background-color: #dc143c;
    color: #fff;
  }

  /* Mobile Dropdown Toggle Styles - Make them consistent with regular menu items */
  .dropdown-toggle {
    display: block;
    width: 100%;
    padding: 1rem 2rem;
    background: transparent;
    border: none;
    color: #fff;
    font-family: inherit;
    font-size: inherit;
    font-weight: 500;
    text-align: left;
    text-decoration: none;
    transition: background-color 0.3s ease;
    cursor: pointer;
  }

  .dropdown-toggle:hover,
  .dropdown-toggle:focus {
    background-color: #dc143c;
    color: #fff;
    outline: none;
  }

  .dropdown-toggle i {
    transition: transform 0.3s ease;
    float: right;
    margin-top: 2px;
  }

  .dropdown.mobile-dropdown-open .dropdown-toggle i {
    transform: rotate(180deg);
  }

  /* Disable desktop hover effects on mobile */
  .dropdown:hover .dropdown-menu {
    max-height: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .dropdown.mobile-dropdown-open:hover .dropdown-menu {
    max-height: 300px;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content p {
    font-size: 1.2rem;
  }
  
  .hero-overlay {
    padding: 2rem 1rem;
  }
  
  .hero {
    background-attachment: scroll;
  }
  
  .program-section h2,
  .coaches-section h2,
  .schedule-section h2,
  .news-events-section h2,
  .documents-section h2,
  .contact-section h2 {
    font-size: 2.5rem;
  }
  
  .program-details {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .coaches-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .news-events-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .documents-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .schedule-table-container {
    font-size: 0.9rem;
  }
  
  .schedule-table th,
  .schedule-table td {
    padding: 1rem;
  }
  
  .hall-of-fame-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hall-of-fame-card {
    padding: 1.5rem;
  }
  
  .hall-of-fame-image img {
    width: 150px;
    height: 150px;
  }
  
  .bob-loy-winner {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .winner-image img {
    width: 100px;
    height: 100px;
  }
  
  .container {
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .cta-button {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
  
  .program-section,
  .coaches-section,
  .hall-of-fame-section,
  .bob-loy-section,
  .schedule-section,
  .news-events-section,
  .contact-section {
    padding: 3rem 0;
  }
  
  .program-section h2,
  .coaches-section h2,
  .hall-of-fame-section h2,
  .bob-loy-section h2,
  .schedule-section h2,
  .news-events-section h2,
  .documents-section h2,
  .contact-section h2 {
    font-size: 2rem;
  }
  
  .hall-of-fame-card {
    padding: 1rem;
  }
  
  .hall-of-fame-image img {
    width: 120px;
    height: 120px;
  }
  
  .year-header h3 {
    font-size: 1.5rem;
    padding: 0.8rem 1.5rem;
  }
  
  .bob-loy-winner {
    padding: 1.5rem;
  }
  
  .schedule-table th,
  .schedule-table td {
    padding: 0.8rem;
    font-size: 0.8rem;
  }
}

/* Smooth Scrolling Enhancement */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

/* Hall of Fame Section */
.hall-of-fame-section {
  padding: 5rem 0;
  background-color: #f8f9fa;
}

.hall-of-fame-section h2 {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 2rem;
  color: #000000;
  position: relative;
}

.hall-of-fame-section h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #dc143c;
  margin: 1rem auto;
}

.hall-of-fame-section p {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #555;
}

.hall-of-fame-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.hall-of-fame-card {
  background: #f8f9fa;
  color: #333;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-left: 5px solid #dc143c;
}

.hall-of-fame-card:hover {
  transform: translateY(-8px);
}

.hall-of-fame-image {
  margin-bottom: 1.5rem;
}

.hall-of-fame-image img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 4px solid #dc143c;
  object-fit: cover;
}

.hall-of-fame-card h3 {
  color: #000;
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.hall-of-fame-card h4 {
  color: #dc143c;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  font-weight: bold;
}

.achievements p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1rem;
  text-align: left;
}

.achievements strong {
  color: #dc143c;
}

/* State Champions Section */
.state-champions-section {
  padding: 5rem 0;
  background-color: #ffffff;
}

.state-champions-section h2 {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 2rem;
  color: #000;
  position: relative;
}

.state-champions-section h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #dc143c;
  margin: 1rem auto;
}

.state-champions-section p {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #555;
}

.state-champions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.state-champions-card {
  background: #fff;
  color: #333;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-left: 5px solid #dc143c;
}

.state-champions-card:hover {
  transform: translateY(-8px);
}

.state-champions-image {
  margin-bottom: 1.5rem;
}

.state-champions-image img {
  width: 180px;
  height: 180px;
  border-radius: 25%;
  border: 4px solid #ffd700;
  object-fit: cover;
}

.state-champions-card h3 {
  color: #000;
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.state-champions-card h4 {
  color: #dc143c;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  font-weight: bold;
}

.championship-details p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1rem;
  text-align: left;
}

.championship-details strong {
  color: #dc143c;
}

/* Bob Loy Award Section */
.bob-loy-section {
  padding: 3rem 0;
  background-color: #ffffff;
  color: #fff;
  scroll-margin-top: 80px;
}

.bob-loy-section h2 {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 2rem;
  color: #000000;
  position: relative;
}

.bob-loy-section h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #dc143c;
  margin: 1rem auto;
}

.bob-loy-section > .container > p {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #555;
}

.bob-loy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 720px;
  margin: 0 auto;
}

.grid-item {
  background: #fff !important;
  color: #333 !important;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(220, 20, 60, 0.1);
  transition: transform 0.2s ease;
}

.grid-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(220, 20, 60, 0.2);
}

.grid-item strong {
  color: #dc143c;
}

/* Bob Loy Award Grid Mobile Responsiveness */
@media (max-width: 768px) {
  .bob-loy-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

/* Small Mobile (320px and smaller) */
@media (max-width: 360px) {
  .container {
    padding: 0 10px;
  }
  
  .documents-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Performance Optimizations */
.cta-button,
.detail-card,
.coach-card,
.hall-of-fame-card,
.grid-item {
  /* Only add will-change to elements with actual transforms */
  will-change: transform;
}