@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
:root {
  --primary-color: #be1d21;
  --secondary-color: #e64749;
  --tertiary-color: #fff;
  --quaternary-color: #f7e5e5;
}

body {
  margin: 0px;
  font-family: "Open Sans", sans-serif;
}

.container {
  width: calc(100% - 30px);
  max-width: 1200px;
  margin: 0 auto;
}

.nf-form-fields-required {
  display: none;
}

.nf-form-content input[type=submit] {
  background: var(--secondary-color) !important;
}

.nf-form-content input[type=submit]:hover {
  color: var(--tertiary-color) !important;
  cursor: pointer;
  opacity: 0.8;
}

.spacer {
  height: 125px;
  width: 100%;
}

header .top-bar {
  background-color: var(--primary-color);
  color: var(--tertiary-color);
  padding: 10px 0px;
}
header .top-bar .container {
  display: flex;
  justify-content: right;
  gap: 25px;
}
header .top-bar ul {
  display: flex;
  list-style-type: none;
  gap: 25px;
  margin-block-start: 0px;
  margin-block-end: 0px;
  padding-inline-start: 0px;
  justify-content: flex-end;
}
header .top-bar a {
  color: var(--tertiary-color);
}
header .top-bar .socials {
  padding: 0px 50px 0px 0px;
}
header .top-bar .socials ul {
  gap: 15px;
}
header .top-bar .socials i {
  font-size: 20px;
}
header .main-bar {
  position: relative;
}
header .main-bar .logo {
  width: 175px;
  height: 175px;
  border-radius: 50%;
  background-color: var(--tertiary-color);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: absolute;
  top: -25px;
  z-index: 999;
}
@media (max-width: 600px) {
  header .main-bar .logo {
    width: 125px;
    height: 125px;
  }
}
header .main-bar .logo img {
  width: 65%;
  height: auto;
}
@media (max-width: 600px) {
  header .main-bar .logo img {
    width: 50%;
  }
}
header .main-bar .logo a {
  text-align: center;
}
header .main-bar .content {
  padding: 0px 50px;
}
header .main-bar ul {
  display: flex;
  margin-block-start: 0px;
  margin-block-end: 0px;
  padding-inline-start: 0px;
  gap: 25px;
  list-style-type: none;
  justify-content: flex-end;
  padding: 20px 0px;
}
header .main-bar ul a {
  font-weight: 700;
  color: var(--primary-color);
}

.hero {
  margin-bottom: 50px;
}
.hero .image {
  width: 100%;
  height: 500px;
  background-position: center center;
}
@media (max-width: 1200px) {
  .hero .image {
    height: 400px;
  }
}
@media (max-width: 900px) {
  .hero .image {
    height: 300px;
  }
}

.hamburger-menu {
  display: none;
}
@media (max-width: 900px) {
  .hamburger-menu {
    display: block;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  justify-content: center;
  text-align: center;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
  z-index: 9999;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateY(0);
}
.mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-menu li {
  margin: 1rem 0;
  font-size: 1.6rem;
  font-weight: 500;
}
.mobile-menu a {
  color: #000;
  text-decoration: none;
  transition: color 0.2s ease;
}
.mobile-menu a:hover {
  color: #f05a28; /* voorbeeld highlight kleur */
}
.mobile-menu ul {
  gap: 0px !important;
  flex-direction: column;
}
.mobile-menu ul ul {
  margin-top: 0.5rem;
  font-size: 1.3rem;
}
.mobile-menu ul ul li {
  margin: 0.3rem 0;
}
.mobile-menu .close-menu {
  position: absolute;
  top: 1.5rem;
  right: 88px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #000;
  cursor: pointer;
}
.mobile-menu .sub-menu {
  display: block !important;
  position: unset;
  background-color: unset;
}

.mobile-menu-nav {
  padding: 100px 0px;
}

.sub-menu {
  display: none !important;
  position: absolute;
  background-color: #fff;
  padding: 0px 25px 25px 25px !important;
  left: -25px;
  top: 40px;
  width: 250px;
}

.sub-menu li {
  margin-bottom: 5px;
  font-weight: 200;
}

.sub-menu li a {
  font-weight: 400 !important;
}

.menu li {
  position: relative;
}

.menu li a {
  padding-bottom: 25px;
}

.menu li:hover > .sub-menu {
  display: block !important;
}

ul li {
  line-height: 30px;
}

footer .main-menu {
  background-color: var(--primary-color);
  border-bottom: 30px solid var(--secondary-color);
  color: var(--tertiary-color);
}
footer .main-menu .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 100px 0px;
}
@media (max-width: 900px) {
  footer .main-menu .container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    text-align: center;
  }
}
footer .main-menu a {
  color: var(--tertiary-color);
}
footer .main-menu ul {
  margin-block-start: 0;
  margin-block-end: 0;
  padding-inline-start: 0;
  list-style-type: none;
}
footer .main-menu li {
  margin-bottom: 5px;
}
footer .main-menu li:last-of-type {
  margin-bottom: 0px;
}
@media (max-width: 900px) {
  footer .main-menu .quick-to {
    margin-bottom: 50px;
  }
}
footer .main-menu .quick-to a:before {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 8px;
  display: inline-block;
}
@media (max-width: 900px) {
  footer .main-menu .quick-to a:before {
    content: "";
  }
}
footer .main-menu .socials ul {
  display: flex;
  gap: 20px;
}
@media (max-width: 900px) {
  footer .main-menu .socials ul {
    justify-content: center;
  }
}
footer .main-menu .socials ul i {
  font-size: 30px;
}
footer .main-menu .logo {
  margin-right: 100px;
  text-align: right;
}
@media (max-width: 900px) {
  footer .main-menu .logo {
    margin-right: 0px;
    text-align: center;
    margin-bottom: 50px;
  }
}
footer .main-menu .logo img {
  width: 125px;
}
footer .main-menu .info {
  margin-bottom: 25px;
}
footer .bottom-menu {
  text-align: center;
  margin: 25px 0px 10px 0px;
}
footer .bottom-menu a {
  color: var(--primary-color);
}

h1, h2, h3, h4, h5, h6 {
  margin-block-start: 0;
  margin-block-end: 0;
  margin-bottom: 20px;
  font-weight: 900;
  color: var(--secondary-color);
}

p {
  margin-block-start: 0;
  margin-block-end: 0;
  margin-bottom: 20px;
  line-height: 30px;
}

p:last-of-type {
  margin-bottom: 0px;
}

a {
  transition: 125ms ease-in-out;
  text-decoration: none;
  color: var(--secondary-color);
}
a:hover {
  opacity: 0.8;
}

section.text.blue {
  background-color: var(--quaternary-color);
}
section.text.blue .container {
  padding: 100px 0px;
}
section.text .button {
  margin-top: 25px;
}
section.text .button a {
  text-decoration: underline;
}
section.text .button a:after {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  display: inline-block;
  text-decoration: underline;
  font-size: 10px;
}

.text-image .content,
.image-text .content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 100px;
  align-items: stretch;
}
@media (max-width: 900px) {
  .text-image .content,
  .image-text .content {
    display: flex;
    flex-direction: column;
    gap: 50px;
  }
}
.text-image .content .text,
.image-text .content .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.text-image .content .image,
.image-text .content .image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100%;
  height: 100%;
  width: 100%;
  min-height: 300px;
}
@media (max-width: 900px) {
  .text-image .content .image,
  .image-text .content .image {
    height: 450px;
  }
}
@media (max-width: 600px) {
  .text-image .content .image,
  .image-text .content .image {
    height: 100%;
  }
}
.text-image .content .button,
.image-text .content .button {
  margin-top: 25px;
}
.text-image .content .button a,
.image-text .content .button a {
  text-decoration: underline;
}
.text-image .content .button a:after,
.image-text .content .button a:after {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  display: inline-block;
  font-size: 10px;
  margin-left: 5px;
}

@media (max-width: 900px) {
  .image-text .text,
  .text-image .text {
    order: 1;
  }
}

@media (max-width: 900px) {
  .image-text .image,
  .text-image .image {
    order: 2;
  }
}

.text-and-quick-links .text-and-quick-links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 100px;
}
@media (max-width: 900px) {
  .text-and-quick-links .text-and-quick-links-grid {
    display: block;
  }
}
@media (max-width: 900px) {
  .text-and-quick-links .text-and-quick-links-grid .content {
    margin-bottom: 50px;
  }
}
.text-and-quick-links .text-and-quick-links-grid .content .button {
  margin-top: 25px;
}
.text-and-quick-links .text-and-quick-links-grid .content .button a {
  text-decoration: underline;
}
.text-and-quick-links .text-and-quick-links-grid .content .button a:after {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  display: inline-block;
  font-size: 10px;
  margin-left: 5px;
}
.text-and-quick-links .quick-links {
  background-color: var(--quaternary-color);
}
.text-and-quick-links .quick-links a {
  display: flex;
  gap: 10px;
  background-color: var(--secondary-color);
  padding: 10px 20px;
  margin-bottom: 20px;
}
.text-and-quick-links .quick-links .link:last-of-type a {
  margin-bottom: 0;
}
.text-and-quick-links .quick-links .links {
  padding: 25px 25px;
}
.text-and-quick-links .quick-links i {
  color: var(--tertiary-color);
  font-size: 20px;
}
.text-and-quick-links .quick-links .icon {
  width: 40px;
  border-right: 1px solid var(--tertiary-color);
}
.text-and-quick-links .quick-links .text {
  color: var(--tertiary-color);
  text-transform: uppercase;
  margin-left: 10px;
}

.single-news {
  margin-bottom: 50px;
}
.single-news .image {
  width: 100%;
  height: 500px;
  background-position: center center;
  margin-bottom: 50px;
}
@media (max-width: 1200px) {
  .single-news .image {
    height: 400px;
  }
}
@media (max-width: 900px) {
  .single-news .image {
    height: 300px;
  }
}

.contact {
  margin-bottom: 100px;
}
.contact #map {
  margin-bottom: 50px;
}
.contact .intro {
  margin-bottom: 50px;
}
.contact .contact-info {
  padding: 25px;
  border-left: 1px solid var(--secondary-color);
}
.contact .contact-info h2 {
  color: var(--secondary-color);
  border-bottom: 1px solid var(--secondary-color);
  margin-bottom: 20px;
  padding-bottom: 5px;
}
.contact .contact-info h3 {
  color: var(--secondary-color);
  margin-bottom: 0px;
}
.contact .contact-info p {
  margin-bottom: 0;
}
.contact .contact-info p:last-of-type {
  margin-bottom: 20px;
}
.contact .contact-info a {
  color: var(--secondary-color);
}

.map {
  height: 400px;
  width: 100%;
}

.team .team-photo {
  margin-bottom: 50px;
}
.team .team-photo img {
  width: 100%;
}
.team .players {
  margin-bottom: 50px;
}
.team .players h2 {
  margin-bottom: 50px;
}
.team .players .players-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 50px;
}
@media (max-width: 900px) {
  .team .players .players-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 600px) {
  .team .players .players-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.team .players .players-grid .player {
  text-align: center;
  color: #5f5f5f;
}
.team .players .players-grid .player img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  border: 1px solid #bfbfbf;
}
.team .players .players-grid .player .name {
  margin-top: 10px;
}
.team .program .date p:nth-child(even),
.team .program .match p:nth-child(even),
.team .program .results p:nth-child(even) {
  background-color: #3F4F88;
}
.team .program {
  justify-content: space-between;
  background-color: #23326B;
  padding: 25px 50px;
  color: #fff;
  margin-bottom: 50px;
}
@media (max-width: 900px) {
  .team .program {
    padding: 25px 0px;
  }
}
.team .program .matches {
  display: flex !important;
}
@media (max-width: 900px) {
  .team .program .matches {
    flex-direction: column;
  }
}
.team .program .matches h2 {
  margin-bottom: 10px;
  font-size: 16px;
  color: #fff;
}
.team .program h2 {
  color: #fff;
}
.team .program p {
  margin-bottom: 0px;
}
.team .program p:last-of-type {
  margin-bottom: 20px;
}
.team .program .date,
.team .program .match,
.team .program .result {
  flex: 1;
}
.team .date h2 {
  padding-left: 15px;
}
.team .results h2 {
  padding-right: 15px;
}
.team .match-results .date p:nth-child(even),
.team .match-results .match p:nth-child(even),
.team .match-results .results p:nth-child(even) {
  background-color: rgb(243, 243, 243);
}
.team .match-results {
  justify-content: space-between;
  padding: 25px 50px;
}
.team .match-results .matches {
  display: flex;
}
.team .match-results .matches h2 {
  margin: 0;
  font-size: 16px;
  margin-bottom: 10px;
}
.team .match-results p {
  margin-bottom: 0px;
}
.team .match-results p:last-of-type {
  margin-bottom: 20px;
}
.team .match-results .date,
.team .match-results .match,
.team .match-results .result {
  flex: 1;
}
.team .standings {
  margin: 0 auto;
  margin-bottom: 50px;
}
.team .standings h2 {
  margin-bottom: 20px;
}
.team .standings .teams-grid {
  display: flex;
  gap: 40px;
  justify-content: space-between;
}
@media (max-width: 600px) {
  .team .standings .teams-grid {
    display: block;
  }
}
.team .standings .column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.team .standings .team {
  display: flex;
  justify-content: space-between;
  padding: 10px 15px;
  background-color: #f5f5f5;
  border-radius: 5px;
  font-weight: 600;
}
.team .standings .team .team-name {
  flex: 1;
}
.team .standings .team .points {
  width: 30px;
  text-align: right;
}

@media (max-width: 900px) {
  .program h2.title {
    padding-left: 10px;
  }
}
@media (min-width: 901px) {
  .program h2.title {
    padding-left: 15px;
  }
}

@media (max-width: 900px) {
  .desktop-program {
    display: none !important;
  }
}

@media (min-width: 901px) {
  .mobile-program {
    display: none !important;
  }
}

@media (max-width: 900px) {
  .matches {
    display: block;
  }
}

@media (max-width: 900px) {
  .match-info {
    display: grid;
    grid-template-columns: 0.5fr 2fr 0.5fr;
    text-align: left;
    padding: 5px 10px;
  }
}
@media (max-width: 600px) {
  .match-info {
    display: flex;
    grid-template-columns: 0.5fr 2fr 0.5fr;
    text-align: left;
    padding: 5px 10px;
    flex-direction: column;
  }
}
@media (max-width: 600px) {
  .match-info .time {
    order: 3;
  }
}
@media (max-width: 900px) {
  .match-info .teams {
    font-weight: 900;
  }
}

@media (max-width: 900px) {
  .mobile-program .match-info:nth-child(even) {
    background-color: #3F4F88;
  }
}

@media (max-width: 900px) {
  .team .program .date, .team .program .match, .team .program .result {
    flex: unset;
  }
}

@media (max-width: 900px) {
  .date {
    text-decoration: underline;
  }
}
@media (max-width: 600px) {
  .date {
    order: 2;
  }
}
@media (min-width: 901px) {
  .date p {
    padding-left: 15px;
  }
}

@media only screen and (max-width: 1200px) {
  .main-bar .container .menu {
    display: none;
  }
  .hamburger-menu {
    display: flex;
    justify-content: right;
    padding: 20px 0px;
  }
  .hamburger-menu i {
    font-size: 25px;
  }
}
@media only screen and (max-width: 900px) {
  .date .mobile-date {
    display: none;
  }
  .top-bar .content {
    display: none;
  }
}
@media only screen and (max-width: 600px) {
  .tablet-time {
    display: none;
  }
  .date .mobile-date {
    display: block;
  }
  .mobile-program .date {
    display: flex;
    text-decoration: none;
  }
  .mobile-program .mobile-date {
    margin-left: 5px;
  }
}
.news {
  margin-bottom: 50px;
}
.news .news-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 100px;
}
@media (max-width: 900px) {
  .news .news-container {
    display: block;
  }
}
.news .news-container .news-item .image {
  width: 100%;
  height: 400px;
  margin-bottom: 25px;
  background-position: center center;
}

.news-intro {
  margin-bottom: 50px;
}
