@import url('https://fonts.googleapis.com/css2?family=Boogaloo&family=Nerko+One&display=swap');

body {
    font-family: "Boogaloo", sans-serif;
    background-color: #FFFFFF;
    color: #202A36;
}

h1, h2, h3 {
    font-family: "Nerko One", sans-serif;
}

/* Navbar */
.navbar {
    background-color: #031D38;
    border-radius: 0;
    width: 100%;
    padding: 10px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-menu {
    width: 100%;
    justify-content: space-between;
}


.logo {
    max-width: 70px;
    height: 70px;
    margin-right: 15px;
    border-radius: 15px;
    transition: transform 0.6s ease-in-out, box-shadow 0.6s ease-in-out;
}

.logo:hover {
    transform: scale(1.2); 
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); 
}

@media screen and (max-width: 768px) {
    .logo {
        max-width: 70px;
    }
}

.navbar-item {
    color: #FFFFFF !important;
    border-radius: 10px;
    font-weight: bold;
    font-size: 20px;
}

.navbar-item:hover {
    background-color: #FCC700 !important;
    color: #031D38 !important;
}

.footer {
    background-color: #031D38;
    color: #FFFFFF;
    padding: 2rem 1rem;
    border-radius: 20px 20px 0 0;
}

.association-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.association-card:hover {
    transform: scale(1.05);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3);
}

.card-content {
    text-align: center;
    padding: 20px;
    color: #333;
}

/* Botón estilizado */
.button.is-link.is-light {
    background-color: #FCC700;
    color: #031D38;
    border-radius: 5px;
}

.button.is-link.is-light:hover {
    background-color: #031D38;
    color: #FCC700;
}

.title.has-text-centered {
    color: #FCC700;
    font-size: 55px;
}   

.subtitle.has-text-centered {
    color: #031D38;
    font-size: 20px;
}

.title.is-4 {
    color: #031D38;
    font-size: 30px;
}

.strong{
    color: #031D38;
}

#loadingContainer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: opacity 0.5s ease-in-out;
}


#loadingGif {
    width: auto;
    height: auto;
    margin-bottom: 15px;
}


#progressBarContainer {
    width: 80%;
    max-width: 400px;
}


#progressBar {
    height: 8px;
    transition: width 0.3s ease-in-out;
}