
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Oswald:wght@200..700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

/* astrisk wild card selector to override default style added by browser */
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

/* General styles */
body{
    min-height: 100vh;
    display: flex;
    flex-direction: column; 
   
    font-family: ubuntu;
    scroll-behavior: smooth;

}

h1, h2, h3 {
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #6887f5
}

span{
    color: #ffffff;
 
}

header {
    background-color: #ffffff;
    padding: 0 1rem;
    position: fixed;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    box-shadow: 0 2px 2px #3a3a3a;
    z-index: 99;
    transition: all ease .50s;
    min-height: 5.4vh;
    
}

header a {
    text-decoration: none;
    color: inherit;
}

#logo {
    width: 100%;
}

#menu {
    list-style: none;
    letter-spacing: 4px;
    font-size: 110%;
    color: #6887f5;
    margin-bottom: 8px;
   
    justify-content: right;
}

#menu > li {
    padding: 12px;
    text-transform: capitalize;
    font-weight: 500;
    
    letter-spacing: 4px;
}


#menu a:hover{
        color: #3a3a3a;
        transform: scale(1.8);
        

}




/* Nav bar styles with drop down menu */



nav {
    position: absolute;
    width: 100%;
    left: 0;
    top: 100%;
  
    box-shadow: 0 2px 2px #3a3a3a;
    background: #ffffff;
    display: none;
}


/* nav toggle bar */

#nav-toggle:checked ~ nav{
    display: block;
}

#nav-toggle {
    display: none;
}

.nav-toggle-label {
    font-size: 2rem;
    
}


main {
    background-color: #3a3a3a;
    /* Make main element take up any surplus space to push footer down */
    flex: 1 0 auto;
   
}

section {
   padding: 160px 16% 90px;
}

#home {
    min-height: 100vh;
    width: 100%;
    position: relative;
    background: url(../images/header.jpg);
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

#cover-text h1 {
    margin-top: 20px;
    color: #ffffff;
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.1;
    letter-spacing: 2px;
}

#cover-text h4 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 2px;
}

#cover-text h5 {
    color: #6887f5;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 2px;
    margin-top: 0;
}
#cover-text h3{
    margin: 1.5rem 0;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;


}

.btn {
    display: inline-block;
    padding: 14px 40px;
    border-radius: 0.5rem;
    font-size: 17;
    font-weight: 500;
    background: #6887f5;
    color: #ffffff;
    border: 1px solid #6887f5;
    text-decoration: none;
    transition: all ease .50s;
    text-transform: uppercase;
}

.btn:hover {
    background: transparent;
    transform: scale(1.1);
    border: 2px solid #6887f5;
}

/* About section */
#about {
    display: grid;
    
    grid-template-columns: repeat(auto-fit, minmax(200px, auto));
    align-items: center;
    gap: 4rem;
    
    
}

#about-img img{
    width: 100%;
    height: auto;
    border: 2px solid #3a3a3a;
    border-radius: 50%;
    
}

#about-text h2 {
    margin-top: 20px;
    color: #6887f5;
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.1;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

#about-text h5 {
    font-size: 20px;

    margin-top: 20;
}

#about-text p {
    margin: 15px 0;
    line-height: 30px;
    margin-bottom: 3rem;

}

p, h5 { color: #ffffff;}

/* Goals section */
#goal-s h1 {
    display: flex;
    align-items: center;

    justify-content: center;
    margin: 0 0px 80px 0;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 400%;
    text-align: center;
    color: #6c6767;
}

#goals {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, auto));
    gap: 4rem
}

#slim h5, #sturdy h5, #huge h5 {
    margin: 0 0 20px 0;
    text-transform: uppercase;
    color: #6887f5;
    font-size: 18px;
    letter-spacing: 3px;
}

#slim h2, #sturdy h2, #huge h2 {
  
    text-transform: uppercase;
    color:#ffffff;
    font-size: 3rem;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

/* Plans section */
#plans h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0px 80px 0;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 400%;
    text-align: center;
    color: #6c6767;
}

 #plans-text {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, auto));
    gap: 5rem;
    align-content: center;
    justify-items: center;
    text-align: left;
}

#basic:hover{
    background: transparent;
    scale: 1.1;
}

#profesional:hover{
    background: transparent;
    scale: 1.1;
}

#advanced:hover{
    background: transparent;
    scale: 1.1;
}

#basic {
    background: #6c6767;
    padding: 25px 30px;
    border-radius: 0.8rem;
    transition: all ease .50s;
    border: 1px solid #6c6767;
    cursor: pointer;
}

#basic h2, #profesional h2, #advanced h2 {
    padding: 10px 0;
    color: #ffffff;   
    font-size: 2rem;
    font-weight: 350px;

}

#basic h3, #profesional h3, #advanced h3 {
    padding: 10px 0;
    color: #ffffff; 
    text-align: left;  
    font-size: 2rem;
    font-weight: 350px;

}


#basic p, #profesional p, #advanced p {
    
    line-height: 1.3;
    padding-bottom: 20px;
    letter-spacing: 1.5px;
}

#basic ul, #profesional ul, #advanced ul {
    
    padding-bottom: 20px;
    padding-left: 20px;
    letter-spacing: 1.5px;
    line-height: 2;
    list-style: none;
}

#profesional {
    background: #7e99fa;
    padding: 25px 30px;
    border-radius: 0.8rem;
    transition: all ease .50s;
    border: 1px solid #7e99fa;
    cursor: pointer;
}

#profesional .btn {
    background: #ffffff;
    color: #6887f5;
    border: 1px solid #ffffff;
}




#advanced {
    background: #6c6767;
    padding: 25px 30px;
    border-radius: 0.8rem;
    transition: all ease .50s;
    border: 1px solid #6c6767;
    cursor: pointer;
}



ul{ color: #ffffff;}


/* signup page */
#signup{
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../images/signup.jpg) no-repeat center center/cover;
    
}


#signup-form{
    color: #fafafa;
    background-color: rgb(60, 60, 60, 0.8);
    padding: 30px;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#signup-form h1 {
    color: #fafafa;
    margin: 20px;
    font-size: 3rem;
    font-weight: 600;
}

.input-text {
    background: transparent;
    border: 1px solid #fafafa;
    border-radius: 2px;
    padding: 0 5px;
    margin: 10px 0 20px 0;
    height: 25px;
    width: 100%;
}

.signup-plans{
    width: 100%;
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 400;
}


#signup-form .btn{
    margin: 16px 0;

}


/*Footer */
footer{
   background: #3a3a3a;
   min-height: 10vh;
   
}

footer p {
   text-align: center;
   margin: 20px 0;
   text-transform: uppercase;
   letter-spacing: 1.2px;
}

#social-media {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    margin: 20px 0;  
    letter-spacing: 3rem;  
}

#social-media a {
    color: #ffffff;
}

#social-media a:hover {
    scale: 1.4;
}


/* Media query for ipads screens*/

@media  screen and (min-width: 1000px ) {
    #menu {
        display: flex;
    }
    
    #menu > li {
       padding-left: 8px;
    }
    
    
    #menu a:hover{
            color: #3a3a3a;
            transform: scale(1.2);
            
    }
    
    /* Nav bar styles with drop down menu */
    
    
    nav {
        position: relative;
        width: fit-content;
        box-shadow: none;
        display: block; 

    }
    
    /* nav toggle bar */
    
    #nav-toggle:checked ~ nav{
        display: block;
    }
    
    #nav-toggle {
        display: none;
    }
    
    .nav-toggle-label {
        display: none;
    }

}

/* media query for desktops and large screens */

@media screen and (min-width: 1200px){
    
    #menu {
        display: flex;
        font-size: 120%;
    }
    
    #menu > li {
       padding-left: 15px;
    }
    
    
    #menu a:hover{
            color: #3a3a3a;
            transform: scale(1.2);
           
            
    
    }
    
    /* Nav bar styles with drop down menu */
    
    
    nav {
        position: relative;
        width: fit-content;
        box-shadow: none;
        display: block; 

    }
    
    /* nav toggle bar */
    
    #nav-toggle:checked ~ nav{
        display: block;
    }
    
    #nav-toggle {
        display: none;
    }
    
    .nav-toggle-label {
        display: none;
    }

    #home{
        font-size: 130%;
        min-height: 125vh;
    }

    #about {
        font-size: 130%;
    }

}
    
