/* Navigation Bar */
.u-nav-section {
  background: linear-gradient(135deg, #085a17 0%, #0f6b1f 100%);
  box-shadow: 0 2px 10px rgba(8, 90, 23, 0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0;
}

.u-nav-sheet {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.u-nav-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.u-nav-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.u-nav-brand-text {
  color: white;
  font-family: Bangers;
  font-size: 1.5rem;
  letter-spacing: 1px;
  margin: 0;
}

.u-nav-links {
  display: flex;
  gap: 2rem;
}

.u-nav-link {
  color: white;
  text-decoration: none;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.u-nav-link:hover, .u-nav-active {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

/* Hero Section */
.u-section-1 {
  background-image: url("images/header_75_pct.jpg");
  background-position: center;
  background-size: cover;
  min-height: 70vh;
  display: flex;
  align-items: center;
  position: relative;
}

.u-section-1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(8, 90, 23, 0.7) 0%, rgba(131, 68, 150, 0.5) 100%);
}

.u-hero-sheet {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  position: relative;
  z-index: 2;
}

.u-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.u-hero-text {
  color: white;
}

.u-hero-title {
  font-family: Bangers;
  font-size: 4rem;
  letter-spacing: 3px;
  margin: 0 0 1rem 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.u-hero-subtitle {
  font-size: 2rem;
  margin: 0 0 1.5rem 0;
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.u-hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0 0 2rem 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.u-hero-actions {
  display: flex;
  gap: 1rem;
}

.u-hero-btn-primary, .u-hero-btn-secondary {
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.u-hero-btn-primary {
  background: linear-gradient(135deg, #085a17 0%, #0f6b1f 100%);
  color: white;
  box-shadow: 0 4px 16px rgba(8, 90, 23, 0.3);
}

.u-hero-btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.u-hero-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(8, 90, 23, 0.4);
}

.u-hero-btn-secondary:hover {
  background: white;
  color: #085a17;
}

.u-hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* League Overview Section */
.u-section-overview {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 4rem 0;
}

.u-overview-sheet {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.u-overview-header {
  text-align: center;
  margin-bottom: 3rem;
}

.u-overview-title {
  font-family: Bangers;
  font-size: 3rem;
  letter-spacing: 2px;
  color: #085a17;
  margin: 0 0 1rem 0;
}

.u-overview-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin: 0;
}

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

.u-overview-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
}

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

.u-card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #085a17 0%, #0f6b1f 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.u-icon-football, .u-icon-trophy {
  width: 40px;
  height: 40px;
  background: white;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}

.u-icon-football {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7z'/%3E%3C/svg%3E");
}

.u-icon-trophy {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 9V7h1V6a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v1h1v2h-1v3a3 3 0 0 1-3 3h-1v2h2v2H8v-2h2v-2H9a3 3 0 0 1-3-3V9H5z'/%3E%3C/svg%3E");
}

.u-card-title {
  font-family: Bangers;
  font-size: 1.8rem;
  color: #085a17;
  margin: 0 0 1rem 0;
  letter-spacing: 1px;
}

.u-card-description {
  color: #666;
  line-height: 1.6;
  margin: 0 0 1.5rem 0;
}

.u-card-stats {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.u-stat {
  background: #f8f9fa;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #085a17;
}

/* Main Content Section */
.u-section-content {
  background: linear-gradient(45deg, #f1f3f4 0%, #e8eaed 100%);
  padding: 4rem 0;
}

.u-content-sheet {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.u-content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
}

.u-content-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.u-content-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(8, 90, 23, 0.15);
}

.u-card-image {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.u-image-documents {
  background-image: url("images/football_greyscale.png");
  background-size: cover;
  background-position: center;
  height: 100%;
  transition: all 0.3s ease;
}

.u-image-history {
  background-image: url("https://www.si.com/.image/ar_4:3%2Cc_fill%2Ccs_srgb%2Cfl_progressive%2Cq_auto:good%2Cw_1200/MTk5Nzk4Nzk1NjI4NzE3Njk2/nflfootball.jpg");
  background-size: cover;
  background-position: center;
  height: 100%;
  transition: all 0.3s ease;
}

.u-content-card:hover .u-image-documents,
.u-content-card:hover .u-image-history {
  transform: scale(1.05);
}

.u-card-content {
  padding: 2rem;
}

.u-card-title-link {
  color: #085a17;
  text-decoration: none;
  font-family: Bangers;
  font-size: 2rem;
  letter-spacing: 1px;
}

.u-card-title-link:hover {
  color: #0f6b1f;
}

.u-card-description {
  color: #666;
  line-height: 1.6;
  margin: 1rem 0 1.5rem 0;
}

.u-card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0;
}

.u-feature {
  background: #f8f9fa;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  color: #085a17;
  border: 1px solid #e9ecef;
}

.u-card-btn {
  background: linear-gradient(135deg, #085a17 0%, #0f6b1f 100%);
  color: white;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  display: inline-block;
}

.u-card-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(8, 90, 23, 0.3);
  background: linear-gradient(135deg, #0f6b1f 0%, #129c28 100%);
}

/* Footer */
.u-footer {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
  padding: 3rem 0 1rem;
}

.u-footer-sheet {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.u-footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.u-footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.u-footer-logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.u-footer-brand-text {
  font-family: Bangers;
  font-size: 1.8rem;
  letter-spacing: 1px;
  margin: 0 0 0.5rem 0;
}

.u-footer-tagline {
  color: #bdc3c7;
  margin: 0;
}

.u-footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
}

.u-footer-heading {
  font-family: Bangers;
  font-size: 1.2rem;
  letter-spacing: 1px;
  margin: 0 0 1rem 0;
  color: #085a17;
}

.u-footer-link {
  color: #bdc3c7;
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.u-footer-link:hover {
  color: white;
}

.u-footer-bottom {
  border-top: 1px solid #4a5a6a;
  padding-top: 1rem;
  text-align: center;
}

.u-footer-copyright {
  color: #bdc3c7;
  margin: 0;
}

.u-footer-credits {
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .u-nav-sheet {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }
  
  .u-nav-links {
    gap: 1rem;
  }
  
  .u-hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .u-hero-title {
    font-size: 3rem;
  }
  
  .u-hero-actions {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .u-content-grid {
    grid-template-columns: 1fr;
  }
  
  .u-footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .u-footer-brand {
    align-items: center;
  }
}

@media (max-width: 480px) {
  .u-hero-title {
    font-size: 2.5rem;
  }
  
  .u-overview-title {
    font-size: 2.5rem;
  }
  
  .u-card-content {
    padding: 1.5rem;
  }
}