:root {
  --primary-yellow: #f8e328;
  --primary-blue: #00689e;
  --text-dark: #333;
  --text-light: #fff;
}

html {
  font-size: 16px;
}

.menu-main a {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-decoration: none;
}

.menu-main a:hover {
  text-decoration: underline;
}

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

@font-face {
    font-family: "Gotham Bold";
    src:
        url("../fonts/Gotham-Bold.woff2") format("woff2"),
        url("../fonts/Gotham-Bold.woff") format("woff");
    font-style: normal;
}

@font-face {
    font-family: "Gotham";
    src:
        url("../fonts/Gotham-Book.woff2") format("woff2"),
        url("../fonts/Gotham-Book.woff") format("woff");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Gotham Black";
    src:
        url("../fonts/Gotham Black_Rom.woff") format("woff"),
        url("../fonts/Gotham Black_Rom.woff2") format("woff2");

    font-style: normal;
}


p,
h2 {
  margin: 0;
}

body {
  font-family: "Gotham", sans-serif;
  line-height: 1.6;
}

button.menu-toggle:focus {
  outline: none;
}

@media (min-width: 1400px) {
  .menu-main a {
    font-size: 1.3em !important;
  }
}

.bg-yellow {
  background-color: var(--primary-yellow);
}

.bg-blue {
  background-color: var(--primary-blue);
}
.header-img {
  width: 100%;
}

.header-content {
  font-family: "Gotham Black", sans-serif;
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 40px 0 40px 36vw;
  display: flex;
  flex-direction: column;
}

.header-content h1 {
  color: var(--text-light);
  font-size: 6.19vw;
}
.header-content h1 span {
  color: var(--primary-blue);
  font-size: 4.9vw;
}
.header-content h1 .big-copy {
  font-size: 8.72vw;
}

.header-content .sponsor {
  width: 75%;
}

.header-img-mobile {
  width: 100%;
}

.header-mobile .header-content {
  padding: 40px 0 40px 36vw;
}

.header-mobile .header-content h1 .big-copy {
  font-size: 42px;
}

.header-mobile .header-content h1 {
  font-size: 30px;
}
.header-mobile .header-content h1 span {
  font-size: 24px;
}

.header-mobile .header-content .sponsor {
  width: 90%;
}

.second-section {
  font-family: "Gotham Bold", sans-serif;
}
.second-section h1 {
  color: var(--primary-yellow);
  font-family: "Gotham Black", sans-serif;
  font-weight: 700;
}

.second-section .description {
  color: var(--text-light);
}

.second-section .description span {
  font-weight: 700;
}

.second-section .description .ball {
  width: 50%;
  object-fit: contain;
}

.second-section .description p {
  font-family: "Gotham", sans-serif;
  font-size: 25px;
  font-weight: 300;
}

.second-section .description p span {
    font-family: "Gotham Bold", sans-serif;
}

.video-section {
  display: flex;
  flex-direction: column;
  font-family: "Gotham Bold", sans-serif;
}

.video-section h1 {
  color: var(--primary-blue);
  text-align: center;
  font-weight: 700;
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-top: 80px;
  font-family: "Gotham Black", sans-serif;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 60px 0 20px;
  column-gap: 7.6vw;
  row-gap: 3.4vw;
  max-width: 1300px;
  margin: 0 auto;
}

.video-card {
  text-align: left;
  flex: 1;
  width: 100%;
  margin: 0 auto;
  width: 100%;
}

.video-thumbnail {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 0.9rem;
  cursor: pointer;
  transition: transform 0.2s ease;
  width: 100%;
}

.video-thumbnail:hover {
  transform: scale(1.02);
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 5vw;
  height: 5vw;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.video-card h3 {
  color: var(--primary-blue);
  font-family: "Gotham Bold", sans-serif;
  font-size: 41px;
  margin: 34px 0;
  font-weight: 700;
  line-height: 2.1rem;
}

.video-card p {
  font-family: "Gotham", sans-serif;
  color: var(--primary-blue);
  font-size: 28px;
  line-height: 1.2;
  font-weight: 300;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 2000;
}

.modal-content {
  position: fixed;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 95%;
  max-width: 1000px;
  margin: 3.1 auto;
  background-color: #fff;
  padding: 2.2rem;
  border-radius: 0.95rem;
}

.close-modal {
  position: absolute;
  right: 0.9rem;
  top: -0.62rem;
  font-size: 2.2rem;
  cursor: pointer;
  z-index: 10;
  color: var(--text-dark);
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 0.9rem;
}

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

.social-parent {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  margin-bottom: 1.25rem;
}

.social-content {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  align-items: center;
  height: 100%;
}

.social-text {
  font-size: 20px;
  color: var(--primary-blue);
  font-weight: 700;
  margin: 0;
}

.social-icons {
  display: flex;
  gap: 0.62rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  cursor: pointer;
}

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

.footer {
  width: 100%;
  background-color: #a2a2a2;
  color: var(--text-light);
  padding: 1.5rem 6rem;
  text-align: center;
  display: flex;
  justify-content: center;
}

.footer-links {
  max-width: 56.25rem;
  display: flex;
  flex-wrap: wrap;
  flex: 1;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
}

.footer-links a,
.footer-links span {
  font-family: "Gotham", sans-serif;
  color: var(--text-light);
  text-decoration: none;
  margin-bottom: 10px;
}

.cookie-preferences {
  background: none;
  border: none;
  color: var(--text-dark);
  cursor: pointer;
  font-size: 0.9rem;
}

.football-LP-slider {
  padding: 0 30px;
}

.football-LP-slider img {
  max-width: 100%;
}

.football-LP-slider .slick-slide {
  padding: 40px 20px;
}

.slick-nav button.custom-prev,
.slick-nav button.custom-next {
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}

.slick-nav .custom-prev::before,
.slick-nav .custom-next::before {
  content: "";
  display: block;
  width: 44px;
  height: 44px;
  background-image: url("../img/homepage-2025/arrow.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.slick-nav .custom-prev::before {
  transform: rotateY(180deg);
}

.fotbal-lp-descopera {
  font-family: "Gotham Bold", sans-serif;
  color: var(--primary-blue);
}

.descopera-container h2 {
  font-size: 30px;
  font-weight: 700;
}

.descopera-container a {
  margin-bottom: 80px;
  font-weight: 700;
  text-transform: none;
  background-color: var(--primary-blue);
  border-radius: 25px;
}

@media (max-width: 767.98px) {
  .second-section h1 {
    font-size: 30px;
  }
  .second-section .description p {
    font-size: 20px;
  }

 


  .second-section .description .ball {
    width: 50%;
    object-fit: contain;
    margin: 0 auto -100px;
  }


  .video-section h1 {
    margin-top: 90px;
    font-size: 1.3rem;
  }
  .video-grid {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 5vw;
    padding: 60px 30px 20px;
  }
  .video-card h3 {
    font-size: 30px;
    margin: 20px 0;
  }
  .video-card p {
    font-size: 1.3rem;
    margin: 20px 0;
  }
  .play-button {
    width: 15vw;
    height: auto;
  }
  .football-LP-slider .slick-slide {
    padding: 0;
  }
  .slick-nav .custom-next::before {
    margin-left: 10px;
  }
  .footer {
    padding: 1rem;
  }

  .footer-links {
    font-size: 0.4rem;
  }

  .descopera-container h2 {
    font-size: 20px;
  }

  .descopera-container a {
    font-size: 25px;
  }
}
