@charset "utf-8";
/* import fonty */
@import url('https://fonts.googleapis.com/css2?family=Climate+Crisis&display=swap');

/*SELEKTORY GLOBALNE*/

*{
    transition: 1s;
    scroll-behavior: smooth;
	box-sizing: border-box;
}
html{}
body{}
h1{
    font-family: "Climate Crisis", sans-serif; /*CZEMU NIE DZIAŁA ??*/
    font-size: 12rem;
}
h2{}
h3{}
h4{
    font-size: 3rem;
}
h5{}
h6{}

img{
    max-width: 100%;
}
i, em {
    font-style: italic;
  }
  ul {
    list-style-type: disc;
    padding-left: 20px; 
  }
a{
    
   /* text-decoration: none;
    color: inherit;*/
}
p{
    line-height: 140%;
}
strong{
    color: #532977;
}
.mobile{
    display: none;
}
.dekstop{}
/*NAV mobile*/

.burger{
    display: none;
    position: fixed;
    top: 2rem;
    right: 2rem;
    font-size: 4rem;
    color: #733FA1;
    padding: .7rem .7rem .7rem;
    border-radius: 2rem;
    cursor: pointer;
    z-index: 1;
}

.nakladka{
    background-color: #733FA1;
    opacity: 1;
    color: white;
    z-index: 2;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    width: 0%; /*parametr do zmiany skryptem*/
    overflow: hidden; /*żeby ukryc zawartośc nakładki przy 0% szerokości*/
    display: flex;
    justify-content: center;
    align-items: center;
}
.nakladka ol{
    /* background-color: violet; */
    text-align: center;
    width: 100%;

}
.nakladka ol li{
    margin-bottom: 1rem;
}
.nakladka ol li a{
    /* background-color: blue; */
    display: block;
    padding: 1.5rem;
    color: white;
    font-size: 25px;

}
.nakladka ol li a:hover{
    background-color: #532977;
}
.zamknijX{
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 4rem;
    background-color: white;
    color: #733FA1;
    padding: .6rem 1.25rem .6rem;
    border-radius: 1rem;
}


/*NAV desktop*/

nav {   
    background: rgba( 255, 255, 255, 0.25 );
    backdrop-filter: blur( 3px );
    -webkit-backdrop-filter: blur( 3px );
    padding: 1rem;
    display: flex;
    justify-content: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    
}

nav ol {
    display: flex;
    gap: 1vw;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ol li a {
    
    color: white;
    text-decoration: none;
    padding: 0.6rem 1.5vw;
    font-weight: bold;
    font-size: 1.5rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

nav ol li a:hover {
    background-color: #733FA1;
    transform: scale(1.05);
}



/*SEKCJE WSZYSTKIE*/
section{
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.zawartosc{
    /*background-color: red;*/
    max-width: 1400px;
    min-height: 50vh;
    width: 100%;
    display: flex;
    gap: 2rem;
}
/*SEKCJE POSZCZEGÓLNE*/

#pierwsza {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background-image: url('../img/tlo1woda.png'); /*ZRÓB TU ANIMACJE,ŻEBY WODA RUSZAŁA*/
    background-size: cover;
    background-position: center;
    height: 100vh;
    text-align: center;
    position: relative;
}

#pierwsza .zawartosc {
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#pierwsza h1 {
    font-size: 8rem;
    font-family: 'Climate Crisis', sans-serif;
    margin: 0;
}

#pierwsza h4 {
    font-size: 2rem;
    font-weight: 400;
    margin: 0;
}

#pierwsza .zawartosc a {
    margin-top: 2rem;
    background-color: white;
    color: #733FA1;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.5rem;
    font-family: 'Climate Crisis', sans-serif;
    transition: transform 0.3s ease;
}

#pierwsza .zawartosc a:hover{
    color: white;
    background-color: #733FA1;
}

#druga {
    background: url("../img/orkabeztladuzeczarnobiale.png");
    background-position: top 400px center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 150vh;
    position: relative;
    display: flex;
    justify-content: start;
    padding: 4rem 6rem;
    flex-wrap: wrap;
  }
  
  #druga .zawartosc {
    max-width: 1400px;
    width: 100%;
    margin-top: 4rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
  }
  
  
  #druga .tekst {
    display: flex;
    flex-direction: column;
    max-width: 50%;
    gap: 1.5rem;
  }
  
  
  #druga article {
    font-size: 1.1rem;
    line-height: 140%;
    color: black;
  }
  
  
  #druga h1 {
    font-family: "Climate Crisis", sans-serif;
    font-size: 7rem;
    color: #733FA1;
    line-height: 1;
    text-align: right;
    margin: 0;
  }
  
  #druga a {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #733FA1;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-family: "Climate Crisis", sans-serif;
    font-size: 1.2rem;
  }
  #druga a:hover{
    background-color: black;
    color: white;
  }

  #trzecia {
    background-color: #733FA1;
}

#trzecia .zawartosc {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#trzecia h1 {
    font-size: 6rem;
    color: white;
    font-family: "Climate Crisis", sans-serif;
    text-align: center;
    margin: 2rem 0;
}

#trzecia .zawartosc img {
    max-width: 75%;
    height: auto;
    display: block;
    border-radius: 20px;
}

#trzecia .zawartosc .teksty {
    display: flex;
	gap: 4rem;
    justify-content: space-between;
    width: 100%;
}

#trzecia .zawartosc .teksty .lewe,
#trzecia .zawartosc .teksty .prawe {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1rem;
}

#trzecia .zawartosc .teksty .lewe {
    align-items: flex-start;
    text-align: left;
}

#trzecia .zawartosc .teksty .prawe {
    align-items: flex-end;
    text-align: right;
}

#trzecia .zawartosc .teksty h3 {
    font-size: 3rem;
    color: white;
    font-weight: 800;
    margin-bottom: 1rem;
}

#trzecia .zawartosc .teksty article {
    font-size: 1rem;
    color: white;
    line-height: 140%;
    max-width: 80vw;
}

#trzecia .zawartosc a {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
    background-color: white;
    color: #733FA1;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 50px;
    font-weight: 700;
    font-family: 'Climate Crisis', sans-serif;
    transition: transform 0.3s ease;
}
#trzecia .zawartosc a:hover{
    background-color: black;
    color: white;
}

#czwarta{
    display: flex;
    align-items: center;
    background-image: url(../img/orkamalaczarna.png);
    background-position: center;
    background-attachment: fixed; 
    background-size: cover; 

}
#czwarta .zawartosc{}

#piata{
    background:url(../img/mapaczarna.png);
    background-position: center;
    background-size: cover;
	padding: 3rem;
}
#piata h1{
	text-align: center;
    font-family: 'Climate Crisis', sans-serif;
    color: white;
    font-size: 7.5rem;
}
#piata .zawartosc{
    padding-top: 8rem;
    display: flex;
    flex-direction: column;
}
#piata .zawartosc .tekst{
    display: flex;
    flex-direction: column;
    padding: 2rem;
    width: 30rem;
    background: rgba( 255, 255, 255, 0.7 );
    backdrop-filter: blur( 5px );
    -webkit-backdrop-filter: blur( 5px );
    border-radius: 10px;
    font-size: 1rem;
}
#piata .zawartosc .tekst:hover{
    transform: scale(110%);
}
#piata .zawartosc article{
    line-height: 140%;
}
#piata .zawartosc a {
    display: inline-block;
    background-color: #733FA1;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-family: "Climate Crisis", sans-serif;
    font-size: 1.2rem;
    margin-top: 2rem;
    align-self: center; 
    text-align: center;
    white-space: nowrap;
}
#piata .zawartosc a:hover{
    background-color: black;
    color: white;
}


#szosta {
    display: flex;
    background: url(../img/tlozagrozenie2.png);
    background-position: center;
    background-size: cover;
  }
  
  #szosta .zawartosc {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-bottom: 3rem;
  }
  
  #szosta .zawartosc .blokprawy {
    order: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 45%;
    margin: 1rem;
    color: white;
    text-align: left;
    font-family: sans-serif;
    line-height: 1.5;
    padding-left: 1rem;
  }

  #szosta .zawartosc .blokprawy h1 {
    display: flex;
    justify-content: flex-end;
    font-family: "Climate Crisis", sans-serif;
    font-size: 5rem;
    color: white;
    text-align: right;
    margin-bottom: 3rem;
  }

  #szosta .zawartosc .blokprawy img {
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
    border-radius: 10px;
    padding-top: 1rem;
  }
  
  #szosta .zawartosc .blokprawy article {
    padding-top: 3rem;
    font-size: 1rem;
    line-height: 140%;
  }
  
  #szosta .zawartosc .bloklewy {
    padding-right: 1rem;
    padding-bottom: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 45%;
    margin: 1rem;
    color: white;
    text-align: left;
    font-family: sans-serif;
    line-height: 1.5;
  }
  
  #szosta .zawartosc .bloklewy img {
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
    border-radius: 10px;
  }
  
  #szosta .zawartosc .bloklewy article {
    padding-top: 1rem;
    font-size: 1rem;
    line-height: 140%;
  }
  /* Dwie kolumny obok siebie */
  #szosta .zawartosc {}
  
 

#stopka{
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 50px; 
}
#stopka .zawartosc{
	min-height: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 5rem;
    padding-top: 3rem;
}
#stopka .zawartosc .orki{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
#stopka .zawartosc .orki h1{
    font-family: "Climate Crisis", sans-serif;
    font-size: 10rem;
    color: #D9C6EA;
}
#stopka .zawartosc .orki article{}
#stopka .zawartosc .orki article p{
    color: #D5D5D9;
}

#stopka .zawartosc .kontakt{}
#stopka .zawartosc .kontakt article{}
#stopka .zawartosc .kontakt article h5{
    color: #787879;
    font-size: 1.5rem;
}
#stopka .zawartosc .kontakt article p{
    font-size: 1.25rem ;
    padding-top: 1rem;
    color: #787879;
}
#stopka .zawartosc .kontakt article p a{
    display: flex;
    flex-direction: column;
    color: #733FA1;
}

#stopka .zawartosc .newsletter{}
#stopka .zawartosc .newsletter h5{
    color: #787879;
    font-size: 1.5rem;
}
#stopka .zawartosc .newsletter form{
    padding-top: 1rem;
}
#stopka .zawartosc .newsletter form input:nth-child(1){
	background-color: #D5D5D9;
	color: white;
	padding: 1rem;
	padding-right: 6rem;
	border-radius: 4rem;
	border: 0px;
	}
#stopka .zawartosc .newsletter form input:nth-child(2){
	background-color: #733FA1;
    font-family: "Climate Crisis", sans-serif;
	color: white;
	padding: 1rem;
	border-radius: 4rem;
	font-size: 0.75rem;
    border: 0px;
    cursor: pointer;
}


/*********************************************************/
/*RWD*/

@media all and (max-width:900px){
/*
    .burger{
        display: block;
    }
    nav{
        display: none;
    }
*/
    .zawartosc{
        flex-direction: column;
    }

    /*ZRÓB W TEN SPOSÓB TEŻ ZDEJCIE Z TYPOW OSOBNO*/
    .mobile{
        display: block;
    }
    .desktop{ 
        display: none;
    }

    #pierwsza{}
    #pierwsza .zawartosc{}
    #pierwsza h1{
        font-size: 3rem;
    }
    #pierwsza h4{
        font-size: 1.25rem;
    }
    #pierwsza .zawartosc a{
        background-color: #733FA1;
        color: white;
    }
    #pierwsza .zawartosc a:hover{
        background-color: black;
        color: white;
    }

    #druga{
        background-position: top 500px center;
        background-size: 350%;
        min-height: 120vh;
    }
    #druga .zawartosc{
        display: flex;
        flex-direction: column-reverse;
        justify-content: center; 
        align-items: center;
        margin-top: -1rem;
    }
    #druga .tekst{
        max-width: 25rem;
    }
    #druga article{
        font-size: 1rem;
    }
    #druga h1{
        font-size: 2rem;
        text-align: center;
        justify-content: center;
    }
    #druga a{
        top: 60%;
    }
    #druga a:hover{}

    #trzecia {
		padding: 0;
    }
    
    #trzecia h1 {
        font-size: 1.8rem;
    }
    
    #trzecia .zawartosc {
        overflow: scroll;
        padding: 2rem;
        gap: 0;
    }
    
    #trzecia .zawartosc::-webkit-scrollbar {
        width: 0;
    }
    #trzecia .zawartosc::-webkit-scrollbar-thumb {
        background: white;
        border-radius: 1rem;
    }
    #trzecia .zawartosc::-webkit-scrollbar-track {
        background: #532977;
        border-radius: 1rem;
    }
    #trzecia .zawartosc::-webkit-scrollbar-thumb:hover {
        background: lightgray;
        }
    
    #trzecia .zawartosc .teksty {
        display: flex;
        flex-direction: row;
    }
    
    #trzecia .zawartosc .teksty .lewe,
    #trzecia .zawartosc .teksty .prawe {
        flex: 0 0 500px;
        width: 450px;
        padding: 1rem;
		max-width: auto;
    }
    
    #trzecia .zawartosc .teksty .lewe {}
    
    #trzecia .zawartosc .teksty .prawe {}
    
    #trzecia .zawartosc .teksty .lewe img,
    #trzecia .zawartosc .teksty .prawe img {
        transform: rotate(-90deg);
        margin: 1rem auto;
    }
    
    #trzecia .zawartosc .teksty .lewe h3,
    #trzecia .zawartosc .teksty .prawe h3 {
        margin-top: -2rem;
        font-size: 1.6rem;
    }
    
    #trzecia .zawartosc .teksty .lewe article,
    #trzecia .zawartosc .teksty .prawe article {
        font-size: 1rem;
        white-space: normal;
        line-height: 1.5;
    }
    
  
    
    

    #czwarta{
        background-repeat: no-repeat;
        background-size: cover;
        min-height: 26vh;
    }
    #czwarta .zawartosc{}

    #piata{
		background: none;
        min-height: 80vh;
        display: flex;
		padding: 0;
		padding-bottom: 3rem;
    }
    #piata .zawartosc{
        padding-top: 1rem;
    }
    #piata h1{
		background: url("../img/mapaczarna.png");
		background-size: cover;
		width: 100%;
		height: 300px;
		display: flex;
		align-items: center;
		justify-content: center;
		top: 2rem;
        display: flex;
        font-size: 8vw;
    }
    #piata .zawartosc .tekst{
		margin: 0 auto;
        transform: translateY(0px);
        background: none;
		width: 90vw;
		backdrop-filter: blur( 0 );
    	-webkit-backdrop-filter: blur( 0 );
    }

    #piata .zawartosc .tekst:hover{
        transform: scale(1);
        transform: translateY(0);
    }

    #piata .zawartosc article{
        font-size: 1rem;
    }
    #piata .zawartosc a{}
    #piata .zawartosc a:hover{}

    #szosta{
        background: url(none);
        background-color: #733FA1;
    }
    #szosta .zawartosc{
        display: flex;
        flex-direction: column;
        margin-bottom: -5rem;
    }
    #szosta .zawartosc .blokprawy{}
    #szosta .zawartosc .blokprawy h1{
        display: flex;
        justify-content: flex-start;
        width: 23rem;
        font-size: 2.5rem;
        text-align: left;
    }
    #szosta .zawartosc .blokprawy .mobile{}
    #szosta .zawartosc .blokprawy .mobile img{}
    
    #szosta .zawartosc .blokprawy article{
            font-size: 1rem;
            width: 22rem;
            margin-top: -3rem;
        }
    #szosta .zawartosc .blokprawy article img{
        order: 1;
    }
    
    #szosta .zawartosc .bloklewy{
        order: 1;
    }
    
    #szosta .zawartosc .bloklewy img{
        order: 1;
    }
    #szosta .zawartosc .bloklewy article{
        font-size: 1rem;
        width: 22rem;
    }
    
    #stopka{}
    #stopka .zawartosc{
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
    }
    #stopka .zawartosc .orki{}
    #stopka .zawartosc .orki h1{
        display: flex;
        font-size: 5rem;
    }
    #stopka .zawartosc .orki article{}
    #stopka .zawartosc .orki article p{}

    #stopka .zawartosc .kontakt{}
    #stopka .zawartosc .kontakt article{}
    #stopka .zawartosc .kontakt article h5{
        display: flex;
        justify-content: center;
    }
    #stopka .zawartosc .kontakt article p{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    #stopka .zawartosc .kontakt article p a{
        margin: 0.5rem;
    }
    
    #stopka .zawartosc .newsletter{}
    #stopka .zawartosc .newsletter h5{
        display: flex;
        justify-content: center;
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    #stopka .zawartosc .newsletter form{}
    #stopka .zawartosc .newsletter form input:nth-child(1){}
    #stopka .zawartosc .newsletter form input:nth-child(2){}


}

@media all and (max-width:800px){
    .burger{
        display: block;
    }
    nav{
        display: none;
    }
}