:root
{
    --primary: #ffc803;
    --secondary: #eeb702;
    --font: #0B1215;
    --sfont: #60676a;
    --bg: #FAF9F6;
    --sbg: #fff;
    font-size: 16px;
}

*
{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html
{
    scroll-behavior: smooth;
}

body
{
    background-color: var(--bg);
    font-family: "Poppins", sans-serif;
    color: var(--font);
}

a
{
    color: inherit;
    text-decoration: none;
}

.colorFont
{
    color: var(--font);
}

.colorSFont
{
    color: var(--sfont);
}

.colorBg
{
    color: var(--bg);
}

.colorSBg
{
    color: var(--sbg);
}

.colorPrimary
{
    color: var(--primary);
}

.colorSecondary
{
    color: var(--secondary);
}

.textSmall
{
    font-size: 0.8rem;
    line-height: 1.5;
    letter-spacing: 0.025rem;
    font-weight: normal;
}

.textSmallBold
{
    font-size: 0.8rem;
    line-height: 1.5;
    letter-spacing: 0.025rem;
    font-weight: 600;
}

.text
{
    font-size: 1.3rem;
    line-height: 1.5;
    letter-spacing: 0.025rem;
    font-weight: normal;
}

.textBold
{
    font-size: 1.3rem;
    line-height: 1.5;
    letter-spacing: 0.025rem;
    font-weight: 600;
}

.textMid
{
    font-size: 2.1rem;
    line-height: 1.3;
    letter-spacing: 0.045rem;
    font-weight: normal;
}

.textMidBold
{
    font-size: 2.1rem;
    line-height: 1.3;
    letter-spacing: 0.045rem;
    font-weight: 600;
}

.textBig
{
    font-size: 3.4rem;
    line-height: 1.2;
    letter-spacing: 0.06rem;
    font-weight: normal;
}

.textBigBold
{
    font-size: 3.4rem;
    line-height: 1.2;
    letter-spacing: 0.06rem;
    font-weight: 600;
}



@media only screen and (max-width: 30rem)
{
    .textBig
    {
        font-size: 2.7rem;
        line-height: 1.2;
        letter-spacing: 0.06rem;
        font-weight: normal;
    }

    .textBigBold
    {
        font-size: 2.7rem;
        line-height: 1.2;
        letter-spacing: 0.06rem;
        font-weight: 600;
    }
}

@media only screen and (max-width: 23rem)
{
    .textBig
    {
        font-size: 2.3rem;
        line-height: 1.2;
        letter-spacing: 0.06rem;
        font-weight: normal;
    }

    .textBigBold
    {
        font-size: 2.3rem;
        line-height: 1.2;
        letter-spacing: 0.06rem;
        font-weight: 600;
    }
}

.cont
{
    max-width: 90rem;
    padding: 0 1rem;
    margin: 0 auto;
}


/* NAV */

header
{
    background-color: var(--sbg);
    padding: 1.3rem 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
}

nav
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

nav > ol
{
    list-style-type: none;
    display: flex;
    align-items: center;
    gap: 2.1rem;
}

nav > ol > li > a
{
    padding: 0.8rem;
    transition: 0.5s;
    font-size: 1.1rem;
    font-weight: 500;
}

nav > ol > li > a:hover
{
    color: var(--font);
}

.logo
{
    /* height: 4rem; */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
}

.logo > img
{
    height: 4rem;
    width: auto;
}

.logo > span
{
    text-transform: uppercase;
    font-weight: 600;
}

.navSocialIcon
{
    font-size: 1.5rem;
}

.hamburger
{
    cursor: pointer;
    display: none;
}

.hamburger-item1, .hamburger-item2
{
    width: 1.3rem;
    height: 0.2rem;
    margin: 0.3rem 0;
    transition: 0.5s;
    background-color: var(--font);
}

.change .hamburger-item1
{
    transform: translate(0, 0) rotate(-45deg);
}

.change .hamburger-item2
{
    transform: translate(0, -0.46rem) rotate(45deg);
}

@media only screen and (max-width: 64rem)
{
    nav > ol
    {
        display: none;
        position: fixed;
        left: 0rem;
        top: 6rem;
        width: 100%;
        flex-direction: column;
        align-items: start;
        padding: 1rem 0;
        background-color: var(--sbg);
        border-top: 1px solid var(--sfont);
        border-bottom: 1px solid var(--sfont);
    }
    
    .hamburger
    {
        display: block;
    }
}

/* HERO */

#hero
{
    width: 100%;
    padding: 8.4rem 0 3.4rem 0;
}

.heroTextTop
{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3.4rem;
}

.heroTextTop > h1
{
    flex: 50%;
}

.heroTextTopSmall
{
    flex: 50%;
    display: flex;
    flex-direction: column;
    gap: 2.1rem;
    align-items: start;
}

.heroLinks
{
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 1.3rem;
}

.heroLinks > a
{
    border: 2px solid var(--primary);
    padding: 0.8rem 2.1rem;
    border-radius: 1rem;
    transition: 0.5s;
}

.heroLinks > a:first-child
{
    background-color: var(--primary);
}

.heroLinks > a:first-child:hover
{
    background-color: var(--secondary);
    border: 2px solid var(--secondary);
}

.heroImg
{
    margin-top: 3.4rem;
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: var(--sfont);
    border-radius: 1rem;
    overflow: hidden;
}

.heroImg > img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media only screen and (max-width: 65rem)
{
    .heroTextTop
    {
        flex-direction: column;
    }

    .heroImg
    {
        aspect-ratio: 4 / 3;
    }
}

@media only screen and (max-width: 48rem)
{
    .heroLinks
    {
        flex-direction: column;
    }
}

/* ABOUT */

#about
{
    width: 100%;
    padding: 8.8rem 0 3.4rem 0;
}

.aboutCont
{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3.4rem;
}

.aboutText
{
    flex: 50%;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 2.1rem;
}

.aboutImg
{
    flex: 50%;
    width: 100%;
    aspect-ratio: 4 / 3;
    background-color: var(--sfont);
    border-radius: 1rem;
    overflow: hidden;
}

.aboutImg > img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media only screen and (max-width: 64rem)
{
    .aboutCont
    {
        flex-direction: column;
    }
}

/* OFFER */

#offer
{
    width: 100%;
    padding: 8.8rem 0 3.4rem 0;
}

#offer > .cont > h1
{
    text-align: center;
    margin: 0 auto;
    max-width: 75%;
}

#offer > .cont > p
{
    text-align: center;
    margin: 1.3rem auto 0 auto;
    max-width: 75%;
}

.offerCont
{
    margin-top: 5.5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.1rem;
}

.offerItem
{
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 0.8rem;
    padding: 1.3rem;
    border-radius: 1rem;
    background-color: rgba(0, 0, 0, 0.1);
}

.offerItem > h2
{
    font-weight: bold;
}

@media only screen and (max-width: 64rem)
{
    #offer > .cont > h1
    {
        margin: 0;
        max-width: 100%;
        text-align: left;
    }

    #offer > .cont > p
    {
        margin: 1.3rem 0 0 0;
        max-width: 100%;
        text-align: left;
    }

    .offerCont
    {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 48rem)
{
    .offerCont
    {
        margin-top: 3.4rem;
        grid-template-columns: repeat(1, 1fr);
    }
}

/* KOlONIE */

#kolonie
{
    width: 100%;
    padding: 8.8rem 0 3.4rem 0;
}

.kolonia
{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3.4rem;
}

.kolonia:not(:first-child)
{
    margin-top: 3.4rem;
}

.koloniaText
{
    flex: 50%;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 2.1rem;
}

.koloniaImg
{
    flex: 50%;
    width: 100%;
    aspect-ratio: 4 / 3;
    background-color: var(--sfont);
    border-radius: 1rem;
    overflow: hidden;
}

.koloniaImg > img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media only screen and (max-width: 64rem)
{
    .kolonia
    {
        flex-direction: column;
    }

    .kolonia:nth-child(2n)
    {
        flex-direction: column-reverse;
    }
}

/* CONTACT */

#contact
{
    width: 100%;
    padding: 8.8rem 0 5.5rem 0;
}

.contactCont
{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3.4rem;
    margin-top: 3.4rem;
}

.contactInfo
{
    flex: 40%;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 2.1rem;
}

.contactInfoItem
{
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 0.8rem;
}

.contactInfoItem > span
{
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 0.8rem;
}

.contactInfoItem > span > i
{
    font-size: 2.1rem;
}

.contactInfoItem > a
{
    text-decoration: underline;
    transition: 0.5;
}

.contactInfoItem > a:hover
{
    color: var(--secondary);
}

.contactMap
{
    flex: 60%;
    aspect-ratio: 610/377;
    border-radius: 1rem;
    overflow: hidden;
}

.contactMap > iframe
{
    width: 100%;
    height: 100%;
}

#contact > .cont > p
{
    max-width: 75%;
    margin-top: 1.3rem;
}

@media only screen and (max-width: 64rem)
{
    .contactCont
    {
        display: block;
    }
    
    .contactMap
    {
        margin-top: 3.4rem;
    }

    #contact > .cont > p
    {
        max-width: 100%;
    }
}

/* FOOTER */

footer
{
    background-color: var(--sbg);
    width: 100%;
    padding: 3.4rem 0 3.4rem 0;
}

.footerLogo
{
    /* height: 4rem; */
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 0.8rem;
    width: max-content;
}

.footerLogo > img
{
    height: 4rem;
    width: auto;
}

.footerLogo > span
{
    text-transform: uppercase;
    font-weight: 600;
}

.footerNav
{
    list-style-type: none;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 2.1rem;
    margin-top: 2.1rem;
    font-weight: 500;
    font-size: 1.1rem;
}

.footerBottom
{
    margin-top: 3.4rem;
    font-size: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footerBottom > ol
{
    list-style-type: none;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 1.3rem;
}

.footerBottom > ol > li > a
{
    text-decoration: underline;
}

.footerAuthor
{
    margin-top: 5.5rem;
    font-size: 1rem;
    color: var(--sfont);
}

.footerAuthor > a
{
    color: var(--secondary);
}

@media only screen and (max-width: 64rem)
{
    .footerBottom
    {
        flex-direction: column;
        align-items: start;
        gap: 1.3rem;
    }
}

@media only screen and (max-width: 48rem)
{
    .footerNav
    {
        flex-direction: column;
        align-items: start;
        gap: 1.3rem;
    }

    .footerBottom > ol
    {
        flex-direction: column;
        align-items: start;
    }
}


/* KOlONIA */

#kolonia
{
    width: 100%;
    padding: 8.8rem 0 3.4rem 0;
}

#kolonia > div
{
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
}

#kolonia > div > ul > li
{
    margin-left: 1rem;
}

.center
{
    text-align: center;
}

.mg-top
{
    margin-top: 2.1rem;
}

/*** INFO ***/

#info
{
    width: 100%;
    padding: 8.8rem 0 3.4rem 0;
}