/* ---------------------------------------------------------- COMMON CSS ----------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    background-color: #141414;
    color: white;
    font-family: "Exo 2", sans-serif;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}

section {
    padding: 2.5% 7.5%;
}

@media (max-width: 768px) {
    section {
        padding: 2.5% 5%;
    }
}

div {
    /* border: red solid 1px; */
}

/* NAVBAR STYLESHEET */
nav {
    width: 90%;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: -5px;
    left: 0;
    padding: 0 5%;
    background-color: #0000;
    z-index: 100;
    transition: background-color 0.3s ease;
}

.scrolled {
    background-color: black !important;
}

.logo-container img {
    width: 125px;
}

.menu-container {
    display: flex;
    list-style: none;
    gap: 20px;
}

/* Style for active link */
.menu-container .link.active {
    color: #ff0000;
    /* Change to your desired color */
    font-weight: bold;
}

/* Optional: Style the list item inside the active link */
.menu-container .link.active li {
    color: inherit;
    /* Inherits color from the .active class */
}

.menu-container a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    padding: 10px;
}

.menu-container a:hover {
    color: #009dff;
}

.button-container button {
    padding: 10px 15px;
    border-radius: 10px;
    background-color: #009dff;
    color: white;
    border: none;
    cursor: pointer;
}

.button-container button:hover {
    background-color: #007acc;
}

/* Burger Menu Styles */
.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px;
    transition: 0.3s;
}

/* Mobile View */
@media (max-width: 768px) {
    nav {
        width: 90%;
        height: 75px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: fixed;
        top: 0;
        left: 0;
        padding: 0 5%;
        background-color: #000000;
        z-index: 100;
        transition: background-color 0.3s ease;
    }

    .scrolled {
        background-color: black !important;
    }

    .logo-container img {
        width: 100px;
    }

    .menu-container {
        display: flex;
        list-style: none;
        gap: 10px;
    }

    .menu-container {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        background-color: black;
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }

    .menu-container.active {
        display: flex;
    }

    .burger {
        display: flex;
    }
}

.active {
    color: #007acc !important;
}

/* FOOTER PAGE */
footer {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgb(92, 92, 92);
}

footer .top-footer {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid rgba(46, 46, 46, 0.534);
}

footer .top-footer .footer-logo {
    width: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
}

footer .top-footer .footer-logo img {
    width: 50%;
}

footer .top-footer .footer-address {
    width: 25%;
}

footer .top-footer .footer-email {
    width: 20%;
}

footer .top-footer .footer-phone {
    width: 20%;
}

footer .top-footer .footer-social {
    width: 15%;
}

footer .top-footer .footer-social img {
    width: 12.5%;
}

footer .bottom-footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.point-title {
    color: #0056b3;
    font-weight: bold;
}

@media (max-width: 768px) {
    footer {
        display: flex;
        flex-direction: column;
        border-top: 1px solid rgb(92, 92, 92);
    }

    footer .top-footer {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        border-bottom: 1px solid rgba(46, 46, 46, 0.534);
    }

    footer .top-footer .footer-logo {
        display: none;
    }

    footer .top-footer .footer-address {
        width: 100%;
    }

    footer .top-footer .footer-email {
        width: 100%;
    }

    footer .top-footer .footer-phone {
        width: 100%;
    }

    footer .top-footer .footer-social {
        width: 100%;
    }

    footer .top-footer .footer-social img {
        width: 12.5%;
    }

    footer .bottom-footer {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .point-title {
        display: none;
    }
}

/* ---------------------------------------------------------- INDIVIDUAL CSS ----------------------------------------------------- */
/* HOME PAGE */
#HomeVideoSection {
    background-color: black !important;
    overflow: hidden;
}

@media (max-width: 768px) {
    #HomeVideoSection {
        background-color: black !important;
    }
}

#HomeVideoSection .video-background {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -10;
}

#HomeVideoSection #bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures the video covers the entire screen */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Content styling */
#HomeVideoSection .video-content {
    /* background-color: black; */
    position: relative;
    z-index: 1;
    /* Ensure content is above the video */
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 5%;
    height: 100vh;
}

#HomeVideoSection .video-content img {
    width: 25%;
    /* Adjust as needed */
}

#HomeVideoSection .video-content h2 {
    font-size: 350%;
    font-style: italic;
    margin: 5px;
    margin-bottom: 10px;
    color: transparent;
    /* Makes the text transparent */
    -webkit-text-stroke: 2px rgb(255, 255, 255);
    /* Adds a black border around the text */
    text-shadow:
        2px 2px 0 #0000,
        /* Top-right shadow */
        -2px -2px 0 #0000,
        /* Bottom-left shadow */
        2px -2px 0 #0000,
        /* Top-left shadow */
        -2px 2px 0 #0000;
    /* Bottom-right shadow */
}

#HomeVideoSection .video-content h1 {
    font-size: 400%;
    margin: 10px;
    background: linear-gradient(90deg, #1694cf, #2daf0d, #9c27b0);
    /* Gradient colors */
    -webkit-background-clip: text;
    /* Clips the background to the text */
    background-clip: text;
    /* Standard property */
    color: transparent;
    /* Makes the text transparent to reveal the gradient */
    font-weight: bold;
    /* Optional: Adds emphasis */
}

#HomeVideoSection .video-content p {
    font-size: 150%;
    margin: 20px;
}

#HomeVideoSection .video-content a {
    background-color: rgb(7 89 133);
    /* Orange color for emphasis */
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

#HomeVideoSection .video-content a:hover {
    background-color: rgb(12 74 110);
    /* Darker shade on hover */
}

@media (max-width: 768px) {
    #HomeVideoSection .video-background {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        z-index: -10;
    }

    #HomeVideoSection #bg-video {
        min-width: 100%;
        min-height: 100%;
        object-fit: cover;
        /* Ensures the video covers the entire screen */
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 1;
    }

    /* Content styling */
    #HomeVideoSection .video-content {
        position: relative;
        z-index: 1;
        /* Ensure content is above the video */
        text-align: center;
        color: white;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        margin: 5%;
        height: 100vh;
    }

    #HomeVideoSection .video-content img {
        width: 75%;
        /* Adjust as needed */
    }

    #HomeVideoSection .video-content h2 {
        font-size: 200%;
        font-style: italic;
        margin: 5px;
        margin-bottom: 10px;
        color: transparent;
        /* Makes the text transparent */
        -webkit-text-stroke: 2px rgb(255, 255, 255);
        /* Adds a black border around the text */
        text-shadow:
            2px 2px 0 #0000,
            /* Top-right shadow */
            -2px -2px 0 #0000,
            /* Bottom-left shadow */
            2px -2px 0 #0000,
            /* Top-left shadow */
            -2px 2px 0 #0000;
        /* Bottom-right shadow */
    }

    #HomeVideoSection .video-content h1 {
        font-size: 250%;
        margin: 10px;
        background: linear-gradient(90deg, #1694cf, #2daf0d, #9c27b0);
        /* Gradient colors */
        -webkit-background-clip: text;
        /* Clips the background to the text */
        background-clip: text;
        /* Standard property */
        color: transparent;
        /* Makes the text transparent to reveal the gradient */
        font-weight: bold;
        /* Optional: Adds emphasis */
    }

    #HomeVideoSection .video-content p {
        font-size: 100%;
        margin: 5%;
    }

    #HomeVideoSection .video-content a {
        background-color: rgb(7 89 133);
        /* Orange color for emphasis */
        color: white;
        border: none;
        padding: 15px 30px;
        font-size: 1rem;
        cursor: pointer;
        border-radius: 5px;
        transition: background-color 0.3s ease;
        text-decoration: none;
    }

    #HomeVideoSection .video-content a:hover {
        background-color: rgb(12 74 110);
        /* Darker shade on hover */
    }
}

#StatisticsSection {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-wrap: wrap;
}

#StatisticsSection h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #ff5722, #e91e63, #9c27b0);
    /* Gradient colors */
    -webkit-background-clip: text;
    /* Clips the background to the text */
    background-clip: text;
    /* Standard property */
    color: transparent;
    /* Makes the text transparent to reveal the gradient */
    font-weight: bold;
    /* Optional: Adds emphasis */
}

#StatisticsSection .overview-cards {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    gap: 50px;
}

#StatisticsSection .overview-cards .overview-card {
    margin: 1%;
    width: 7.5%;
}

#StatisticsSection .overview-cards .overview-card img {
    width: 100px;
    border-radius: 50%;
}

@media (max-width: 768px) {
    #StatisticsSection {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        text-wrap: wrap;
    }

    #StatisticsSection h1 {
        font-size: 3rem;
        margin-bottom: 20px;
        background: linear-gradient(90deg, #ff5722, #e91e63, #9c27b0);
        /* Gradient colors */
        -webkit-background-clip: text;
        /* Clips the background to the text */
        background-clip: text;
        /* Standard property */
        color: transparent;
        /* Makes the text transparent to reveal the gradient */
        font-weight: bold;
        /* Optional: Adds emphasis */
    }

    #StatisticsSection .overview-cards {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        justify-content: center;
        gap: 20px;
    }

    #StatisticsSection .overview-cards .overview-card {
        margin: 2.5%;
        width: 40%;
    }

    #StatisticsSection .overview-cards .overview-card img {
        width: 100px;
        border-radius: 50%;
    }
}

#AboutSection {
    display: flex;
    flex-direction: row;
}

#AboutSection div {
    width: 50%;
}

#AboutSection .about-image {
    display: flex;
    justify-content: center;
    object-fit: cover;
    overflow: hidden;
}

#AboutSection .about-image img {
    width: 75%;
}

#AboutSection .about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
    justify-content: center;
}

#AboutSection .about-content h2,
p {
    margin: 10px;
}

#AboutSection .about-content h1 {
    font-size: 300%;
    margin: 5%;
    text-transform: uppercase;
    text-align: center;
    font-style: italic;
    background: linear-gradient(90deg, #ff5722, #e91e63, #9c27b0);
    /* Gradient colors */
    -webkit-background-clip: text;
    /* Clips the background to the text */
    background-clip: text;
    /* Standard property */
    color: transparent;
    /* Makes the text transparent to reveal the gradient */
    font-weight: bold;
    /* Optional: Adds emphasis */
}

@media (max-width: 768px) {
    #AboutSection {
        display: flex;
        flex-direction: column-reverse;
    }

    #AboutSection div {
        width: 100%;
    }

    #AboutSection .about-image {
        display: flex;
        justify-content: center;
        object-fit: cover;
        overflow: hidden;
    }

    #AboutSection .about-image img {
        width: 75%;
    }

    #AboutSection .about-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: left;
        justify-content: center;
        text-align: justify;
    }

    #AboutSection .about-content h2,
    p {
        margin: 10px;
    }

    #AboutSection .about-content h1 {
        font-size: 300%;
        margin: 5%;
        text-transform: uppercase;
        text-align: center;
        font-style: italic;
        background: linear-gradient(90deg, #ff5722, #e91e63, #9c27b0);
        /* Gradient colors */
        -webkit-background-clip: text;
        /* Clips the background to the text */
        background-clip: text;
        /* Standard property */
        color: transparent;
        /* Makes the text transparent to reveal the gradient */
        font-weight: bold;
        /* Optional: Adds emphasis */
    }
}

#EventSection {
    background: linear-gradient(to bottom, #000000, #141414) !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#EventSection h1 {
    font-size: 300%;
    margin: 5%;
    text-transform: uppercase;
    text-align: center;
    font-style: italic;
    background: linear-gradient(90deg, #ff5722, #e91e63, #9c27b0);
    /* Gradient colors */
    -webkit-background-clip: text;
    /* Clips the background to the text */
    background-clip: text;
    /* Standard property */
    color: transparent;
    /* Makes the text transparent to reveal the gradient */
    font-weight: bold;
    /* Optional: Adds emphasis */
    z-index: 1;
}

#EventSection .event-cards {
    width: 95%;
    display: flex;
    margin: 2.5%;
}

/* Event Cards Container */
#EventSection .event-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    width: 100%;
}

/* Individual Event Card */
#EventSection .event-cards .event-card {
    width: 17.5%;
    height: 17.5%;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Card Content */
#EventSection .event-cards .event-card .card-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Text Overlay */
#EventSection .event-cards .event-card .text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: rgba(0, 0, 0, 0.7);
    /* Semi-transparent black background */
    color: white;
    text-align: center;
    transition: all 0.3s ease;
}

#EventSection .event-cards .event-card .text-overlay h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

#EventSection .event-cards .event-card .text-overlay p {
    font-size: 1rem;
    opacity: 0;
    /* Initially hidden */
    transition: opacity 0.3s ease;
}

#EventSection .event-cards .event-card .text-overlay a {
    font-size: 1.rem;
    transition: opacity 0.3s ease;
    padding: 0.50rem;
    background-color: #0079c4;
    color: white;
    text-decoration: none;
    border-radius: 10px;
}

#EventSection .event-cards .event-card .text-overlay a:hover {
    transition: opacity 0.3s ease;
    background-color: #004b7a;
}

/* Hover Effect */
#EventSection .event-cards .event-card:hover .card-content img {
    transform: scale(1.1);
    /* Slightly zoom the image */
}

#EventSection .event-cards .event-card:hover .text-overlay {
    top: 0;
    /* Move overlay to cover the entire card */
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    /* Darker background on hover */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#EventSection .event-cards .event-card:hover .text-overlay h3 {
    font-size: 2rem;
    /* Increase font size on hover */
}

#EventSection .event-cards .event-card:hover .text-overlay p {
    opacity: 1;
    /* Reveal the description */
}

#EventSection .event-button {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#EventSection .event-button a {
    width: 100%;
    padding: 2.5%;
}

#EventSection .event-button a button {
    background-color: #009dff;
    border: none;
    padding: 1% 1.5%;
    border-radius: 10px;
}

#EventSection .event-button a button:hover {
    cursor: pointer;
    background-color: #0079c4;
}

.popup {
    display: none;
    position: fixed;
    z-index: 999;
    padding: 20px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    text-align: center;
}

@keyframes zoomIn {
    0% {
        transform: scale(0.7);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.popup img {
    max-width: 80%;
    max-height: 80%;
    margin-top: 50px;
    border-radius: 10px;
    animation: zoomIn 0.4s ease;
}


.popup .close {
    position: absolute;
    top: 5%;
    left: 75%;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

@media (max-width: 768px) {
    .popup img {
        max-width: 90%;
        max-height: 60%;
        margin-top: 80px;
    }

    .popup .close {
        top: 15px;
        right: 20px;
        font-size: 30px;
    }

    .card-content h3 {
        font-size: 16px;
        text-align: center;
    }

    .event-card {
        width: 100%;
        margin-bottom: 20px;
    }
}

.event-card {
    width: 23%;
    display: inline-block;
    margin: 1%;
    vertical-align: top;
}

@media (max-width: 768px) {
    .event-card {
        width: 100%;
        display: block;
    }
}


@media (max-width: 768px) {
    #EventSection {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    #EventSection h1 {
        font-size: 300%;
        margin: 5%;
        text-transform: uppercase;
        text-align: center;
        font-style: italic;
        background: linear-gradient(90deg, #ff5722, #e91e63, #9c27b0);
        /* Gradient colors */
        -webkit-background-clip: text;
        /* Clips the background to the text */
        background-clip: text;
        /* Standard property */
        color: transparent;
        /* Makes the text transparent to reveal the gradient */
        font-weight: bold;
        /* Optional: Adds emphasis */
    }

    /* Event Cards Container */
    #EventSection .event-cards {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        padding: 20px;
        width: 100%;
    }

    /* Individual Event Card */
    #EventSection .event-cards .event-card {
        width: 45%;
        height: 20%;
        overflow: hidden;
        position: relative;
        border-radius: 10px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    /* Card Content */
    #EventSection .event-cards .event-card .card-content img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    /* Text Overlay */
    #EventSection .event-cards .event-card .text-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 15px;
        background: rgba(0, 0, 0, 0.7);
        /* Semi-transparent black background */
        color: white;
        text-align: center;
        transition: all 0.3s ease;
    }

    #EventSection .event-cards .event-card .text-overlay h3 {
        font-size: 1rem;
        margin-bottom: 0px;
    }

    #EventSection .event-cards .event-card .text-overlay p {
        font-size: 0.75rem;
        opacity: 0;
        /* Initially hidden */
        transition: opacity 0.3s ease;
    }

    #EventSection .event-cards .event-card .text-overlay a {
        font-size: 0.75rem;
        transition: opacity 0.3s ease;
        padding: 0.50rem;
        background-color: #0079c4;
        color: white;
        text-decoration: none;
        border-radius: 10px;
    }

    #EventSection .event-cards .event-card .text-overlay a:hover {
        transition: opacity 0.3s ease;
        background-color: #004b7a;
    }

    /* Hover Effect */
    #EventSection .event-cards .event-card:hover .card-content img {
        transform: scale(1.1);
        /* Slightly zoom the image */
    }

    #EventSection .event-cards .event-card:hover .text-overlay {
        top: 0;
        /* Move overlay to cover the entire card */
        bottom: 0;
        background: rgba(0, 0, 0, 0.9);
        /* Darker background on hover */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    #EventSection .event-cards .event-card:hover .text-overlay h3 {
        font-size: 1.1rem;
        /* Increase font size on hover */
    }

    #EventSection .event-cards .event-card:hover .text-overlay p {
        opacity: 1;
        /* Reveal the description */
    }

    #EventSection .event-button {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    #EventSection .event-button a {
        width: 100%;
        padding: 2.5%;
    }

    #EventSection .event-button a button {
        background-color: #009dff;
        border: none;
        padding: 1% 1.5%;
        border-radius: 10px;
    }

    #EventSection .event-button a button:hover {
        cursor: pointer;
        background-color: #0079c4;
    }
}

#ExhibitorSection {}

#ExhibitorSection h1 {
    font-size: 300%;
    margin: 5%;
    text-transform: uppercase;
    text-align: center;
    font-style: italic;
    background: linear-gradient(90deg, #9c27b0, #e91e63, #ff5722);
    /* Gradient colors */
    -webkit-background-clip: text;
    /* Clips the background to the text */
    background-clip: text;
    /* Standard property */
    color: transparent;
    /* Makes the text transparent to reveal the gradient */
    font-weight: bold;
    /* Optional: Adds emphasis */
}

#ExhibitorSection .exhibitor-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#ExhibitorSection .exhibitor-cards img {
    width: 100%;
    margin-bottom: 7.5%;
}

#ExhibitorSection .exhibitor-cards .exhibitor-card {
    width: 20%;
    object-fit: cover;
    overflow: hidden;
    margin: 5px;
}

#ExhibitorSection .exhibitor-cards .exhibitor-card img {
    width: 100%;
}

@media (max-width: 768px) {
    #ExhibitorSection h1 {
        font-size: 200%;
        margin: 5%;
        text-transform: uppercase;
        text-align: center;
        font-style: italic;
        background: linear-gradient(90deg, #9c27b0, #e91e63, #ff5722);
        /* Gradient colors */
        -webkit-background-clip: text;
        /* Clips the background to the text */
        background-clip: text;
        /* Standard property */
        color: transparent;
        /* Makes the text transparent to reveal the gradient */
        font-weight: bold;
        /* Optional: Adds emphasis */
    }

    #ExhibitorSection .exhibitor-cards {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    #ExhibitorSection .exhibitor-cards .exhibitor-card {
        width: 40%;
        height: 175px;
        object-fit: cover;
        overflow: hidden;
        margin: 10px;
    }

    #ExhibitorSection .exhibitor-cards .exhibitor-card img {
        width: 100%;
    }
}

#VisitorSection {
    display: flex;
}

#VisitorSection .visitor-info {
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#VisitorSection .visitor-info h1 {
    font-size: 200%;
    margin: 5%;
    text-transform: uppercase;
    text-align: center;
    font-style: italic;
    background: linear-gradient(90deg, #9c27b0, #e91e63, #ff5722);
    /* Gradient colors */
    -webkit-background-clip: text;
    /* Clips the background to the text */
    background-clip: text;
    /* Standard property */
    color: transparent;
    /* Makes the text transparent to reveal the gradient */
    font-weight: bold;
    /* Optional: Adds emphasis */
}

#VisitorSection .visitor-info p {
    text-align: justify;
}

#VisitorSection .visitor-cards {
    width: 70%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 1.5%;
}

#VisitorSection .visitor-cards .visitor-card {
    width: 15%;
    height: 35%;
    overflow: hidden;
    object-fit: fill;
}

@media (max-width: 768px) {
    #VisitorSection {
        display: flex;
        flex-direction: column;
    }

    #VisitorSection .visitor-info {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    #VisitorSection .visitor-info h1 {
        font-size: 200%;
        margin: 5%;
        text-transform: uppercase;
        text-align: center;
        font-style: italic;
        background: linear-gradient(90deg, #9c27b0, #e91e63, #ff5722);
        /* Gradient colors */
        -webkit-background-clip: text;
        /* Clips the background to the text */
        background-clip: text;
        /* Standard property */
        color: transparent;
        /* Makes the text transparent to reveal the gradient */
        font-weight: bold;
        /* Optional: Adds emphasis */
    }

    #VisitorSection .visitor-cards {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        text-align: center;
        gap: 1.5%;
    }

    #VisitorSection .visitor-cards .visitor-card {
        width: 35%;
        height: 150px;
        overflow: hidden;
        object-fit: fill;
    }
}

#EventLocationSection {
    display: flex;
    margin-top: 5%;
}

#EventLocationSection h1 {
    font-size: 200%;
}

#EventLocationSection h1 span {
    font-size: 150%;
    text-transform: uppercase;
    text-align: left;
    background: linear-gradient(90deg, #9c27b0, #e91e63, #ff5722);
    /* Gradient colors */
    -webkit-background-clip: text;
    /* Clips the background to the text */
    background-clip: text;
    /* Standard property */
    color: transparent;
    /* Makes the text transparent to reveal the gradient */
    font-weight: bold;
    /* Optional: Adds emphasis */
}

#EventLocationSection div {
    width: 100%;
}

#EventLocationSection div iframe {
    margin: 5%;
    width: 90%;
    max-height: 300px;
    height: 100vh;
}

#EventLocationSection div .register-infos {
    display: flex;
    flex-direction: row;
}

#EventLocationSection div .register-infos {
    display: flex;
}

#EventLocationSection div .register-infos div {
    width: 50%;
}

#EventLocationSection div .register-infos .register-info {
    margin: 1.5% 10%;
}

#EventLocationSection div .register-infos .register-info .register-card {
    display: flex;
    width: 100%;
}

#EventLocationSection div .register-infos .register-button {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#EventLocationSection div .register-infos .register-button a {
    width: 100%;
}

#EventLocationSection div .register-infos .register-button a button {
    background-color: #009dff;
    border: none;
    padding: 2.5% 7.5%;
    border-radius: 15px;
    width: 50%;
    text-transform: uppercase;
    font-family: 'Exo 2';
    color: white;
}

#EventLocationSection div .register-infos .register-button a button:hover {
    cursor: pointer;
    background-color: #0079c4;
}

@media (max-width: 768px) {
    #EventLocationSection {
        display: flex;
        flex-direction: column;
        margin-top: 5%;
    }

    #EventLocationSection div h1 {
        font-size: 200%;
    }

    #EventLocationSection div h1 span {
        font-size: 150%;
        text-transform: uppercase;
        text-align: left;
        background: linear-gradient(90deg, #ff5722, #e91e63, #9c27b0);
        /* Gradient colors */
        -webkit-background-clip: text;
        /* Clips the background to the text */
        background-clip: text;
        /* Standard property */
        color: transparent;
        /* Makes the text transparent to reveal the gradient */
        font-weight: bold;
        /* Optional: Adds emphasis */
    }

    #EventLocationSection div .register-infos {
        display: flex;
        flex-direction: column;
    }

    #EventLocationSection div .register-infos div {
        width: 80%;
    }

    #EventLocationSection div .register-infos .register-info {
        margin: 1.5% 10%;
    }

    #EventLocationSection div .register-infos .register-info .register-card {
        display: flex;
        width: 100%;
    }

    #EventLocationSection div .register-infos .register-button {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        width: 100%;
    }

    #EventLocationSection div .register-infos .register-button a {
        width: 100%;
    }

    #EventLocationSection div .register-infos .register-button a button {
        background-color: #009dff;
        border: none;
        padding: 2.5% 7.5%;
        border-radius: 15px;
        width: 75%;
        text-transform: uppercase;
        font-family: 'Exo 2';
        color: white;
    }

    #EventLocationSection div .register-infos .register-button a button:hover {
        cursor: pointer;
        background-color: #0079c4;
    }
}

#RegisterSection {}

#RegisterSection h1 {
    font-size: 200%;
}

#RegisterSection h1 span {
    font-size: 150%;
    text-transform: uppercase;
    text-align: left;
    background: linear-gradient(90deg, #ff5722, #e91e63, #9c27b0);
    /* Gradient colors */
    -webkit-background-clip: text;
    /* Clips the background to the text */
    background-clip: text;
    /* Standard property */
    color: transparent;
    /* Makes the text transparent to reveal the gradient */
    font-weight: bold;
    /* Optional: Adds emphasis */
}

#RegisterSection .register-infos {
    display: flex;
    flex-direction: row;
}

#RegisterSection .register-infos {
    display: flex;
}

#RegisterSection .register-infos div {
    width: 50%;
}

#RegisterSection .register-infos .register-info {
    margin: 1.5% 10%;
}

#RegisterSection .register-infos .register-info .register-card {
    display: flex;
    width: 100%;
}

#RegisterSection .register-infos .register-button {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#RegisterSection .register-infos .register-button a {
    width: 100%;
}

#RegisterSection .register-infos .register-button a button {
    background-color: #009dff;
    border: none;
    padding: 2.5% 7.5%;
    border-radius: 15px;
    width: 50%;
    text-transform: uppercase;
    font-family: 'Exo 2';
    color: white;
}

#RegisterSection .register-infos .register-button a button:hover {
    cursor: pointer;
    background-color: #0079c4;
}

@media (max-width: 768px) {
    #RegisterSection h1 {
        font-size: 200%;
    }

    #RegisterSection h1 span {
        font-size: 150%;
        text-transform: uppercase;
        text-align: left;
        background: linear-gradient(90deg, #ff5722, #e91e63, #9c27b0);
        /* Gradient colors */
        -webkit-background-clip: text;
        /* Clips the background to the text */
        background-clip: text;
        /* Standard property */
        color: transparent;
        /* Makes the text transparent to reveal the gradient */
        font-weight: bold;
        /* Optional: Adds emphasis */
    }

    #RegisterSection .register-infos {
        display: flex;
        flex-direction: column;
    }

    #RegisterSection .register-infos div {
        width: 80%;
    }

    #RegisterSection .register-infos .register-info {
        margin: 1.5% 10%;
    }

    #RegisterSection .register-infos .register-info .register-card {
        display: flex;
        width: 100%;
    }

    #RegisterSection .register-infos .register-button {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        width: 100%;
    }

    #RegisterSection .register-infos .register-button a {
        width: 100%;
    }

    #RegisterSection .register-infos .register-button a button {
        background-color: #009dff;
        border: none;
        padding: 2.5% 7.5%;
        border-radius: 15px;
        width: 75%;
        text-transform: uppercase;
        font-family: 'Exo 2';
        color: white;
    }

    #RegisterSection .register-infos .register-button a button:hover {
        cursor: pointer;
        background-color: #0079c4;
    }
}

/* BANNER FOR ALL */
.banner {
    width: 100%;
    height: 450px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.banner-content {
    z-index: 2;
}

.path {
    font-size: 14px;
    margin-bottom: 10px;
    opacity: 0.8;
}

.banner-title {
    font-size: 36px;
    font-weight: bold;
}

@media (max-width: 768px) {
    .banner {
        width: 100%;
        height: 250px;
        background-size: cover;
        background-position: center;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        color: white;
        text-align: center;
    }

    .banner-content {
        z-index: 2;
    }

    .path {
        font-size: 14px;
        margin-bottom: 10px;
        opacity: 0.8;
    }

    .banner-title {
        font-size: 36px;
        font-weight: bold;
    }
}

/* CONTACT PAGE */
#ContactSection .page-navigation {
    display: flex;
    flex-direction: column;
}

#ContactSection .page-navigation h1 {
    text-align: center;
}

#ContactSection .page-navigation p {
    text-align: left;
}

#ContactSection .page-navigation p a {
    color: #0079c4;
    text-decoration: none;
}

#ContactSection .contact-info {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 10%;
}

#ContactSection .contact-info .contact-element {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
    gap: 20px;
}

@media (max-width: 768px) {
    #ContactSection .page-navigation {
        display: flex;
        flex-direction: column;
    }

    #ContactSection .page-navigation h1 {
        text-align: center;
    }

    #ContactSection .page-navigation p {
        text-align: left;
    }

    #ContactSection .page-navigation p a {
        color: #0079c4;
        text-decoration: none;
    }

    #ContactSection .contact-info {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        gap: 10%;
    }

    #ContactSection .contact-info .contact-element {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: left;
        gap: 20px;
        width: 98%;
        margin: 1%;
    }

    #ContactSection .contact-info .contact-element .contact-data {
        width: 100%;
    }
}

#FormSection {
    width: 85%;
    display: flex;
    flex-direction: row;
}

#FormSection .map-section {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#FormSection .map-section iframe {
    width: 90%;
    height: 100%;
    border-radius: 10px;
}

#FormSection .contact-section {
    width: 50%;
    display: flex;
    flex-direction: column;
    padding: 1% 2.5%;
}

#FormSection .contact-section h1 {
    background: linear-gradient(90deg, #ff5722, #e91e63, #9c27b0);
    /* Gradient colors */
    -webkit-background-clip: text;
    /* Clips the background to the text */
    background-clip: text;
    /* Standard property */
    color: transparent;
    /* Makes the text transparent to reveal the gradient */
    font-weight: bold;
    /* Optional: Adds emphasis */
}

#FormSection .contact-section form div {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 1%;
}

#FormSection .contact-section form {
    padding: 0%;
}

#FormSection .contact-section form div input {
    width: 98%;
    height: 30px;
    margin: 10px 0px;
    border-radius: 5px;
    border: none;
    padding-left: 10px;
    background-color: rgb(48, 48, 48);
    color: rgb(191, 191, 191);
}

#FormSection .contact-section form div textarea {
    width: 98%;
    margin: 10px 0px;
    height: 75px;
    border: none;
    resize: none;
    border-radius: 5px;
    font-size: 16px;
    padding-left: 10px;
    background-color: rgb(48, 48, 48);
    color: rgb(191, 191, 191);
}

#FormSection .contact-section form .center-button {
    width: 100%;
    justify-content: center;
    align-items: center;
}

#FormSection .contact-section form .center-button button {
    width: 40%;
    height: 30px;
    border-radius: 10px;
    border: none;
    background-color: #009dff;
    color: white;
    justify-content: center;
    align-items: center;
}

#FormSection .contact-section form .center-button button:hover {
    cursor: pointer;
    background-color: #006cae;
    transition: all ease-in-out 0.25s;
}

@media (max-width: 768px) {
    #FormSection {
        width: 90%;
        display: flex;
        flex-direction: column-reverse;
    }

    #FormSection .map-section {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #FormSection .map-section iframe {
        width: 95%;
        height: 100%;
        border-radius: 10px;
    }

    #FormSection .contact-section {
        width: 95%;
        display: flex;
        flex-direction: column;
        padding: 1% 2.5%;
    }

    #FormSection .contact-section form div {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 1%;
    }

    #FormSection .contact-section form {
        padding: 0%;
    }

    #FormSection .contact-section form div input {
        width: 95%;
        height: 30px;
        margin: 10px 0px;
        border-radius: 5px;
        border: none;
        padding-left: 10px;
    }

    #FormSection .contact-section form div textarea {
        width: 95%;
        margin: 10px 0px;
        height: 75px;
        border: none;
        resize: none;
        border-radius: 5px;
        font-size: 16px;
        padding-left: 10px;
    }

    #FormSection .contact-section form .center-button {
        width: 100%;
        justify-content: center;
        align-items: center;
    }

    #FormSection .contact-section form .center-button button {
        width: 40%;
        height: 30px;
        border-radius: 10px;
        border: none;
        background-color: #009dff;
        color: white;
        justify-content: center;
        align-items: center;
    }
}

#ContactSection .page-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#ContactSection .page-info h1 {
    font-size: 250%;
    text-transform: uppercase;
    text-align: center;
    background: linear-gradient(90deg, #ff5722, #e91e63, #9c27b0);
    /* Gradient colors */
    -webkit-background-clip: text;
    /* Clips the background to the text */
    background-clip: text;
    /* Standard property */
    color: transparent;
    /* Makes the text transparent to reveal the gradient */
    font-weight: bold;
    /* Optional: Adds emphasis */
}

/* ABOUT PAGE */
.our-values {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.our-values .value-card {
    margin: 1.5%;
    padding: 1.5%;
    width: 15%;
    border-radius: 15px;
    background-color: #252525;
}

.our-values .value-card img {
    width: 45%;
}

@media (max-width: 768px) {
    .our-values {
        width: 100%;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .our-values .value-card {
        margin: 1.5%;
        padding: 1.5%;
        width: 40%;
        border-radius: 15px;
        background-color: #252525;
    }

    .our-values .value-card img {
        width: 45%;
    }
}

#GallerySection {
    /* margin: 0%; */
    /* padding: 0%; */
    /* width: 100%; */
    width: 85%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#GallerySection div {
    width: 100%;
    display: flex;
    flex-direction: row;
}

#GallerySection div .slider-box {}

#GallerySection div .slider-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: justify;
    font-size: 105%;
    padding: 15px;
}

/* SLIDESHOW */
/* General slider styles */
.slider-container {
    position: relative;
    width: 100%;
    /* Ensures responsiveness */
    overflow: hidden;
    border-radius: 10px;
}

/* Ensure slides flex properly */
.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

/* Each slide takes full width */
.slide {
    min-width: 100%;
    box-sizing: border-box;
    object-fit: fill;
    overflow: hidden;
}

/* Image styling */
.slide img {
    width: 100%;
    height: auto;
    /* Ensures aspect ratio is maintained */
    display: block;
    object-fit: cover;
    /* Ensures image fills the container without distortion */
}

/* Dots for navigation */
.dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 10px;
}

/* Individual dot */
.dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    background-color: #bbb;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

/* Active dot styling */
.dot.active {
    background-color: #717171;
}

@media (max-width: 768px) {
    #GallerySection {
        /* margin: 0%; */
        /* padding: 0%; */
        /* width: 100%; */
        width: 90%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    #GallerySection div {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    #GallerySection div .slider-box {}

    #GallerySection div .slider-info {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    /* SLIDESHOW */
    /* General slider styles */
    .slider-container {
        position: relative;
        width: 100%;
        display: flex;
        max-width: 600px;
        /* Ensures responsiveness */
        overflow: hidden;
        border-radius: 10px;
    }

    /* Ensure slides flex properly */
    .slides {
        display: flex;
        transition: transform 0.5s ease-in-out;
        will-change: transform;
    }

    /* Each slide takes full width */
    .slide {
        min-width: 100%;
        box-sizing: border-box;
    }

    /* Image styling */
    .slide img {
        width: 100%;
        display: block;
    }

    /* Dots for navigation */
    .dots {
        position: absolute;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        justify-content: center;
        gap: 10px;
    }

    /* Individual dot */
    .dot {
        cursor: pointer;
        height: 12px;
        width: 12px;
        background-color: #bbb;
        border-radius: 50%;
        transition: background-color 0.3s ease;
    }

    /* Active dot styling */
    .dot.active {
        background-color: #717171;
    }
}

/* EVENT PAGE */
/* BUTTON TOGGLE */
.btn-toggle-container {
    text-align: center;
    width: 100%;
}

.btn-toggle-container .form-buttons {
    width: 100%;
    display: flex;
}

.btn-toggle-container .form-buttons button {
    margin: 10px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    background-color: #007bff;
    color: white;
}

.btn-toggle-container .form-buttons button:hover {
    background-color: #0056b3;
}

.btn-toggle-container .form {
    margin-top: 20px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-toggle-container .hidden {
    display: none;
}

.btn-toggle-container .form form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    text-align: left;
}

.btn-toggle-container .form form input {
    width: 100%;
    padding: 8px;
    /* margin-bottom: 10px; */
    border: 1px solid #ccc;
    border-radius: 5px;
}

.btn-toggle-container .form form button {
    padding: 10px 20px;
    background-color: #0079c4;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 50%;
}

.btn-toggle-container .form form button:hover {
    background-color: #025385;
}

.about-content {
    width: 85%;
    display: flex;
    flex-direction: column;
}

.EventRegSection .register-menu {
    width: 100%;
    display: flex;
    flex-direction: row;
}

.EventRegSection .register-menu .event-post {
    width: 25%;
    object-fit: fill;
    overflow: hidden;
}

.EventRegSection .register-menu .event-post img {
    width: 100%;
}

.EventRegSection .register-menu .event-options {
    width: 50%;
    padding: 0% 25%;
    display: flex;
    flex-direction: column;
}

@media (max-width: 768px) {
    .btn-toggle-container {
        text-align: center;
        width: 100%;
    }

    .btn-toggle-container .form-buttons {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .btn-toggle-container .form-buttons button {
        margin: 10px;
        padding: 10px 20px;
        font-size: 16px;
        cursor: pointer;
        border: none;
        border-radius: 5px;
        background-color: #007bff;
        color: white;
    }

    .btn-toggle-container .form-buttons button:hover {
        background-color: #0056b3;
    }

    .btn-toggle-container .form {
        margin-top: 10px;
        padding: 10px;
        border-radius: 10px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .btn-toggle-container .hidden {
        display: none;
    }

    .btn-toggle-container .form form label {
        display: block;
        margin-bottom: 5px;
        font-weight: bold;
        text-align: left;
    }

    .btn-toggle-container .form form input {
        width: 100%;
        padding: 8px;
        /* margin-bottom: 10px; */
        border: 1px solid #ccc;
        border-radius: 5px;
    }

    .btn-toggle-container .form form button {
        padding: 10px 20px;
        background-color: #0079c4;
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        width: 98%;
    }

    .btn-toggle-container .form form button:hover {
        background-color: #025385;
    }

    .EventRegSection .register-menu {
        width: 100%;
        display: flex;
        flex-direction: row;
    }

    .EventRegSection .register-menu .event-post {
        width: 25%;
        object-fit: fill;
        overflow: hidden;
    }

    .EventRegSection .register-menu .event-post img {
        width: 100%;
    }

    .EventRegSection .register-menu .event-options {
        width: 98%;
        padding: 0% 1%;
        display: flex;
        flex-direction: column;
    }
}

.radio-group,
.checkbox-group {
    display: flex;
    flex-direction: row;
}


#form2 label {
    padding-top: 25px;
}

#form2 input {
    /* padding-bottom: 10px; */
}

.EventRegSection .register-menu .event-options h1 {
    font-size: 250%;
    text-transform: uppercase;
    text-align: left;
    background: linear-gradient(90deg, #ff5722, #e91e63, #9c27b0);
    /* Gradient colors */
    -webkit-background-clip: text;
    /* Clips the background to the text */
    background-clip: text;
    /* Standard property */
    color: transparent;
    /* Makes the text transparent to reveal the gradient */
    font-weight: bold;
    /* Optional: Adds emphasis */
}

/* EVENTS PAGE */
#ArmWrestling {
    display: flex;
    flex-direction: column;
}

#ArmWrestling h1 {
    font-size: 300%;
    margin: 0%;
    text-transform: uppercase;
    text-align: center;
    font-style: italic;
    background: linear-gradient(90deg, #ff5722, #e91e63, #9c27b0);
    /* Gradient colors */
    -webkit-background-clip: text;
    /* Clips the background to the text */
    background-clip: text;
    /* Standard property */
    color: transparent;
    /* Makes the text transparent to reveal the gradient */
    font-weight: bold;
    /* Optional: Adds emphasis */
}

#ArmWrestling .event-header {
    display: flex;
    flex-direction: row;
    margin-top: 5%;
}

#ArmWrestling .event-header .event-info {
    width: 50%;
    height: auto;
}

#ArmWrestling .event-header .event-info h3 {
    font-size: 175%;
    color: rgb(203, 203, 0);
}

#ArmWrestling .event-header .event-info ul {
    list-style-type: none;
}

#ArmWrestling .event-header .event-info .coc-winner {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#ArmWrestling .event-header .event-info .coc-winner div {
    width: 100%;
}

#ArmWrestling .event-header .event-info .coc-winner div {
    overflow: hidden;
    object-fit: fill;
}

#ArmWrestling .event-header .event-info .coc-winner div img {
    width: 150px;
}

#ArmWrestling .event-header .event-image {
    width: 50%;
    overflow: hidden;
    object-fit: fill;
    height: auto;
}

#ArmWrestling .event-header .event-image img {
    width: 100%;
}

#ArmWrestling .event-middle {
    display: flex;
    flex-direction: row;
}

#ArmWrestling .event-middle .event-prize {
    width: 80%;
}

#ArmWrestling .event-middle .event-prize h3 {
    font-size: 175%;
    color: rgb(203, 203, 0);
}

#ArmWrestling .event-middle .event-prize .event-category {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#ArmWrestling .event-middle .event-prize .event-category div img {
    width: 40%;
}

#ArmWrestling .event-middle .register-button {
    width: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#ArmWrestling .event-middle .register-button a {
    width: 100%;
}

#ArmWrestling .event-middle .register-button a button {
    background-color: #009dff;
    border: none;
    padding: 2.5% 7.5%;
    border-radius: 15px;
    width: 50%;
    text-transform: uppercase;
    font-family: 'Exo 2';
    color: white;
}

#ArmWrestling .event-middle .register-button a button:hover {
    cursor: pointer;
    background-color: #0079c4;
}

@media (max-width: 768px) {
    #ArmWrestling {
        display: flex;
        flex-direction: column;
    }

    #ArmWrestling h1 {
        font-size: 200%;
        margin: 0%;
        text-transform: uppercase;
        text-align: center;
        font-style: italic;
        background: linear-gradient(90deg, #ff5722, #e91e63, #9c27b0);
        /* Gradient colors */
        -webkit-background-clip: text;
        /* Clips the background to the text */
        background-clip: text;
        /* Standard property */
        color: transparent;
        /* Makes the text transparent to reveal the gradient */
        font-weight: bold;
        /* Optional: Adds emphasis */
    }

    #ArmWrestling .event-header {
        display: flex;
        flex-direction: column;
        margin-top: 5%;
    }

    #ArmWrestling .event-header .event-info {
        width: 100%;
        height: auto;
    }

    #ArmWrestling .event-header .event-info h3 {
        font-size: 175%;
        color: rgb(203, 203, 0);
    }

    #ArmWrestling .event-header .event-info ul {
        list-style-type: none;
    }

    #ArmWrestling .event-header .event-info .coc-winner {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    #ArmWrestling .event-header .event-info .coc-winner div {
        width: 100%;
    }

    #ArmWrestling .event-header .event-info .coc-winner div {
        overflow: hidden;
        object-fit: fill;
    }

    #ArmWrestling .event-header .event-info .coc-winner div img {
        width: 150px;
    }

    #ArmWrestling .event-header .event-image {
        width: 100%;
        overflow: hidden;
        object-fit: fill;
        height: auto;
    }

    #ArmWrestling .event-header .event-image img {
        width: 100%;
    }

    #ArmWrestling .event-middle {
        display: flex;
        flex-direction: column;
    }

    #ArmWrestling .event-middle .event-prize {
        width: 100%;
    }

    #ArmWrestling .event-middle .event-prize h3 {
        font-size: 175%;
        color: rgb(203, 203, 0);
    }

    #ArmWrestling .event-middle .event-prize .event-category {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    #ArmWrestling .event-middle .event-prize .event-category div img {
        width: 60%;
    }

    #ArmWrestling .event-middle .register-button {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    #ArmWrestling .event-middle .register-button a {
        margin: 2.5%;
        width: 100%;
    }

    #ArmWrestling .event-middle .register-button a button {
        background-color: #009dff;
        border: none;
        padding: 2.5% 7.5%;
        border-radius: 15px;
        width: 50%;
        text-transform: uppercase;
        font-family: 'Exo 2';
        color: white;
    }

    #ArmWrestling .event-middle .register-button a button:hover {
        cursor: pointer;
        background-color: #0079c4;
    }
}



/* Event Section Enhancements */
.event-section {
    background: #f8f9fa;
    padding: 60px 20px;
    text-align: center;
    border-radius: 10px;
}

.event-title {
    font-size: 2.5rem;
    color: #ff416c;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1.5px;
}

#Bodybuilding h1 {
    font-size: 300%;
    margin: 0%;
    text-transform: uppercase;
    text-align: center;
    font-style: italic;
    background: linear-gradient(90deg, #9c27b0, #e91e63, #ff5722);
    /* Gradient colors */
    -webkit-background-clip: text;
    /* Clips the background to the text */
    background-clip: text;
    /* Standard property */
    color: transparent;
    /* Makes the text transparent to reveal the gradient */
    font-weight: bold;
    /* Optional: Adds emphasis */
}

#MMA h1 {
    font-size: 300%;
    margin: 0%;
    text-transform: uppercase;
    text-align: center;
    font-style: italic;
    background: linear-gradient(90deg, #9c27b0, #e91e63, #ff5722);
    /* Gradient colors */
    -webkit-background-clip: text;
    /* Clips the background to the text */
    background-clip: text;
    /* Standard property */
    color: transparent;
    /* Makes the text transparent to reveal the gradient */
    font-weight: bold;
    /* Optional: Adds emphasis */
}

/* Event Container */
.event-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    color: white;
    padding: 40px;
    border-radius: 15px;
    /* animation: fadeInUp 1s ease-in-out; */
}

.event-info {
    flex: 1;
    max-width: 500px;
    text-align: left;
}

.event-info h3 {
    margin-top: 15px;
    font-size: 1.5rem;
    color: #ffd700;
}

/* Event Image */
.event-image {
    position: relative;
    /* max-width: 400px; */
}

.event-image img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s;
}

.event-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px;
    font-weight: bold;
    text-align: center;
}

/* Prizes Section */
.event-section {
    background: #141414;
    padding: 60px 20px;
    text-align: center;
    border-radius: 10px;
}

.event-title {
    font-size: 2.5rem;
    color: #ff416c;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1.5px;
}

.event-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-radius: 15px;
    /* animation: fadeInUp 1s ease-in-out; */
}

.event-info {
    flex: 1;
    width: 50%;
    text-align: left;
}

.event-image {
    width: 50%;
    max-height: 400px;
    overflow: hidden;
    max-width: 500px;
}

.event-image img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s;
}

.event-image img:hover {
    transform: scale(1.05);
}

.prize-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.prize-gold {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
    padding: 0% 15%;
}

@media (max-width: 768px) {
    .prize-gold {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
        margin-top: 40px;
        padding: 0% 1%;
    }
}

.prize-card {
    width: 200px;
    padding: 20px;
    border-radius: 15px;
    color: white;
    font-size: 1.2rem;
    text-align: center;
    font-weight: bold;
    transition: transform 0.3s ease-in-out;
}

.prize-card:hover {
    transform: scale(1.1);
}

.gold {
    background: gold;
}

.silver {
    background: silver;
}

.bronze {
    background: #cd7f32;
}

.prize-images {
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

.event-details {
    padding-left: 20%;
}

@media (max-width: 768px) {
    #Bodybuilding h1 {
        font-size: 200%;
        margin: 0%;
        text-transform: uppercase;
        text-align: center;
        font-style: italic;
        background: linear-gradient(90deg, #9c27b0, #e91e63, #ff5722);
        /* Gradient colors */
        -webkit-background-clip: text;
        /* Clips the background to the text */
        background-clip: text;
        /* Standard property */
        color: transparent;
        /* Makes the text transparent to reveal the gradient */
        font-weight: bold;
        /* Optional: Adds emphasis */
    }

    #MMA h1 {
        font-size: 200%;
        margin: 0%;
        text-transform: uppercase;
        text-align: center;
        font-style: italic;
        background: linear-gradient(90deg, #9c27b0, #e91e63, #ff5722);
        /* Gradient colors */
        -webkit-background-clip: text;
        /* Clips the background to the text */
        background-clip: text;
        /* Standard property */
        color: transparent;
        /* Makes the text transparent to reveal the gradient */
        font-weight: bold;
        /* Optional: Adds emphasis */
    }

    /* Event Container */
    .event-container {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        color: white;
        padding: 0px;
        border-radius: 15px;
        /* animation: fadeInUp 1s ease-in-out; */
    }

    .event-info {
        flex: 1;
        width: 100%;
        text-align: left;
    }

    .event-image {
        width: 100%;
        height: auto;
    }

    .event-info h3 {
        margin-top: 15px;
        font-size: 1.5rem;
        color: #ffd700;
    }

    /* Event Image */
    .event-image {
        position: relative;
    }

    .event-image img {
        width: 100%;
        border-radius: 10px;
        transition: transform 0.3s ease-in-out, box-shadow 0.3s;
    }

    .event-image img:hover {
        transform: scale(1.05);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    }

    .image-overlay {
        position: absolute;
        bottom: 0;
        width: 94%;
        background: rgba(0, 0, 0, 0.7);
        color: white;
        padding: 10px;
        font-weight: bold;
        text-align: center;
    }

    /* Prizes Section */
    .event-section {
        background: #141414;
        padding: 60px 20px;
        text-align: center;
        border-radius: 10px;
    }

    .event-title {
        font-size: 2.5rem;
        color: #ff416c;
        text-transform: uppercase;
        margin-bottom: 20px;
        letter-spacing: 1.5px;
    }

    .event-container {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        padding: 10px;
        border-radius: 15px;
        /* animation: fadeInUp 1s ease-in-out; */
    }

    .event-info {
        flex: 1;
        max-width: 500px;
        text-align: left;
    }

    .event-image img {
        width: 100%;
        border-radius: 10px;
        transition: transform 0.3s ease-in-out, box-shadow 0.3s;
    }

    .event-image img:hover {
        transform: scale(1.05);
    }

    .prize-grid {
        display: flex;
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
    }

    .prize-card {
        width: 100px;
        padding: 10px;
        border-radius: 15px;
        color: white;
        font-size: 0.90rem;
        text-align: center;
        font-weight: bold;
        transition: transform 0.3s ease-in-out;
    }

    .prize-card:hover {
        transform: scale(1.1);
    }

    .gold {
        background: gold;
    }

    .silver {
        background: silver;
    }

    .bronze {
        background: #cd7f32;
    }

    form {
        background: #fff;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        max-width: 600px;
        margin: auto;
    }

    h2 {
        text-align: center;
        color: #333;
    }

    label {
        display: block;
        margin-top: 15px;
        font-weight: bold;
    }

    input,
    select,
    textarea {
        width: 100%;
        padding: 10px;
        margin-top: 5px;
        border: 1px solid #ccc;
        border-radius: 5px;
    }

    .radio-group {
        margin-top: 10px;
    }

    .radio-group input {
        width: auto;
        margin-right: 10px;
    }

    .hidden {
        display: none;
    }

    button {
        margin-top: 20px;
        width: 100%;
        padding: 12px;
        background-color: #222;
        color: #fff;
        font-size: 16px;
        border: none;
        border-radius: 6px;
        cursor: pointer;
    }

    button:hover {
        background-color: #444;
    }

    .visible {
        display: block !important;
    }

    .error {
        color: red;
        font-size: 0.9em;
    }

    button {
        margin-top: 0px;
        width: 100%;
        padding: 12px;
        background-color: #222;
        color: #fff;
        font-size: 16px;
        border: none;
        border-radius: 6px;
        cursor: pointer;
    }

    button:hover {
        background-color: #444;
    }

    #summary {
        display: none;
        background: #fff;
        margin-top: 30px;
        padding: 20px;
        border-radius: 10px;
    }

    #summary h3 {
        text-align: center;
    }
}

/* @keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
} */

@media (max-width: 768px) {
    .btn-toggle-container .form form {
        background-color: #0000;
    }
}

.desktop-view {
    display: flex;
}

.mobile-view {
    display: none;
}

@media (max-width: 768px) {
    .desktop-view {
        display: none !important;
    }

    .mobile-view {
        display: flex !important;
    }
}