/* IMPORT FONTU Z GOOGLE */
@import url('https://fonts.googleapis.com/css2?family=Elms+Sans:ital,wght@0,100..900;1,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

*{
    box-sizing: border-box;
}

:root{
    --kolor-ciemny:#322C14;
    --kolor-orange:#FB9501;
    --kolor-bg:#F4E6CF;
    --kolor-white:#F5F5F5;
    --kolor-black:#000;
    --bg-semi-white:rgba(255,255,255,.3);
    --bg-footer:rgba(245,245,245,.84);
}

.orange {
    color: var(--kolor-orange);
}

.block-common {
    height: 900px;
    display: flex;
    justify-content: center;
    padding-top: 120px;
}

.title-large {
    font-size: 64px;
    font-weight: 800;
    color: var(--kolor-ciemny);
}

html{
    scroll-behavior:smooth;
}
body{
    font-family: "Inter", sans-serif;
}

h2, .block3-title, .block4 h2, .block5 h2 {
    font-size: 64px;
    font-weight: 800;
    color: var(--kolor-ciemny);
}

h2{
    margin-bottom:40px;
}

/* MENU */
.menu{
    position:fixed;
    width:100%;
    z-index:1000;
    display: flex;
    justify-content: flex-end;
    padding: 20px;
}
.menu-inner{
    background:var(--kolor-bg);
    border-radius: 60px;
    display:flex;
    gap: 10px;
}
.menu a{
    color: var(--kolor-ciemny);
    text-decoration: none;
    font-size: 16px;
    padding: 20px 30px;
}
.menu a:hover{
    text-decoration:underline;
}

/* WSZYSTKIE SEKCJE */
section{
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    padding: 20px;
}
.zawartosc{
    max-width: 1200px;
    width: 100%;
}


/* BLOK 1 */
.blok1{
  background: url(../img/sekcja1-bg.png) no-repeat fixed;
  background-color:var(--kolor-bg);
}
.blok1 h1{
  font-family: 'Judson', serif;
  text-align: center;
  font-size:270px;
  font-style:italic;
  letter-spacing:.07em;
  margin:0 0 24px;
  color:var(--kolor-black);
}
.blok1 p{
  font-size:20px;
  font-style: italic;
  color:var(--kolor-ciemny);
  text-align: center;
  margin-bottom: 10px;
}

/* BLOK 2 */
.block2, .block3{
    height:900px;
    display:flex;
    justify-content:center;
    padding-top:120px;
}
.block2{
    background:#fff;
}
.block2 article{
    margin-left: 375px;
    margin-bottom: 150px;
}
.block2 p{
    max-width: 700px;
    font-size: 24px;
    color:var(--kolor-ciemny);
}

.block2-quote-wrap{
    display: flex;
    gap: 100px;
}

/* BLOK 3 */
.block3{ 
    background-image: url(../img/3.png);
    background-size:cover;
    background-position:center;
}

.block3-left{
  margin-top:60px; 
}

.block3-inner{
    max-width:1200px;
    display:flex;
    gap:100px;
    justify-content: space-between;
    align-items: flex-start;
    padding:0;}

.block3-title{
    font-size:64px;
    font-weight:800;
    color:var(--kolor-ciemny);
    margin-bottom:1px}

.block3-title .orange{
    color:#FB9501}

.block3-subtitle{
    color: var(--kolor-white);
    font-size:34px;
    font-style:italic;
    margin-bottom:24px}

.block3-card-inner{
  width:280px;
  height:300px;
  background:var(--kolor-orange);
  border-radius:24px;
  padding:24px;
  color:var(--kolor-white);
  display:flex;
  align-items:flex-start;

}
/* */
.block3-ingredients{
    width:auto;
    max-width: 420px;
    background:var(--bg-semi-white);
    backdrop-filter:blur(20px);
    border-radius:24px;
    padding:23px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    font-size:16px;
}

.block3-ingredients strong {
    display: block;
    font-weight: 700;
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--kolor-ciemny);
}

.block3-ingredients li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.block3-ingredients li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--kolor-orange);
    font-weight: bold;
}

/* BLOK 4 */
.block4{
    background: var(--kolor-bg);
    background-size: 900px 600px;
    padding:80px 0}

.block4 h2{
    text-align:center;
    font-size:64px;
    color:var(--kolor-ciemny)}

.block4 h2 .orange{
    color:#FB9501}

.block4-layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
  max-width: 1400px;
  margin: 0 auto;
}

.block4-col {
  flex: 1;
  padding: 10px;
}

.block4-image {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.block4-image img {
  width: 360px;
  max-width: 100%;
  height: auto;
}


.block4 h4{
    font-size:20px;
    font-weight:800;
    color:var(--kolor-ciemny)}

.block4 p{
    padding: 10px;
    font-size:20px;
    color:var(--kolor-ciemny)}

.block4 .orange-word{color:#FB9501}

/* BLOK 5 + FOOTER BG */
#footer-tlo{
    background: url(../img/wrapper-footer.png) no-repeat center center fixed;
    background-position: cover;
}
/* BLOK 5 */
.block5{
    padding-top:40px;
}
.block5 h2{
    font-size:64px;
    color:var(--kolor-ciemny);
    margin-bottom:24px;
}
.block5 h2 .orange{color:#FB9501}
.block5-section{
    font-size:16px;
    font-weight:700;
    margin:12px 0}
.block5-list{
  list-style:disc inside;
  padding-left:0;
  margin:16px auto 32px;
  display:inline-block;
  text-align:left;
}
.block5-list li{
    font-size:16px;
    margin-bottom:12px}

/* FOOTER */
.contact{
    height:340px;
    display:flex;
    align-items:center;
    justify-content:center}
.contact .zawartosc{
    background:var(--bg-footer);
    border-radius:48px;
    padding:48px 64px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.footer-col{
    flex-direction: 1 1 300px;
}
.logo{
    position:relative;
    display:inline-block}

.logo-mark{
    position:absolute;
    width:74px;
    height:77px;
    background:var(--kolor-orange);
    border-radius:50%;
    left:8px;
    bottom:10px;
    z-index:0}

.logo-text{
    position:relative;
    z-index:1;
    font-family:Meddon,cursive;
    font-size:48px}
.footer-col h4{
    font-size:14px;
    color:var(--kolor-orange)}
.footer-col p,.footer-col li{font-size:13px;}

