body {
    font-family: 'Poppins', sans-serif; 
}

body {
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-image: url(../img/bg1.webp);
    background-position: center;
    background-size: cover; /* This will ensure the entire image is visible */
    background-repeat: no-repeat; /* This will prevent the image from repeating */
    background-attachment: fixed; /* This will make the background static */
    position: relative;
}

body#football-tournament {
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-image: url(../img/vid1.mp4);
    background-position: center;
    background-size: cover; /* This will ensure the entire image is visible */
    background-repeat: no-repeat; /* This will prevent the image from repeating */
    background-attachment: fixed; /* This will make the background static */
    position: relative;
}

a:hover{
    text-decoration: none;
}
 
.sticky-footer {
    background-color: #e8ad0a;
    color: #af1315;
    text-align: center;
    padding: 10px 0;
    margin-top: auto;   
}
 
.sticky-footer a {
    color: #e8ad0a;
    text-decoration: none;
    margin: 0 5px;
}
 
.form-control.custom-input {
    line-height: 50px;
    background: #fafafa;
    -webkit-box-shadow: inset 0 1px 3px 0 rgba(0,0,0,.08);
    -moz-box-shadow: inset 0 1px 3px 0 rgba(0,0,0,.08);
    box-shadow: inset 0 1px 3px 0 rgba(0,0,0,.08);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border: none !important;
    border-radius: 5px;
    padding: 0 20px;
    font-size: 16px;
    color: #666;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    -moz-transition: all .4s ease;
    transition: all .4s ease;
}
.form-control.custom-input:focus {
    border-color: #80bdff;
    box-shadow: none;
}

.registration .registration-logo{
    max-width: 500px;
    margin: 0 auto;
    display: table;
    width:100%;
}

.register-form{
    max-width: 800px;
    display: table;
    margin: 0 auto;
    width: 100%;
    background-color: white;
    padding: 57px 65px;
    padding-bottom: 65px;
    webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    -webkit-box-shadow: 0 8px 20px 0 rgba(0,0,0,.15);
    -moz-box-shadow: 0 8px 20px 0 rgba(0,0,0,.15);
    box-shadow: 0 8px 20px 0 rgba(0,0,0,.15);
}


.pop-message{
    max-width: 300px;
    text-align: center;
    display: table;
    margin: 10px auto;
} 

.homepage-video-top iframe{
    width: 100%;
}

.homepage-logo{
    max-width: 500px;
    margin: 0 auto;
    display: table;
    width:100%;

}

.homepage-buttons .custom-button {
    background-color: transparent;
    
    border-radius: 50px; 
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none; 
    
    font-size: 16px; 
}

.homepage-buttons .custom-button.red{
    border: 3px solid rgb(199, 67, 0);
    background: rgb(199, 67, 0);
    color: #e6c318;
    font-weight: 600;
} 

.homepage-buttons .custom-button.orange{
    border: 3px solid rgb(230, 195, 23);
    background: rgb(230, 195, 23);
    color: #c74200;
    font-weight: 600;
} 

.homepage-buttons .custom-button:hover {
    background-color: rgb(200, 72, 105);
    border: 3px solid rgb(199, 67, 0);
    border-radius: 10px; 
    color: white; 
} 

.vh-100 {
    min-height: 100vh;
}

.no-padding {
    padding-left: 0;
    padding-right: 0;
}
.center-content {
    padding-left: 15px;   
    padding-right: 15px; 
}

.homepage-sports img{
    max-width: 170px !important;
    width: 100% !important;
}

.center-container {
    display: flex;
    justify-content: center;
    align-items: center; 
}

.custom-download-btn {
    display: inline-block;
    padding: 10px 20px;
    /*background-color: rgb(226, 181, 47);
    color: #fff;*/
    font-size: 22px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.custom-download-btn:hover {
    background-color: rgb(41, 136, 121);
    text-decoration: none; 
    color: white; 
}

.homepage-organizers img{
    max-width: 450px;
    width: 100%;
}

.homepage-platinum img{
    width: 100%;
    max-width: 400px;
}

input[type="checkbox"] {
    display: none;
}

input[type="checkbox"] + label {
    font-size: 16px;
    position: relative;
    cursor: pointer;
    padding-left: 30px;
}

input[type="checkbox"] + label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 2px solid #e8ad0a;
    border-radius: 4px;
    background-color: transparent;
    transition: all 0.3s;
}

input[type="checkbox"]:checked + label::before {
    background-color: #e8ad0a;
    border-color: #e8ad0a;
    box-shadow: 0 0 10px #c59208;
}

input[type="checkbox"] + label::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 47%;
    transform: translateY(-50%) rotate(-45deg);
    width: 10px;
    height: 5px;
    border-bottom: 2px solid #af1315;
    border-left: 2px solid #af1315;
    opacity: 0;
    transition: opacity 0.3s;
}

input[type="checkbox"]:checked + label::after {
    opacity: 1;
}

input[type="checkbox"]:focus + label::before {
    box-shadow: 0 0 0 3px #f6ba13;
}

input[type="checkbox"]:active + label::before {
    color: #fff;
    background-color: #af1315;
    border-color: #af1315;
}

label {
    margin-bottom: 15px;
}

#sidebarMenu .nav .nav-item {
    color: black;
}

#sidebarMenu .nav .nav-link{
    color: black;
}

#sidebarMenu .navbar-toggler-icon {
    background-color: white;
}


.orange-btn {
    background-color: #e8ad0a;
    color: #af1315;
}