/* Hero Section */
.hero-section {
  min-height: 50vh;
  display: flex;
  align-items: center;
  padding: 50px 0;
}

/* About Section */
.about {
  padding: 50px 0;
}
.image-placeholder {
  background-color: #333;
  height: 300px;
  margin-bottom: 20px;
}
.join-adventure {
  color: #a80025;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 2px;
}
.main-heading {
  font-size: 4rem;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .main-heading {
    font-size: 2.5rem;
  }
}
.subheading {
  color: #ccc;
  font-size: 1.1rem;
  margin-bottom: 40px;
}
.feature-icon {
  color: #a80025;
  font-size: 2rem;
  margin-right: 10px;
}
.feature-title {
  font-size: 1.5rem;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.feature-text {
  color: #ccc;
  font-size: 1rem;
}
.feature-list {
  list-style: none;
  padding-left: 0;
}
.feature-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  color: #ccc;
}
.feature-list li::before {
  content: "*";
  color: #a80025;
  position: absolute;
  left: 0;
}
.read-more-btn {
  background-color: #a80025;
  color: #000;
  text-transform: uppercase;
  font-weight: bold;
  padding: 10px 20px;
  border: none;
}
.read-more-btn:hover {
  background-color: #a80025;
}

/* Features */

.features-section {
  padding: 50px 0;
  margin-top: 100px;
}
.feature-card {
  background-color: #202020;
  padding: 30px;
  border: 1px solid #3d3d3d;
  border-radius: 0px;
  text-align: center;
  height: 100%;
}
.feature-icon {
  color: #a80025;
  font-size: 3rem;
  margin-bottom: 20px;
}
.feature-title {
  font-size: 1.5rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.feature-text {
  color: #ccc;
  font-size: 1rem;
}

/* Sponsors */

.sponsors-section {
  padding: 0;
  margin-top: 0;
  padding-bottom: 50px;
}
.sponsors-card {
  background-color: #202020;
  padding: 0px;
  border: 1px solid #3d3d3d;
  border-radius: 0px;
  text-align: center;
}
.sponsors-icon {
  margin-bottom: 20px;
  display: block;
  width: auto; /* Adjust size as needed */
  height: 120px !important;
  margin-left: auto;
  margin-right: auto;
  filter: grayscale(100%) brightness(1000%); /* Makes the image white */
}
.sponsors-title {
  font-size: 1.5rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.sponsors-text {
  color: #ccc;
  font-size: 1rem;
}

/* Marquee Styling */
.marquee-container {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
}

.marquee-text {
  justify-content: center;
  align-items: center;
  font-size: 6rem;
  font: 600 80px Anton;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  animation: marquee 30s linear infinite; /* Slower */
}

.marquee-text span {
  font-size: 3rem;
  font-weight: bold;
  color: #fff;
  opacity: 0.6;
  margin-right: 20px;
}

.marquee-text img {
  width: auto;
  height: 30px;
  margin-right: 20px;
  opacity: 0.8;
}

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

.sponsor-marquee-container {
  overflow: hidden;
  width: 100%;
}

.sponsor-marquee-content {
  display: flex;
  white-space: nowrap;
  animation: sponsor-marquee 20s linear infinite;
}

@keyframes sponsor-marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Location & Date */
.location-date-section {
  padding: 50px 0;
  background: url("../img/svg/x.svg");
  background-repeat: no-repeat, repeat;
  background-size: cover, 50px 50px;
  background-position: center, center;
  border-top: 2px solid #a80025;
  border-bottom: 2px solid #a80025;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.location-date-info {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.info-icon {
  width: 40px;
  height: 40px;
  background-color: #a80025;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #1a1a1a;
}

.info-text {
  font-size: 1.5rem;
  font-weight: 500;
  text-transform: uppercase;
}

.cta-button {
  background-color: #a80025;
  color: #1a1a1a;
  font-size: 1.2rem;
  font-weight: bold;
  text-transform: uppercase;
  padding: 15px 40px;
  border: none;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.1s ease;
}

.cta-button:hover {
  background-color: #a80025;
  transform: scale(1.05);
}

.cta-button:active {
  transform: scale(0.95);
}

@media (max-width: 768px) {
  .location-date-info {
    gap: 30px;
  }

  .info-text {
    font-size: 1.2rem;
  }

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

  .cta-button {
    font-size: 1rem;
    padding: 10px 30px;
  }
}

/* Sponsorship Section */
.sponsorship-section {

}

/* Section Title */
.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 40px;
  letter-spacing: 2px;
}

/* Sponsorship Card */
.sponsorship-card {
  background-color: #202020;
  padding: 30px;
  border: 1px solid #3d3d3d;
  border-radius: 5px;
  text-align: center;
  height: 100%;
  position: relative;
  transition: transform 0.3s ease;
}

.sponsorship-card.recommended {
  border: 2px solid #a80025;
  background-color: #2a2a2a;
  transform: scale(1.05);
}

.sponsorship-card.recommended .recommended-label {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #a80025;
  color: #fff;
  font-size: 0.9rem;
  font-weight: bold;
  text-transform: uppercase;
  padding: 5px 15px;
  border-radius: 3px;
}

.sponsorship-card.recommended .recommended-label::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 2px;
  background-color: #fff;
  margin-left: 10px;
  vertical-align: middle;
}

.sponsorship-title {
  font-size: 1.5rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 10px;
}

.sponsorship-description {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 20px;
}

.sponsorship-price {
  font-size: 3rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 20px;
}

.sponsorship-button {
  display: inline-block;
  background-color: #a80025;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  padding: 10px 30px;
  border: none;
  border-radius: 3px;
  margin-bottom: 20px;
  transition: background-color 0.3s ease;
}

.sponsorship-button:hover {
  background-color: #8b001f;
}

.sponsorship-benefits-title {
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 15px;
}

.sponsorship-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
  color: #ccc;
  text-align: left;
}

.sponsorship-benefits li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.sponsorship-benefits li.check::before {
  content: "";
  position: absolute;
  left: 0;
  color: #a80025;
  font-size: 1.2rem;
}

.sponsorship-benefits li.cross::before {
  content: "✘";
  position: absolute;
  left: 0;
  color: #666;
  font-size: 1.2rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .sponsorship-title {
    font-size: 1.3rem;
  }

  .sponsorship-price {
    font-size: 2.5rem;
  }

  .sponsorship-benefits {
    font-size: 0.8rem;
  }

  .sponsorship-card.recommended {
    transform: scale(1);
  }
}

/* Vendor and Exhibitor Section */
.vendor-exhibitor-section {
  padding: 150px 0;
  text-align: center;
  position: relative;
}

.vendor-exhibitor-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  z-index: -1;
}

/* Section Title */
.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 40px;
  letter-spacing: 2px;
}

/* Category Title */
.category-title {
  font-size: 1.8rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #fff; /* Orange-red accent */
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.category-title::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background-color: #fff;
  margin: 10px auto 0;
}

/* Vendor Card */
.vendor-card {
  background-color: #252525;
  padding: 20px;
  border: 1px solid #3d3d3d;
  border-radius: 5px;
  text-align: left;
  height: 100%;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.vendor-card:hover {
  border-color: #a80025;
  transform: translateY(-5px);
}

.vendor-stall {
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 10px;
}

.vendor-price {
  font-size: 1.5rem;
  font-weight: bold;
  color: #a80025;
  margin-bottom: 10px;
}

.vendor-details {
  font-size: 0.9rem;
  color: #ccc;
  margin-bottom: 5px;
}

.vendor-details.exclusive {
  color: #a80025;
  font-weight: 500;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .category-title {
    font-size: 1.5rem;
  }

  .vendor-stall {
    font-size: 1rem;
  }

  .vendor-price {
    font-size: 1.3rem;
  }

  .vendor-details {
    font-size: 0.8rem;
  }
}

/* Competitive Events Section */
.competitive-events-section {
  padding: 80px 0;
  background: linear-gradient(45deg, #1a1a1a27, #1a1a1a27);
  text-align: center;
  position: relative;
}

.competitive-events-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/logo-bg.png");
  background-repeat: repeat;
  background-size: 150px 50px;
  background-position: center;
  background-blend-mode: overlay;
  opacity: 0.9;
  z-index: -1;
}

/* Section Title */
.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background-color: #a80025;
  margin: 10px auto 0;
}

/* Description */
.event-description {
  font-size: 1rem;
  color: #ccc;
  max-width: 800px;
  margin: 0 auto 20px;
  line-height: 1.6;
}

/* Disclaimer */
.event-disclaimer {
  font-size: 0.9rem;
  color: #666;
  max-width: 800px;
  margin: 0 auto 40px;
  font-style: italic;
}

/* Game Cards */
.game-card {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  transition: transform 0.3s ease;
}

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

.game-image {
  width: 100%;
  height: 150px;
  object-fit: cover;
  filter: brightness(0.8);
  transition: filter 0.3s ease;
}

.game-card:hover .game-image {
  filter: brightness(1);
}

.game-title {
  position: absolute;
  bottom: 10px;
  left: 10px;
  font-size: 1.2rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .event-description {
    font-size: 0.9rem;
  }

  .event-disclaimer {
    font-size: 0.8rem;
  }

  .game-title {
    font-size: 1rem;
  }

  .game-image {
    height: 120px;
  }
}

/* Comp */
.content {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(242, 243, 248);
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
.content:after {
  content: "";
  left: 80px;
  height: 100%;
  position: absolute;
  width: 150px;
  z-index: 100;
  background: linear-gradient(
    90deg,
    rgb(242, 243, 248) 0%,
    rgba(242, 243, 248, 0) 100%
  );
  pointer-events: none;
}
.content:before {
  content: "";
  pointer-events: none;
  right: 80px;
  height: 100%;
  position: absolute;
  width: 150px;
  z-index: 100;
  background: linear-gradient(
    90deg,
    rgba(242, 243, 248, 0) 0%,
    rgba(242, 243, 248, 1) 100%
  );
}
.btn {
  border-radius: 20px;
  background: #fff;
  border: 0px;
  outline: none;
  cursor: pointer;
  z-index: 200;
  margin: 10px;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.08);
  transition: all 0.25s ease;
}
.btn:hover {
  transform: translate(0, -10px);
  box-shadow: 0px 17px 35px 0px rgba(0, 0, 0, 0.07);
}
.btn i {
  font-size: 1.6rem;
}
.con-cards {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  overflow: auto;
  padding-top: 100px;
  padding-left: 60px;
  padding-right: 50px;
  scroll-behavior: smooth;
}
.con-cards::-webkit-scrollbar {
  height: 0px;
}
.con-cards:after {
  content: "";
  display: block;
  min-width: 20px;
  height: 100px;
  position: relative;
}
.card {
  height: auto;
  background-color: #252525;
  padding: 20px;
  border: 1px solid #3d3d3d;
  border-radius: 5px;
  position: relative;
  z-index: 10;
  margin: 25px;
  transition: all 0.25s ease;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}
.card:hover {
  transform: translate(0, -10px);
  box-shadow: 0px 17px 35px 0px rgba(0, 0, 0, 0.07);
  border: solid 1px #a80025;
}
.card:hover .con-img {
  transform: translate(0, -15px);
}
.card:hover .con-img img.blur {
  opacity: 0.45;
  transform: translate(-10px, 26px) scale(0.85);
}
.card h3 {
  position: absolute;
  font-family: "Oswald", sans-serif;
  left: 0px;
  top: 0px;
  padding: 15px;
}
.card i.bx {
  position: absolute;
  right: 0px;
  top: 0px;
  padding: 15px;
  font-size: 1.3rem;
}
.card .con-text {
  padding: 20px;
}
.card .con-img {
  /* transform: translate(0,-90px); */
  width: calc(100% - 60px);
  margin: 0px 30px;
  margin-top: -90px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease-out;
}
.card img {
  height: 300px;
}
.card img.blur {
  position: absolute;
  filter: blur(15px);
  z-index: -1;
  opacity: 0.35;
  transform: translate(-10px, 10px) scale(0.85);
  transition: all 0.35s ease-out;
}

/* TCG */

.team-section {
  padding: 200px 0px;
}
.team-section .container {
  position: relative;
  z-index: 2;
}
.team-card {
  background-color: #2a2a2a;
  border: 1px solid #444;
  border-radius: 5px;
  padding: 15px;
  text-align: center;
  margin-bottom: 20px;
  transition: all 0.25s ease;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}

.team-card:hover {
  transform: translate(0, -10px);
  box-shadow: 0px 17px 35px 0px rgba(0, 0, 0, 0.07);
  border: solid 1px #a80025;
}

.team-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 15px;
}
.team-card h5 {
  font-size: 1.5rem;
  margin-bottom: 5px;
}
.team-card p {
  color: #ccc;
  font-size: 0.9rem;
  margin-bottom: 15px;
}
/* Contact */
.social-icons a {
  color: #fff;
  margin: 0 5px;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}
.contact-info-section {
  padding: 50px 0;
}
.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.contact-icon {
  position: relative;
  padding: 20px;
  margin-right: 15px;
  border: 2px #a80025 solid;
  background-color: #a80025;
  transform: skewX(-10deg);
  height: 100%;
}
.contact-icon i {
  color: #fff;
}
.contact-details {
  flex: 1;
}
.contact-label {
  font-size: 1.2rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.contact-value {
  font-size: 1rem;
  color: #ccc;
}
.contact-value a {
  color: #ccc;
  text-decoration: none;
}
.contact-value a:hover {
  color: #a80025;
}

.btn-primary {
  display: inline-block;
  background-color: #a80025;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  padding: 10px 30px;
  border: none;
  border-radius: 3px;
  margin-bottom: 20px;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #8b001f;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #fff !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #1a1a1a;
  background-clip: padding-box;
  border: var(--bs-border-width) solid #444;
  border-radius: var(--bs-border-radius);
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
  color: #fff !important;
  background-color: #2a2a2a !important;
  border-color: #a80025 !important;
  box-shadow: 0 0 0 0.2rem rgba(168, 0, 37, 0.25) !important;
}

.form-control::placeholder {
  color: white;
  opacity: 1; /* Keep it fully visible */
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  border: #a80025 solid 1px;
  color: #a80025;
  background-color: #2a2a2a;
}
