@charset "UTF-8";
/*
Theme Name: 100 Betas Tema
Author: Gabriel Henrique Rodrigues Pinto
Author URI: https://github.com/gabrielhrp31
Description: Tema da Academia de Escalada 100 Betas!
Requires at least: WordPress 4.9.6
Version: 1.0
Text Domain: 100-betas-theme
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images,
*/

/*********************************FONTS***********************/
@font-face {
    font-family: Inter;
    src: url('./dist/fonts/Inter-Regular.ttf');
}

@font-face {
    font-family: Poppins;
    src: url('./dist/fonts/Poppins-Regular.ttf');
}
/*********************************GERAL***********************/

:root{
    --primary:#262E41;
    --secondary:#93D8F5;
}

*{
    font-family: Poppins;
}

.text-primary{
    color: var(--primary)!important;
}

.bg-dark{
    background-color: var(--primary)!important;
}

.bg-light{
    background-color: var(--secondary)!important;
}

/*********************************NAVBAR***********************/
.navbar.bg-dark{
    background-color: var(--primary)!important;
}

.navbar .custom-logo{
    width: 320px;
    height: unset;
    margin: 20px 0;
}
.navbar .nav-link {
    font-size: 22px;
    font-weight: bolder;
    text-transform: uppercase;
    margin: 0 20px;
}

#footer a{
    color: var(--bs-light);
}
/*********************************BANNER***********************/
.parallax-container {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    height: 85vh;
}

.parallax-container::before{
    content: "";
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    z-index: 1;
}

.parallax-container .apresentacao{
    position: relative;
    z-index: 2;
    color: var(--bs-light);
}

.parallax-container .apresentacao h1{
    font-size: 64px;
    font-weight: bolder;
    margin-bottom: 18px;
}

.parallax-container .apresentacao p{
    font-size: 20px;
}


.parallax {
    position: absolute;
    /*top: -20%;*/
    left: 0;
    width: 100%;
    min-height: 100%;
    object-fit: cover;
    will-change: transform;
    transition: transform 0.1s linear;
    z-index: 0;
}

/*********************************TREINOS***********************/


#treinos .accordion .accordion-item .accordion-header{
    position: relative;
    overflow: hidden;
    background-size:cover;
    background-repeat: no-repeat;
    background-position: center;
}

#treinos .accordion .accordion-item .accordion-header::before {
    content: "";
    display: flex;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

#treinos .accordion .accordion-item .accordion-header button{
    background-color: transparent;
    height: 300px;
    color: var(--bs-light);
    font-size: 64px;
    text-align: center;
    padding: 10% ;
}
#treinos .accordion .accordion-item .accordion-header button::after{
    width: 4rem;
    height: 4rem;
    background-size: 4rem;
    filter: brightness(0%) invert(1);
}
#treinos .tipo-treino{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    height: 200px;
    width: 100%;
    color: var(--bs-light);
    font-size: 32px!important;
    text-decoration: unset;
}

#treinos .tipo-treino.imagem::before{
    content: "";
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    z-index: 1;
}
#treinos .tipo-treino h1{
    z-index: 2;
    text-transform: uppercase;
    text-align: center;
}

.address a{
    color: var(--primary) !important;
    text-decoration: none;
}

.socials {
    display: flex;
    flex-flow: wrap;
    justify-content: space-around;
    gap: 10px;
}

.socials h4{
    width: 100%;
}
.socials a{
    text-decoration: none;
}

.socials i{
    font-size: 60px;
}