/* IMPORT FONTÓW */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

:root{
    --kolor-podstawowy1:#0E2A18;
    --kolor-podstawowy2:#4A192C;
    --kolor-tekst-naglowki:#E2C381;
    --kolor-nawigacja:#000000;
    --kolor-jasny:#EFE9F4;
}
*{
    box-sizing: border-box;/*paddingi nie zqwiększjaą szerokości boxu*/
}
html{
    scroll-behavior: smooth;
}
body{
    background-color: var(--kolor-podstawowy1);
}

/* Globalne selektory */
p{
    line-height: 120%;
    font-weight: 300;
}
h1, h2, h3, h4, h5, h6{
    font-family: "Playfair Display", serif;
}
h1{}
h2{
    font-size: 64px;
    margin-bottom: 40px;
    font-weight: 600;
    color: var(--kolor-tekst-naglowki);
    /* max-width: 700px; */
}
h3{
    font-size: 30px;
    font-weight: 500;
    margin: 15px 0;
}
h4{
    font-size: 20px;
    font-weight: 500;
    margin: 10px 0;
}
h5 {
    font-size: 32px; 
    font-weight: 500;
    color: var(--kolor-tekst-naglowki); 
    margin-bottom: 15px;
}
h6{
    font-size: 12px;
    margin: 40px 0 0 0;
}

/* Nawigacja */
#nawigacja{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--kolor-nawigacja);
    z-index: 1000;
}

.nav-zawartosc{
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo img{
    height: 42px;
    display: block;
}

/* Menu */
.menu{
    display: flex;
    gap: 20px;
}

.menu li a{
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--kolor-tekst-naglowki);
    text-decoration: none;
    padding: 10px 18px;
    transition: background-color 0.3s, color 0.3s;
}

/* Hover */
.menu li a:hover{
    background-color: var(--kolor-podstawowy2);
    color: var(--kolor-jasny);
    border-radius: 8px;
}

section{
    padding: 60px 20px 0;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    /* odsuniecie od kazdej sekcji */
    scroll-margin-top: 72px;
}
.zawartosc{
    max-width: 1200px;
    width: 100%;
    /* background-color: red; */
    display: flex;
    align-items: center;
    gap: 60px;
    /* overflow: hidden; */

}


/* Home */
.home{
    height: 800px;
    /* position: relative; */
    background-color: var(--kolor-nawigacja);
    background-image: url(../img/lisc_02.jpg);
    /* background-blend-mode: screen; */
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto 800px;
    background-size: cover;
    /* padding-top: 90px; */
}
.home .zawartosc{
    flex-direction: column;
    /* background-color: blue; */
    align-items: flex-start;
}

/* Zawartość home */
.home-zawartosc{
    max-width: 1200px;
    margin: 0 auto;
    /* padding: 120px 30px 0; */
}

/* Tytuł */
.home h1{
    /* margin-top: 50px; */
	font-family: "Playfair Display", serif;
    font-size: 90px;
    font-weight: 400;
    line-height: 1.05;
    color: var(--kolor-tekst-naglowki);
}

.home h1 span{
    font-weight: 700;
}

/* Podtytuł */
.home p{
    margin-top: 25px;
    max-width: 550px;
    font-family: "Montserrat", sans-serif;
    font-size: 32px;
    font-weight: 300;
    color: var(--kolor-jasny);
}

/* Z Serca Tropików */
.tropiki{
    width: 100%;
    height: 800px;
    background-color: var(--kolor-podstawowy1);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Szerokość Contentu */
.tropiki-kontener{
    width: 1150px;
    /* height: 800px; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 60px;
}

/* Tekst */
.tropiki-tekst{
    max-width: 700px;
}

.tropiki-tekst h4{
    font-family: "Playfair Display", serif;
    font-size: 40px;
    font-weight: 500;
    color: var(--kolor-tekst-naglowki);
    margin-bottom: 30px;
}

.tropiki-tekst p{
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--kolor-jasny);
    margin-bottom: 22px;
}

.tropiki-tekst .lista-tytul{
    margin-top: 30px;
    font-weight: 500;
}

/* Listy – styl jak na screenie */
.tropiki-tekst ul{
    list-style: none;      /* usuwamy domyślne kropki */
    padding-left: 0;
    margin: 12px 0 26px 0;
}

.tropiki-tekst ul li{
    position: relative;
    padding-left: 18px;    /* miejsce na kropkę */
    margin-bottom: 10px;
    line-height: 1.7;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--kolor-jasny);
}

/* kropka */
.tropiki-tekst ul li::before{
    content: "•";
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 14px;
    color: var(--kolor-tekst-naglowki);
}


.tropiki-grafika img{
    width: 658px;
    height: 791px;
    object-fit: contain;
    display: block;
}
/* Kontener główny sekcji */
.pielegnacja {
    width: 100%;
    height: 800px; 
    background-color: var(--kolor-podstawowy2);    
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 100px;
    /* scroll-margin-top: 90px; */
    }
.pielegnacja-kontener {
    width: 100%;
    max-width: 1420px;
    padding: 0 30px;
    text-align: center; 
}

.pielegnacja-kontener h2 {
    margin-bottom: 140px;
}

/* Wrapper na 4 kolumny z ikonami */
.ikony-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    max-width: 1100px; 
    margin: 0 auto;
}

/* Pojedyncza kolumna */
.ikona-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* ikony */
.ikona-img {
    height: 170px; 
    width: auto;
    margin-bottom: 70px;
}
   
/* Stylizacja tekstu pod ikonami */
.ikona-item p {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--kolor-tekst-naglowki);
    max-width: 260px;
    margin: 0 auto; 
}
/* Sekcja 4: Roślina Modląca się */
.modlaca{
    width: 100%;
    height: 800px;
    background-color: var(--kolor-podstawowy1);
    display: flex;
    justify-content: center;
    align-items: center;
    /* scroll-margin-top: 90px; */
}

.modlaca-kontener{
    width: 1220px;
    height: 800px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Grafika */
.modlaca-grafika{
    width: 630px;
    height: 800px;
    display: flex;
    align-items: flex-end;
}

.modlaca-grafika img{
    width: 630px;
    height: 750px;
    object-fit: contain;
    display: block;
}

/* Tekst */
.modlaca-tekst{
    width: 520px;
}

/* Nagłowek */
.modlaca-tekst h4{
    font-family: "Playfair Display", serif;
    font-size: 40px;
    font-weight: 500;
    color: var(--kolor-tekst-naglowki);
    margin-bottom: 35px;
}

/* PARAGRAFY */
.modlaca-tekst p{
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--kolor-jasny);
    margin-bottom: 22px;
}
.modlaca-tekst em{
    font-style: italic;
}

/* Sekcja 5 – Drama Queen */
.drama{
    width: 100%;
    background-color: var(--kolor-podstawowy2);
    display: flex;
    justify-content: center;
    padding-bottom: 60px;
}
.drama .zawartosc{
    flex-direction: column;
}
.drama article{
    width: 100%;
    display: flex;
    background-color: red;
    padding: 10px;
}
.kol{
    background-color: blue;
    padding: 10px;
}
/* 
.drama-kontener{
    width: 1100px;
    padding: 120px 60px;
} */

.drama-tytul{
    text-align: center;
    margin-bottom: 80px;
}

/* Siatka 3 Kolumny */
.drama-grid{
    display: grid;
    grid-template-columns: 360px 1fr 1fr;
    column-gap: 80px;
    row-gap: 60px;
    align-items: start;
}

/* Obrazy */
.drama-grid img{
    max-width: 360px;
    border-radius: 6px;
    display: block;
}

/* Nagłówki */
.drama-grid h4{
    font-family: "Playfair Display", serif;
    font-size: 22px;
    color: #b2024a;
    margin-bottom: 12px;
}

/* Tekst */
.drama-grid p{
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--kolor-tekst-naglowki);
}

/* FAQ */
.faq {
    width: 100%;
    height: 800px;
    background-color: var(--kolor-podstawowy1);
    display: flex;
    justify-content: center;
    align-items: center;
    /* scroll-margin-top: 90px; */
}
.faq .zawartosc{
    align-items: stretch;
}
.faq-kontener {
    width: 100%;
    max-width: 1100px;
    padding: 0 60px;
}

/* Nagłówek sekcji */
.faq-kontener h2 {
    text-align: center;
    margin-bottom: 80px;
}

/* Pojedyncze pytanie */
.faq-item {
    border-bottom: 1px solid rgba(226, 195, 129, 0.3);
    padding: 30px 0;
}
.faq-item:last-child {
    /* border-bottom: none; */
}

/* Odpowiedź - kontener flex */
.faq-item p {
    display: flex;          
    align-items: flex-start; 
    gap: 15px;       
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--kolor-jasny);
    max-width: 850px;
    padding-left: 0;       
    position: relative;
}

/* Litera A */
.faq-item p::before {
    content: "A:";
    display: inline-block;
    flex-shrink: 0;         
    width: 30px;    
    line-height: 1;     
    font-family: "Playfair Display", serif;
    font-size: 22px;
    font-weight: 500;
    color: var(--kolor-jasny);  
    position: static; 
}

/* Pytanie - kontener flex */
.faq-item h4 {
    display: flex;
    align-items: flex-start;
    gap: 15px;    
    padding-left: 0;       
    font-family: "Playfair Display", serif;
    font-size: 28px;
    font-weight: 500;
    color: var(--kolor-tekst-naglowki);
    margin-bottom: 15px;
}

/* Litera Q */
.faq-item h4::before {
    content: "Q:";
    flex-shrink: 0;
    width: 30px;    
    line-height: 1.2;
    font-size: 28px;
    font-weight: 500;
    color: var(--kolor-tekst-naglowki);    
    position: static;
}

/* Pytanie */
.faq-item h4 {
    font-family: "Playfair Display", serif;
    font-size: 28px;
    font-weight: 500;
    color: var(--kolor-tekst-naglowki);
    margin-bottom: 15px;
}

/* Odpowiedź */
.faq-item p {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--kolor-jasny);
    max-width: 850px;
}

/* Stopka */
.stopka {
    width: 100%;
    max-width: 2000px;
    height: 260px;
    background-color: #000;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
	padding-top: 10px;
}

.stopka-kontener {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

/* Logo */
.stopka .zawartosc{
    flex-direction: column;
}
.stopka-logo img {
    display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: -10px;
	}

.stopka-nazwa {
    font-family: "Playfair Display", serif;
    font-size: 14px;
    letter-spacing: 4px;
    color: #ffffff;
	text-transform: uppercase;
}

/* Social media */
.stopka-social {
    display: flex;
    gap: 18px;
}
.stopka-social a {
    color: #ffffff;
    font-size: 18px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}
.stopka-social a:hover {
    opacity: 0.6;
}
/* Copyright */
.stopka-copy {
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    color: #888;
    padding-top: 60px;
}

