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

body {
  line-height: 1.6;
  color: #333;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 80px;
}

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

/* Hero Section */
.hero {
  position: relative;
  height: 550px;
  overflow: hidden;
}


.container-block-sports {
  /* display: block; */
  /* position: absolute; */
  top: 0;
  right: 3rem;
  left: 3rem;
  bottom: 0;
  border: 1px solid #cfcfce;
  z-index: 0;
  box-sizing: content-box;
  padding: 30px;
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .container-block-sports {
    /* display: block; */
    /* position: absolute; */
    top: 0;
    right: 3rem;
    left: 3rem;
    bottom: 0;
    margin-left: 50px;
    margin-right: 50px;
    border: 1px solid #cfcfce;
    z-index: 0;
    box-sizing: content-box;
    padding: 70px;
  }

}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container-block-sports {
    /* display: block; */
    /* position: absolute; */
    top: 0;
    right: 3rem;
    left: 3rem;
    bottom: 0;
    margin-left: 50px;
    margin-right: 50px;
    border: 1px solid #cfcfce;
    z-index: 0;
    box-sizing: content-box;
    padding: 70px;
  }

}


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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4));
}

.hero-content {
  position: absolute;
  bottom: 60px;
  left: 80px;
  z-index: 2;
}

.hero-title {
  font-size: 80px;
  font-weight: 400;
  color: white;
  margin: 0;
  letter-spacing: -1px;
  line-height: 1;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-fallback {
  display: none;
}

.pause-button {
  position: absolute;
  bottom: 30px;
  right: 50px;
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid white;
  border-radius: 3px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: background 0.3s;
}

.pause-button:hover {
  background: rgba(0, 0, 0, 0.8);
}

/* Breadcrumb */
.breadcrumb {
  background: #0070b4;
  padding: 14px 80px;
  color: white;
  font-size: 13px;
  font-weight: 600;
}

.breadcrumb-link {
  color: white;
  text-decoration: none;
  transition: opacity 0.3s;
}

.breadcrumb-link:hover {
  opacity: 0.8;
}

.breadcrumb-separator {
  margin: 0 12px;
}

.breadcrumb-current {
  color: white;
}

/* Crimson Pride Section */
.crimson-pride {
  background: white;
  padding: 70px 0;
  border-bottom: 1px solid #e8e8e8;
}

.sidebar-menu {
  padding-top: 8px;
  padding-right: 30px;
}

.sidebar-title {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;

  text-transform: none;
}

.sidebar-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-links li {
  margin-bottom: 12px;
}

.sidebar-link {
  font-size: 14px;
  color: #666;
  text-decoration: none;
  line-height: 1.6;
  transition: color 0.3s;
  display: block;
}

.sidebar-link:hover {
  color: #0070b4;
}

.pride-content {
  max-width: 900px;
}

.pride-title {
  font-size: 48px;
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 24px;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.pride-text {
  font-size: 17px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 24px;
}

.red-bar {
  width: 100%;
  max-width: 800px;
  height: 3px;
  background: #0070b4;
  margin-top: 32px;
}

/* Varsity Sports Section */
.varsity-sports {
  background: #050f29;
  padding: 100px 0;
  overflow: hidden;
}

.varsity-text-wrapper {
  padding: 80px 60px 80px 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.shield-icon {
  margin-bottom: 28px;
}

/* Varsity Images Grid */
.varsity-images-grid {
  width: 100%;
}

.varsity-img {
  width: 100%;
  object-fit: cover;
  display: block;
}

.large-img {
  height: 620px;
  width: 100%;
}

.small-img {
  height: 302px;
  width: 100%;
}

.section-title {
  font-size: 52px;
  font-weight: 400;
  margin-bottom: 28px;
  color: white;

  line-height: 1.1;
  letter-spacing: -0.5px;
}

.section-title.dark {
  color: #1a1a1a;
}

.section-title.light {
  color: white;
}

.section-description {
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.95);
}

.section-description.dark {
  color: #333;
  line-height: 1.7;
}

.section-description.light {
  color: rgba(255, 255, 255, 0.95);
}

.section-description strong {
  font-weight: 700;
}

/* CTA Buttons */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 3px;
  transition: all 0.3s;
  cursor: pointer;

}

.cta-button.dark {
  background: rgba(255, 255, 255, 0.12);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.cta-button.dark:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

.cta-button.red {
  background: #a51c30;
  color: white;
  border: none;
}

.cta-button.red:hover {
  background: #8a1728;
}

.cta-button.light {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.cta-button.light:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* Quote Section */
.quote-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 80px 0;
  color: white;
  position: relative;
}

.quote-section .row {
  align-items: flex-start !important;
}

.quote-divider {
  position: absolute;
  left: 80px;
  top: 0;
  width: 4px;
  height: 100%;
  background: #0070b4;
  z-index: 1;
}

.quote-content {
  padding-left: 120px;
  max-width: 1100px;
}

.quote-text {
  font-size: 1.5rem;
  line-height: 1.8;
  font-style: italic;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 20px;
  font-family: Georgia, 'Times New Roman', serif;
}

.quote-author {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  margin-bottom: 0;
}

/* Junior Committee Section */
.junior-committee {
  padding: 90px 0;
  background: white;
}

.committee-title {
  font-size: 42px;
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 50px;

  line-height: 1.1;
  letter-spacing: -0.5px;
}

.committee-card {
  background: white;
  height: 100%;
}

.contact-button {
  position: absolute;
  top: 0;
  left: 0;
  background: #a51c30;
  color: white;
  border: none;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 700;

  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.3s;
  letter-spacing: 0.5px;
}

.contact-button:hover {
  background: #8a1728;
}

.committee-image-wrapper {
  width: 100%;
  height: 400px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.committee-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.committee-image-wrapper:hover .committee-image {
  transform: scale(1.05);
}

.committee-info {
  background: #d6d6d6;
  padding: 20px 24px;
  min-height: 75px;
  display: flex;
  align-items: center;
}

.committee-role {
  font-size: 22px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
  letter-spacing: 0;
}

.committee-role-hover {
  font-size: 22px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 16px 0;
  letter-spacing: 0;
}

.committee-details {
  position: absolute;
  top: 40%;
  left: 0;
  width: 100%;
  height: 60%;
  background: rgba(214, 214, 214, 0.97);
  padding: 20px 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 5;
  overflow: hidden;
  box-sizing: border-box;
}

.committee-image-wrapper:hover .committee-details {
  opacity: 0.9;
  visibility: visible;
}


.container-deportistas {
  max-width: 1600px;
  margin: auto;
}

.detail-item {
  font-size: 14px;
  line-height: 1.6;
  color: #1a1a1a;
  margin-bottom: 10px;

}

.detail-item strong {
  font-weight: 700;
  color: #1a1a1a;
}

.detail-description {
  font-size: 14px;
  line-height: 1.65;
  color: #1a1a1a;
  margin-top: 14px;
  margin-bottom: 0;

}

.detail-description strong {
  font-weight: 700;
  color: #1a1a1a;
}

/* Staff Profile Section */
.staff-profile-section {
  padding: 90px 0;
  background: white;
}

.staff-image-wrapper {
  width: 100%;
  position: relative;
}

.staff-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.staff-info-card {
  background: #d6d6d6;
  padding: 20px 24px;
  min-height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.staff-name-card {
  font-size: 22px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
  letter-spacing: 0;
}

.staff-content {
  padding-left: 40px;
}

.staff-name {
  font-size: 42px;
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 10px;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.staff-position {
  font-size: 20px;
  font-weight: 600;
  color: #0070b4;
  margin-bottom: 25px;
}

.staff-description {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}

.staff-description p {
  margin-bottom: 15px;
}

.staff-description p:last-child {
  margin-bottom: 0;
}

/* Two Column Layout */
.intramural-sports,
.club-sports {
  padding: 90px 0;
  background: white;
}

.club-sports {
  background: #f5f5f5;
}

.feature-image {
  width: 100%;
  height: 480px;
  object-fit: cover;
  margin: 28px 0 32px 0;
  display: block;
}

/* Social Media Section */
.social-media {
  position: relative;
  padding: 250px 0;
  overflow: hidden;
}

.social-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.social-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.75);
}

.social-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

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

  .hero-content {
    left: 60px;
  }

  .breadcrumb {
    padding: 16px 60px;
  }

  .sidebar-menu {
    padding-right: 0;
    margin-bottom: 30px;
  }

  .varsity-sports {
    padding: 80px 0;
  }

  .varsity-text-wrapper {
    padding: 60px 40px;
  }

  .large-img {
    height: 500px;
  }

  .small-img {
    height: 242px;
  }

  .col-6.pr-2 {
    padding-right: 8px !important;
  }

  .col-6.pl-2 {
    padding-left: 8px !important;
  }
}

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

  .hero {
    height: 400px;
  }

  .quote-section {
    padding: 50px 0;
  }

  .quote-divider {
    display: none;
  }

  .quote-content {
    padding-left: 0;
  }

  .quote-text {
    font-size: 1.1rem;
    line-height: 1.6;
  }

  .quote-author {
    font-size: 0.9rem;
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-content {
    left: 24px;
    bottom: 96px;
  }

  .pause-button {
    bottom: 20px;
    right: 24px;
    width: 40px;
    height: 40px;
  }

  .breadcrumb {
    padding: 12px 24px;
    font-size: 12px;
  }

  .section-title {
    font-size: 32px;
  }

  .section-description {
    font-size: 16px;
  }

  .pride-title {
    font-size: 28px;
  }

  .pride-text {
    font-size: 16px;
  }

  .sidebar-title {
    font-size: 13px;
  }

  .sidebar-link {
    font-size: 13px;
  }

  .sidebar-menu {
    margin-bottom: 25px;
  }

  .varsity-sports {
    padding: 60px 0;
  }

  .varsity-text-wrapper {
    padding: 40px 20px;
  }

  .large-img {
    height: 400px;
  }

  .small-img {
    height: 192px;
  }

  .col-6.pr-2 {
    padding-right: 6px !important;
  }

  .col-6.pl-2 {
    padding-left: 6px !important;
  }

  .col-12.pb-2 {
    padding-bottom: 6px !important;
  }

  .col-12.pt-2 {
    padding-top: 6px !important;
  }

  .feature-image {
    height: 300px;
  }

  .cta-button {
    padding: 12px 24px;
    font-size: 14px;
  }

  .crimson-pride,
  .varsity-sports,
  .intramural-sports,
  .club-sports,
  .social-media,
  .junior-committee {
    padding: 50px 0;
  }

  .committee-title {
    font-size: 32px;
    margin-bottom: 35px;
  }

  .committee-image-wrapper {
    height: 300px;
  }

  .committee-role,
  .committee-role-hover {
    font-size: 18px;
  }

  .committee-info {
    padding: 16px 20px;
    min-height: 65px;
  }

  .committee-details {
    padding: 30px 18px 18px 18px;
  }

  .detail-item,
  .detail-description {
    font-size: 13px;
  }

  .contact-button {
    padding: 10px 16px;
    font-size: 12px;
  }

  .staff-profile-section {
    padding: 50px 0;
  }

  .staff-content {
    padding-left: 0;
    padding-top: 20px;
  }

  .staff-name {
    font-size: 32px;
  }

  .staff-position {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .staff-description {
    font-size: 15px;
  }

  .staff-image {
    height: 400px;
  }

  .staff-name-card {
    font-size: 20px;
  }
}

.detail-description > p {
  font-size: 14px;
  line-height: 1.65;
  color: #1a1a1a;
  margin-top: 14px;
  margin-bottom: 0;

}

.countdown-timer {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 15px;
  z-index: 3;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(0, 0, 0, 0.6);
  padding: 10px 15px;
  border-radius: 8px;
  backdrop-filter: blur(5px);
}

.countdown-value {
  font-size: 24px;
  font-weight: bold;
  color: white;
  line-height: 1;
}

.countdown-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 5px;
  text-transform: uppercase;
}
/* Scrolling Banner */
.scrolling-banner {
  background: #3498db;
  padding: 20px 0;
  overflow: hidden;
  white-space: nowrap;
}

.banner-track {
  display: inline-block;
  animation: scroll 30s linear infinite;
}

.banner-item {
  display: inline-block;
  color: white;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 0 50px;
}

.banner-item i {
  margin-right: 10px;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}





.partidos-section {
  padding: 60px 0;
  background-color: #fff;
}

.partido-card {
  border: 4px solid #ffffff;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.partido-header {
  background-color: #0070b4;
  padding: 25px 20px;
  text-align: center;
}

.partido-fecha {
  color: #fff;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 3px;

}

.partido-body {
  padding: 50px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: #0070b4;
}

.equipo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  max-width: 150px;
}

.escudo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.equipo-nombre {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.partido-centro {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hora-display {
  font-size: 42px;
  font-weight: 800;
  color: #0070b4;
  line-height: 1;
  background-color: #fff;
  padding: 8px 20px;
  border-radius: 8px;
  display: inline-block;
}

.ubicacion-text {
  font-size: 15px;
  color: #ffffff;
  font-weight: 500;
}

@media (max-width: 768px) {
  .partido-body {
    flex-direction: column;
    gap: 40px;
    padding: 40px 20px;
  }

  .equipo-item {
    max-width: 100%;
  }

  .partido-fecha {
    font-size: 26px;
  }

  .hora-display {
    font-size: 36px;
  }
}






.transmision-section {
  padding: 60px 0;
  background-color: #f5f5f5;
}

.video-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
