/* CUSTOMISATION CLOCKIFY */

/* COLOR SCHEME 

Main Blue : #03A9F4


*/


@font-face {
    font-family: oswald;
    src: url(webfonts/oswald.woff2);
  }

  @font-face {
    font-family: erod;
    src: url(webfonts/Erode-Variable.woff2);
  }

  @font-face {
    font-family: satoshi;
    src: url(webfonts/Satoshi-Variable.woff2);
  }

  @font-face {
    font-family: bowlby-one-sc;
    src: url(webfonts/Bowlby-One-SC.woff2);
  }

body{

    font-family: erod;
    font-weight: 400;
}

a,
a:visited{
	color: crimson;
	text-decoration: underline;
}

/* STRUCTURE */

.site-header,
.site-main,
.site-footer{
    padding: 1rem;
}

.site-header{

}
.site-main{

    max-width: 1200px;
    margin: 0 auto;
}

.widget-area{

}
.site-footer{
    font-size: 0.8em;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6{
    font-family: satoshi;
    font-weight: 200;
}


/* HEADER */ 
.site-branding{

}
.main-navigation{
    width: auto;
}
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
h1.site-title,
p.site-title{
    margin: 0;
    padding: 0;
    font-size: 1rem;
    line-height: 1;
}


.site-title a{
    display: block;
    width: 200px;
    height: 50px;
    background:url(images/clockify-logo.svg) no-repeat center center;
    background-size: contain;
    text-indent: -50000px;
}

/* NAVIGATION */
.main-navigation li{
    margin-left: 1rem;
}

.main-navigation li a{
    color: black;
    font-family: satoshi;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease-in-out;
    display: inline-block;
    padding: 0.4em 1em 0.2em 1em;
   
}

.main-navigation li.nav-button-link a{
    background-color: black;
    color:white;
    border-radius: 5px;
}

.main-navigation li.nav-button-link.nav-button-link-login a{
    background-color:  #03A9F4;
}



.main-navigation li a:hover,
.main-navigation li.current-menu-item a{
    border-bottom: 3px solid black;
}

.main-navigation ul ul{
    display: block;
    background-color: white;
}

/* RESPONSIVE NAVIGATION */
.menu-toggle{
    width: 5rem;
    height: 5rem;
    background: url(images/burger-off.svg) no-repeat center center;
    background-size: contain;
    border: 0; 
    text-indent: -5000px;
    position: fixed;
    top:0;
    right:0;
    z-index: 2000;
}
.toggled .menu-toggle{
    background-image: url(images/burger-on.svg);
}

.toggled .menu-main-menu-container{
    background: linear-gradient(141deg,rgba(76, 167, 238, 1) 0%, rgba(58, 130, 186, 1) 100%);
    position: fixed;
    top:0;
    right:0;
    bottom:0;
    left:0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1rem 1rem 5rem 1rem;
}

.main-navigation.toggled li a{
    font-size: 1.5rem;
    display: inline-block;
    padding: 0.5rem 0;
    color: white;
}

.main-navigation.toggled ul ul{
    position: static;
    float: none;
    background-color: transparent;
    box-shadow: none;
}

.main-navigation.toggled ul ul li a{
    font-size: 1.2rem;
}

/* HOMEPAGE */

.custom-home-part section{
    min-height: 200px;
    background-color: aquamarine;
    padding: 2rem 0;
    margin: 0 0 2rem 0;
}


/* FOOTER */
.site-footer{
    font-family: satoshi;
    font-size: 0.8em;
}

/* FOOTER WIDGET */
.footer-widget .wp-block-column{
    border-radius: 30px;
}

.footer-widget .wp-block-column.has-background{
    padding: 30px;
}

.wp-block-columns.fluid-4-template{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
} 

.wp-block-columns.fluid-4-template .wp-block-column:first-of-type { grid-area: 1 / 1 / 2 / 2; } 
.wp-block-columns.fluid-4-template .wp-block-column:nth-child(2) { grid-area: 2 / 1 / 3 / 2; } 
.wp-block-columns.fluid-4-template .wp-block-column:nth-child(3) { grid-area: 3 / 1 / 4 / 2; }
.wp-block-columns.fluid-4-template .wp-block-column:last-of-type{ grid-area: 1 / 2 / 4 / 3; }