/* Import Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* Values Root*/
:root {
    --primary-color: black;
    --primary-color-light: #1f2125;
    --primary-color-extra-light: #35373b;
    --secondary-color: #f9ac54;
    --secondary-color-dark: #d79447;
    --text-light: #d1d5db;
    --white: #ffffff;
    --max-width: 1200px;
}

/* General Styles */
* {

    color: var(--white);
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: 0.3s;

}

body {
    background-color: var(--primary-color);
}


/* Buttons */
.btn {
    width: 100%;
    font-size: 10px;
    text-align: center;
    padding: 1rem 2rem;
    background: var(--secondary-color);
    outline: none;
    cursor: pointer;
    text-decoration: none;

}

.btn:hover {
    color: #000000;
    text-transform: uppercase;
    font-weight: 700;
    background: var(--secondary-color-dark);
}

.section_container {
    max-width: var(--max-width);
    margin: auto;
    padding: 5rem 1rem;
}

.section_header {
    padding-top: 5rem;
    margin-bottom: 1rem;
    font-size: 2.2rem;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    color: var(--text-light);
}

.section_subheader {
    max-width: 600px;
    margin: auto;
 

}

.bg_blur {
    position: absolute;
    box-shadow: 0 0 10000px 50px var(--secondary-color);
    left: 0;
    z-index: -1;
}



/* HEADER */
header {
    background-color: var(--primary-color);
    position: absolute;
    text-align: center;
    width: 100%;
    font-weight: 600;
    height: 15vh;
    z-index: 10;

}

header nav {
    display: flex;
    align-content: center;
    justify-content: space-between;
    padding: 2rem 1rem;
    gap: 2rem;

}

nav img {
    width: 100%;
}

header nav .nav_links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 3rem;
}

header nav .nav_links .link {
    margin: 0.2rem;
    justify-content: space-between;
    text-decoration: none;
    padding: 0.5rem 2rem;

    list-style-type: none;
}

header nav .nav_links .link a {
    text-decoration: none;
    position: relative;
    padding-bottom: 0.75rem;
    background: transparent;

}

header nav .nav_links .link a::after {
    content: "";
    position: absolute;
    height: 2px;
    width: 0;
    left: 0;
    bottom: 0;
    background-color: var(--secondary-color);

}

header nav .nav_links .link a:hover::after {
    width: 50%;

}

header nav .nav_logo {
    max-width: 150px;
}

/* HOME*/

.home {
    padding-top: 5rem;


}

.home .header_container {
    position: relative;
    padding-top: 2rem;
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 2rem;

}

.home .header_container::before {
    content: "FITNESS";
    position: absolute;
    bottom: 5rem;
    right: 15%;
    color: white;
    font-size: 10rem;
    line-height: 7rem;
    font-weight: 700;
    opacity: .05;
    z-index: -1;
}

.home .header_blur {
    bottom: 5rem;
    right: 0;

}

.home .header_content h4 {
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-color);

}

.home .header_content h1 {
    margin-bottom: 1rem;
    font-size: 5rem;
    font-weight: 700;
    line-height: 6rem;
}

.home .header_content h1 span {
    -webkit-text-fill-color: var(--primary-color-light);
    -webkit-text-stroke: 1px white;
}

.home .header_content p {
    font-size: 2rem;
    color: var(--text-light);
    z-index: -.5;
}

.home .image_header {
    position: relative;
}

.home .image_header::before {
    content: "o";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 30rem;
    font-weight: 400;
    line-height: 10rem;
    color: var(--secondary-color);
    opacity: 0.1;
    z-index: -1;
}

.home .image_header img {
    max-width: 350px;
    margin: auto;

}

/* EXPLORER */

.explorer_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.explore_grid {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.explore_card {
    padding: 1rem;
    border: 2px solid white;
    background-color: var(--primary-color-light);
    border-radius: 10px;
}

.explore_card:hover {
    background-color: var(--primary-color-extra-light);
    border-color: var(--secondary-color);
}

.explore_card span {
    display: inline-block;
    padding: 2px 9px;
    margin-bottom: 1rem;
    font-size: 1.75rem;
    color: var(--white);
    background-color: var(--secondary-color-dark);
    border-radius: 5px;
}

.explore_card h4 {
    margin-bottom: .5rem;
    font-size: 1rem;
    font-weight: 600;

}

.explore_card p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.explore_card a {
    text-decoration: none;
}

.explore_card a:hover {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.explore_card a:hover i {
    color: var(--secondary-color);
}

/* CLASS*/

.class_container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.class_image {
    position: relative;
}

.class_image .img-class-1 {
    position: absolute;
    right: 0;
    top: 0;
    max-width: 500px;
    border-radius: 10px;
}


.class_image .img-class-2 {
    position: absolute;
    left: 0;
    bottom: 0;
    max-width: 300px;
    border-radius: 10px;
}

.class_content {
    padding: 2rem 0;
}

.class_content .section_header {
    text-align: left;
    max-width: 400px;
}

.class_content p {
    margin-bottom: 4rem;
    color: var(--text-light);
}

/*JOIN*/

.join_image{
   margin-top: 4rem;
   position: relative; 
   
}

.join_image img{
    width: 100%;
    border-radius: 10px;
}
.join_grid{
position: absolute;
bottom: -5rem;
width: calc(100%-4rem);
padding: 2rem;
margin: 0 2rem;
display: flex;
flex-wrap: wrap;
gap: 2rem;
background-color: var(--primary-color-extra-light);
border-radius: 10px;
}
.join_card{
    flex: 1 1 250px;
    display: flex;
    align-items: center;
    gap: 1rem;

}

.join_card span{
    padding: 5px 12px;
    font-size: 1.75rem;
    background-color: var(--secondary-color-dark) ;
    border-radius: 5px;
}
.join_card h4{
    margin-bottom: .5rem;
    font-size: 1.2rem;
    font-weight: 500;
}

.join_card p{
    color: var(--text-light);
}

/* PRICE */

.price_grid{
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.price_card{
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    background-color: var(--primary-color-light);
    border: 2px solid transparent;
    border-radius: 10px;
}
.price_card:hover{
    background-color: var(--primary-color-extra-light);
    border-color: var(--secondary-color);
}

.price_card_content{
    flex: 1;
    margin-bottom: 2rem;
}

.price_card h4{
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 500;
}

.price_card h3{
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 600;
    border-bottom:2px solid var(--white) ;
}

.price_card p{
    margin-bottom: .75rem;
}

.price_card p i{
    margin-right: .5rem ;
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.price_btn{
    color: var(--secondary-color);
    background-color: transparent;
    border: 2px solid var(--secondary-color);
}

.price_btn:hover{
    background-color: var(--secondary-color);
 }

 /* FOOTER */

 .footer_content{
    position: relative;
    display: grid;
    grid-template-columns: 400px repeat(3, 1fr);
 }
 .footer_blur{
    bottom:0 ;
    right: 0;
 }
 .footer_logo{
    max-width: 150px;
    margin-bottom: 2rem;
 }

.footer_col p{
    margin-bottom: 2rem;
    color: var(--text-light);
}
.footer_socials{
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer_socials a{
    text-decoration: none;
    padding: 5px 10px;
    font-size: 1.25rem;
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    border-radius: 100%;
}

.footer_socials a:hover{
    color:black;
    background-color: var(--secondary-color);
}

.footer_col h4{
    margin-bottom: 2rem;
    font-size: 1.2rem;
    font-weight: 500; 
}

.footer_col > a{
text-decoration: none;
display: block;
margin-bottom: 1rem;
color: var(--text-light);
}
.footer_col > a:hover{
    color: var(--secondary-color);
}

.footer_bar{
    max-width: var(--max-width);
    margin: auto;
    padding: 1rem;
    font-size: .8rem;
}

