/*Color Variables*/
* {
    padding: 0;
    margin: 0;
}

:root {
    --primaryColor: #501C80;
    --secondaryColor: #280D41;
    --whiteColor: #E3E3E3;
    --headerFont: 'Saira Stencil One', sans-serif;
}

details > summary {
  list-style: none;
}
details > summary::-webkit-details-marker {
  display: none;
}


h1, h2, h3, h4, h5, h6, th {
  font-family: var(--headerFont);
}

p {
    font-size: 1.2em;
}

.navbar {
    background: var(--primaryColor);
}

.nav-width {
    max-width: 1140px;
}

.logo {
    max-width: 75px;
}

.nav-link-custom {
    font-family: var(--headerFont);
    font-size: 1.2em;
    color: var(--whiteColor);
    text-decoration: none;
}

.dropdown-custom {
    width: 200px;
    background: var(--primaryColor) ;
    box-shadow: 0 0px 8px 0 #00000044;
}

.bg-primary-custom {
    background: var(--primaryColor);
}
.carousel-images {
    aspect-ratio: 16/8;
    object-fit: cover;
    filter: brightness(30%);
}

.carousel-caption-custom {
    flex-direction: column;
    gap: 20px;
    position: absolute;
    top: 40%;
    left: 50%;
    color: var(--whiteColor);
    transform: translate(-50%, -50%);
    justify-content: space-between;
    align-items: center;
}

.carousel-caption-custom h2{
    font-size: 3em;
    text-align: center;
}

.carousel-button-container {
    display: flex;
    gap: 1em;
    width: 50%;
    margin: 20px auto;
}

.carousel-button-1 {
    background: var(--primaryColor);
    text-align: center;
    width: 50%;
    padding: 0.5em 0;
    min-width: 115px;
}

.carousel-button-2 {
    background: var(--whiteColor);
    text-align: center;
    width: 50%;
    padding: 0.5em 0;
    min-width: 115px;
}

.carousel-button-1 a{
    text-decoration: none;
    color: var(--whiteColor);
    font-family: var(--headerFont);
    font-size: 1.2em;
}

.carousel-button-2 a {
    text-decoration: none;
    color: var(--primaryColor);
    font-family: var(--headerFont);
    font-size: 1.2em;
}

.carousel-button-1:hover{
    background: var(--whiteColor);
    transition-duration: 500ms;
}

.carousel-button-2:hover{
    background: var(--primaryColor);
    transition-duration: 500ms;
}

.carousel-button-1:hover a {
    color: var(--primaryColor);
}

.carousel-button-2:hover a {
    color: var(--whiteColor);
}

.carousel-icon-arrows {
    display: block;
    width: 3em;
    height: 3em;
}

.learn-more-container h2{
    font-size: 2.5em;
}

.learn-more-button {
    background: var(--primaryColor);
    text-align: center;
    padding: 0.5em 2em;
}

.learn-more-button:hover {
    background: var(--whiteColor);
    transition-duration: 500ms;
}

.learn-more-button a {
    text-decoration: none;
    color: var(--whiteColor);
    font-family: var(--headerFont);
    font-size: 1.2em;
}

.learn-more-button:hover a {
    color: var(--primaryColor);
}

.home-bracket-container img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    z-index: -1;
}

.home-bracket-container > div {
    top: 65%;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
}

.image-caption-heading {
    background: var(--primaryColor);
    color: var(--whiteColor);
    display: flex;
    margin: 0;
    width: max-content;
    padding:5px 15px;
}

@media(max-width: 1250px){
    .home-bracket-container > div {
        position: relative;
        display: grid;
    }
}

.image-caption-description {
    background: #fff;
    padding: 5px 10px;
}

.image-caption-description p a {
    font-size: clamp(1.2rem, 2vw, 2rem);
    color: var(--secondaryColor);
    text-decoration: none;
}

.image-caption-description p a:hover {
    text-decoration: underline;
}

.home-lowlight-container {
    background: var(--secondaryColor);
    color: var(--whiteColor);
    box-shadow: 0 0 20px 0 #000;
}

.home-lowlight {
    aspect-ratio: 1;
    object-fit: cover;
}

.home-feature-images img{
    aspect-ratio: 4/3;
    object-fit: cover;
    box-shadow: 0 0 15px 0 #00000088;
}

.contacts-section {
    display: flex;
    flex-direction: column;
}

.contacts-icons {
    font-size: 2rem;
    background: var(--primaryColor);
    color: #fff;
    padding: 10px;
    width: 75px;
    border-radius: 50%;
    aspect-ratio:1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-contact-form {
    background: var(--primaryColor);
    color: var(--whiteColor);
    box-shadow: 0 0 10px 0 #000;
}

.contacts-section iframe{
    box-shadow: 0 0 15px 0 #00000055;
}

.home-contact-form span{
    background: var(--whiteColor);
    color: var(--primaryColor);
    font-family: var(--headerFont);
    width: 50%;
    padding: 5px 0;
    font-size: 1.2rem;
}

.home-contact-form p{
    font-size: 1rem;
    font-weight: 500;
    font-family: var(--headerFont)
}


.form-control {
    border-radius: 0;
}

/*About Us Page*/

.about-us-body{
    background: var(--primaryColor);
}

.about-us-grass-image {
    aspect-ratio: 16/6;
    background: url("../images/grass-image.jpg");
    background-size: cover;
    background-position: center;
    color: var(--whiteColor);
}

.about-us-grass-image h2{
    font-size: 4rem;
    backdrop-filter:blur(5px);
    width: 100%;
    text-align: center;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-us-container {
    transform: translateY(-10rem);
}

.about-us-box {
    aspect-ratio: 1;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.about-us-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-us-info {
    padding: 5em;
    background: var(--whiteColor);
}


/*Roster Page Custom CSS*/

.roster-container div > h2 {
    text-align: center;
    font-size: 2.5em;
}

/*Balon D'or costum css*/

.balon-dor-container > h2{
    font-size: 3em
}

.balon-dor-container img {
    min-width: 300px;
}

@media(max-width: 995px) {
    
    .row-even {
        display: flex;
        flex-direction: column-reverse;
        align-items: center
    }
}

/*Golden Boot*/
.balon-dor-info{
    background: var(--secondaryColor);
    color: var(--whiteColor);
}

.balon-dor-info h2 {
    font-size: clamp(3rem, 5vw, 4rem);
}


/*Tournoment Page Costum CSS*/

.tournament-info-section {
    margin-bottom: 1em;
    padding: 1em;
    display: none;
}

.active {
    display: block;
}

.tournament-container {
    box-shadow: 0 0 15px 2px #00000055;
}

.tournament-container img{
    max-height: 60px;
    margin:10px; 
}

.tournament-nav-custom {
    font-family: var(--headerFont);
    font-size: 1.2em;
    color: var(--whiteColor);
    text-decoration: none;
    width: 100%;
    background: var(--primaryColor);
}

.tournament-nav-custom:hover {
    background: var(--secondaryColor);
    color: var(--whiteColor);
}

@media(max-width:575px){
    .tournament-container img{
        display: none
    }
}

/*Highlights page costum css*/


.highlights-info-section {
    display: none;
    margin-bottom: 1em;
    padding: 1em;
    text-align: center;
}
.active {
    display: block;
}

.highlights-container {
    box-shadow: 0 0 15px 2px #00000055;
}

.highlights-container img{
    max-height: 60px;
    margin:10px; 
}

.highlights-info-section video {
    width: 50%;
}

.highlights-info-section h4 {
    margin: 0.5rem;
}

.highlights-nav-custom {
    font-family: var(--headerFont);
    font-size: 1.2em;
    color: var(--whiteColor);
    text-decoration: none;
    border: solid 2px #fff;
    background: var(--primaryColor);
}

.highlights-nav-custom:hover {
    background: var(--secondaryColor);
    color: var(--whiteColor);
}

@media(max-width:575px){
    .highlights-container img{
        display: none
    }
}

/*Footer costum css*/

.footer-custom {
    background: var(--secondaryColor);
}
.footer-custom li {
    list-style: none;
}

.footer-logo {
    max-width: 150px;
}
.footer-media{
    background: var(--primaryColor);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 3em;
    aspect-ratio: 1;
}

.footer-media i {
    color: var(--whiteColor);
    font-size: 1.8rem;
}

.footer-media:hover {
    transform: scale(1.2);
}

.footer-bottom-nav {
    border-top: 1px solid var(--primaryColor);
    padding: 1em;
}