/*
Theme Name: WSBUD
Theme URI:
Description:
Version: 1.0
Author: Jarek Ch.
Author URI:
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

body, html {
    margin: 0; /* Usunięcie domyślnego marginesu */
    padding: 0; /* Usunięcie domyślnego paddingu */
    overflow-x: hidden; /* Zablokowanie przewijania poziomego */
    font-family: 'Roboto', sans-serif; /* Ustawienie czcionki */
}


header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; /* Ustawienie z-index wyższego niż reszta elementów */
    background-color: #2d3748; /* Dopasowany kolor */
    transition: transform 0.3s ease; /* Płynne przejście przy ukrywaniu i wyświetlaniu */
}

.hidden-header {
    transform: translateY(-100%);
}

section {
    position: relative;
    z-index: 1; /* Ustawienie z-index, aby inne sekcje były poniżej banera */
}

/*helpers*/

.main-color-text, .main-color-text-hover:hover {
    color: #fdcf04;
}

.main-color-bg {
    background-color: #fdcf04;
}

.main-border-color {
    border-color: #fdcf04;
}

.hamburger .line{
    width: 50px;
    height: 5px;
    background-color: #ecf0f1;
    display: block;
    margin: 8px auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.hamburger:hover{
    cursor: pointer;
}

/* ONE */

#hamburger-1.is-active .line:nth-child(2){
    opacity: 0;
}

#hamburger-1.is-active .line:nth-child(1){
    -webkit-transform: translateY(13px) rotate(45deg);
    -ms-transform: translateY(13px) rotate(45deg);
    -o-transform: translateY(13px) rotate(45deg);
    transform: translateY(13px) rotate(45deg);
}

#hamburger-1.is-active .line:nth-child(3){
    -webkit-transform: translateY(-13px) rotate(-45deg);
    -ms-transform: translateY(-13px) rotate(-45deg);
    -o-transform: translateY(-13px) rotate(-45deg);
    transform: translateY(-13px) rotate(-45deg);
}
