/* Full-width banner with image */
.banner {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-image {
  width: 100%;  /* Make image take full width */
  height: 100%; /* Make image take full height */
  object-fit: cover; /* Ensure the image covers the entire area */
  object-position: center; /* Center the image */
}

/* Banner responsiveness */
@media (max-width: 768px) {
  .banner {
    /* No additional styles needed for banner responsiveness in this case */
  }

  .banner-image {
    object-fit: cover; /* Ensures the image remains responsive */
  }
}

.content-section {
  padding: 50px 0; /* Add space around the section */
}

.content-section img {
  max-width: 100%; /* Make sure the images are responsive */
  height: auto;
  margin-bottom: 20px; /* Add some space between images */
}
@media (max-width: 768px) {
  .content-section img {
    width: 80%; /* Adjust image size for smaller screens */
    margin: 0 auto;
  }
}
.content-section h2 {
  font-size: 32px;
  font-weight: 600;
  color: var(--bg-color); /* Customize text color */
}

.content-section p {
  font-size: 18px;
  color: #555; /* Customize paragraph color */
}

.sponsor-section {
  padding: 50px 0;
  /*background-color: #f8f8f8; /* Optional background color */
}

.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  color: var(--bg-color); /* Customize title color */
  margin-bottom: 40px;
}

.sponsor-img {
  width: 100%; /* Ensure images take up the full width of their container */
  height: auto;
  display: block; /* Make sure the images are displayed as block elements */
  margin: 0 auto; /* Center the image */
  /*max-height: 250px; /* Set a max-height for the images to avoid them being too large */
}

@media (max-width: 768px) {
   .sponsor-img {
    max-width: 80%; /* Adjust image size for smaller screens */
    margin: 0 auto; /* Center the images on smaller screens */
  }
}
.timeline-section {
  padding: 50px 0;
  /*background-color: #f8f8f8; /* Optional background color */
}

.support-title {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  color: var(--bg-color); /* Customize title color */
  margin-bottom: 40px;
}

.support-img {
  max-width: 100%; /* Make sure the images are responsive */
  height: auto;
  margin-bottom: 20px; /* Add some space between images */
}

@media (max-width: 768px) {
  .support-img {
    width: 80%; /* Adjust image size for smaller screens */
    margin: 0 auto;
  }
}
.support-section {
  padding: 50px 0;
  /*background-color: #f8f8f8; /* Optional background color */
}

.timeline-title {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  color: var(--bg-color); /* Customize title color */
  margin-bottom: 40px;
}

.timeline-img {
  max-width: 80%; /* Make sure the images are responsive */
  height: auto;
  margin-bottom: 20px; /* Add some space between images */
}

@media (max-width: 768px) {
  .timeline-img {
    width: 80%; /* Adjust image size for smaller screens */
    margin: 0 auto;
  }
}

.why-section {
  padding: 50px 0;
  /*background-color: #f8f8f8; /* Optional background color */
}

.why-title {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  color:var(--bg-color); /* Customize title color */
  margin-bottom: 40px;
}

.why-img {
  max-width: 80%; /* Make sure the images are responsive */
  height: auto;
  margin-bottom: 20px; /* Add some space between images */
}

@media (max-width: 768px) {
  .why-img {
    width: 80%; /* Adjust image size for smaller screens */
    margin: 0 auto;
  }
}

.video-section {
  padding: 50px 0;
  text-align: center;
}

.video-title {
  font-size: 32px;
  font-weight: 600;
  color: var(--bg-color); /* Customize title color */
  margin-bottom: 40px;
}

.video-thumbnails .thumbnail {
  margin-bottom: 20px;
  cursor: pointer;
}

.video-thumbnails .thumbnail img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.video-thumbnails .thumbnail img:hover {
  transform: scale(1.1); /* Zoom effect on hover */
}

@media (max-width: 768px) {
  .video-thumbnails .col-4 {
    margin-bottom: 10px; /* Adjust margin for mobile */
  }
}

.sponsor-acknowledgement {
  padding: 50px 0;
  text-align: center;
}

.section-title {
  font-size: 32px;
  font-weight: 600;
  color: var(--font-color); /* Customize title color */
  margin-bottom: 40px;
}

.sponsor-list {
  display: flex;
  flex-wrap: wrap;
}

.sponsor-name {
  color: var(--font-color);
  margin: 10px 0; /* Space between the names */
  font-size: 24px;
}

@media (max-width: 768px) {
  .sponsor-name {
    font-size: 18px; /* Adjust font size for smaller screens */
  }
}

.button-section {
  padding: 50px 0; /* Add padding to the section for spacing */
  text-align: center; /* Center the button inside the section */
      background-color: #f9f9f9;
}

.btn-custom {
  display: inline-block;
  padding: 15px 30px;
  background-color: var(--bg-color); /* Button color */
  color: white; /* Text color */
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  text-decoration: none; /* Remove underline */
  border-radius: 25px; /* Rounded corners */
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2); /* Shadow for effect */
  transition: all 0.3s ease; /* Smooth transition */
}

.btn-custom:hover {
  background-color: var(--btn-hover-color); /* Darker shade on hover */
  transform: translateY(-3px); /* Slightly lift the button on hover */
}


.champions-section {
  padding: 50px 0;
  background-color: #f9f9f9;
}

.champions-section h2 {
  font-size: 60px;
  font-weight: 600;
  color: var(--font-color);
}

.champions-section .champion-info h5 {
  font-size: 25px;
  font-weight: 600;
  color: var(--font-color);
}

.champions-section .champion-info p {
  font-size: 19px;
  color: var(--font-color);
}

.champions-section .img-fluid {
  width: 250px;  /* Set the width to make all images the same size */
  height: 250px;  /* Set the height */
  object-fit: cover; /* Ensures that the image fits inside the box without distortion */
}

.champions-section .rounded-circle {
  border: 5px solid var(--bg-color); /* Border around the image */
  padding: 5px;
}

.champions-section .btn {
  font-size: 18px;
  padding: 10px 30px;
  background-color: var(--bg-color);
  color: white;
  border: none;
  border-radius: 5px;
}

.champions-section .btn:hover {
  background-color: var(--btn-hover-color);
  text-decoration: none;
}

@media (max-width: 768px) {
  .champions-section h2 {
    font-size: 30px;
  }

  .champions-section .champion-info h5 {
    font-size: 18px;
    font-weight: bold;
  }

  .champions-section .champion-info p {
    font-size: 14px;
    font-weight: bold;
  }

  .champions-section .img-fluid {
    width: 150px; /* Adjust the width for smaller screens */
    height: 150px; /* Adjust the height for smaller screens */
  }
}

.btn-apply {
  display: inline-block;
  padding: 15px 30px;
  background-color: #920101;
  color: white;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border-radius: 25px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  margin-top: 20px;
}

.btn-apply:hover {
  background-color: #920101;
  transform: translateY(-3px);
}
