/* GENERAL STYLES V0.5*/
/*  FONTS ---------------------------- */
/* Urbanist */
@font-face {
    font-family: 'Poppins', sans-serif;
    src: url('../fonts/Poppins/Poppins-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: extralight;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins/Poppins-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: light;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Urbanist';
    src: url('../fonts/Poppins/Poppins-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins/Poppins-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: bold;
    font-display: swap;
}

@font-face {
    font-family: 'Urbanist';
    src: url('../fonts/Poppins/Poppins-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: extrabold;
    font-display: swap;
}


@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins/Poppins-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: black;
    font-display: swap;
}

/* ================================================ */
/*  SECTION COLORS */
/* ================================================ */

:root {
   
    --medium-grey: #6D6D6D;
    --graphite: #3A3A3A;
    --red: #E30000;
    --light-red: #ec4d4d;
    --blue: #5CB8D9;
    --navy-blue: #090319;;
    --black: #000;
    --white: #fff;
}

/* ================================================ */
/*  SECTION GENERAL STYLES */
/* ================================================ */

html {
    scroll-behavior: smooth;
}


body {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    color: #fff;
    margin: 0;
    overflow-x: hidden;
    overflow-y: auto;
    background: #000;
}

main {
    min-height: calc(80vh - 120px);
}

section {
    position: relative;
    padding: 30px 0;
}

div,
p,
a,
span,
h1,
h2,
h3,
h4,
h5,
h6 {
    box-sizing: border-box;
}

img {
    height: auto;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

h1, h2, h3 {
    font-family: hackney, sans-serif;
}

h1 {
    font-weight: 400;
    font-style: normal;
    font-size: 2.5rem;
    color: #fff;

}

h2 {
    font-weight: 600;
    font-size: 4rem;
}

h3 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

h4, h5, h6 {
    font-family: myriad-pro, sans-serif;
    font-size: 1rem;
    line-height: 1rem;
}

h4 {
    font-size: 1.1rem;
    font-weight: 600;
}

h5 {
    font-size: 1rem;
    font-weight: 600;
}

p {
    font-weight: 300;
}

a {
    text-decoration: none;
    color: inherit;
    font-weight: 300;
    transition: 0.3s ease-in-out;
}

a:hover {
    text-decoration: none;
    /* text-shadow: 0 0 3px rgba(255, 255, 255, 0.8); */
}

ul {
    padding-left: 0;
}

li {
    list-style: none;
}

strong {
    font-weight: 600;
}


.hidden {
    display: none; /* this hidesn content also in Gutenberg */
} 

.content-hidden {
    display: none;
}


.uppercase {
    text-transform: uppercase;
}

.text-white {
    color: #fff;
}

.text-blue {
    color: var(--blue) !important;
}

.no-padding {
    padding: 0 !important;
}

.no-margin {
    margin: 0 !important;
}

.no-margin-bottom {
    margin-bottom: 0;
}

.button-center {
    margin: 0 auto;
}

.section-title {
    margin-bottom: 60px;
    font-size: 3.5rem;
}

/* Margins ---------------------------- */

.margin-top-xxs {
    margin-top: 10px;
}
.margin-top-xs {
    margin-top: 20px;
}

.margin-top-sm {
    margin-top: 40px;
}

.margin-top-md {
    margin-top: 80px;
}

.margin-top-lg {
    margin-top: 120px;
}

.margin-top-xl {
    margin-top: 160px;
}


.margin-bottom-xxs {
    margin-bottom: 10px;
}
.margin-bottom-xs {
    margin-bottom: 20px;
}


.margin-bottom-sm {
    margin-bottom: 40px;
}

.margin-bottom-md {
    margin-bottom: 80px;
}

.margin-bottom-lg {
    margin-bottom: 120px;
}

/* Padding ---------------------------- */
.padding-top-xxs {
    padding-top: 10px;
}
.padding-top-xs {
    padding-top: 20px;
}

.padding-top-sm {
    padding-top: 40px;
}

.padding-top-md {
    padding-top: 80px;
}

.padding-top-lg {
    padding-top: 120px;
}

.padding-top-xl {
    padding-top: 160px;
}

.padding-bottom-xs {
    padding-bottom: 20px;
}

.padding-bottom-xxs {
    padding-bottom: 10px;
}
.padding-bottom-sm {
    padding-bottom: 40px;
}

.padding-bottom-md {
    padding-bottom: 80px;
}

.padding-bottom-lg {
    padding-bottom: 120px;
}

.padding-sides-md {
    padding: 0 5%;
}


/* MEDIA QUERIES ---------------------------- */

@media (max-width: 576px) {
    .claim h1 {
        font-size: 1.7rem;
        line-height:1.7rem;
    }
}



/* ================================================ */
/* SECTION NAVIGATION */
/* ================================================ */

.navbar-brand-img {
    max-width: 80px;
}

.navbar-nav {
    padding-inline: 10%;

    & li {
        text-align: center;
        margin-bottom: 1rem;
    }

    & a {
        font-weight: 600;
        transition: 0.3s ease-in-out;

        &:hover {
            color: var(--red);
        }
    }

 }
.offcanvas-header {
    background: #191919;
}
 .offcanvas-body {
    background: linear-gradient(160deg, #191919 0%,var(--navy-blue) 100%);
 }

 .offcanvas-logo {
    display: flex;
    justify-content: center;
    margin-top: 10px;
   

    & img {
        max-width: 120px;
    }
 }

/* ================================================ */
/* SECTION LAYOUT */
/* ================================================ */

.mobile {
    display: none !important;
}

.desktop {
    display: block !important;
}

.container {
    max-width: 1200px;
}

.regular-page {
    & h2 {
        display: inline-block;
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--navy-blue);
        margin-bottom: 10px;
        margin-top: 20px;
    }

    & a {
        text-decoration: underline;
        /* font-weight: 500; */
    }

    & ol {
        padding-left: 2rem;

        &>li {
            list-style-type: unset
        }
    }

    & ul {
        padding-left: 20px;
        margin-bottom: 20px;

        & li {
        
            position: relative;
        }

        & li:before {
            content: "•";
            position: absolute;
            left: -1em;
            font-size: 20px;
            line-height: 1;
        }
    }

    & img {
        margin-top: 15px;
        margin-bottom: 15px;
    }

}





/* ================================================ */
/* SECTION OTHER COMMON ELEMENTS */
/* ================================================ */
.text-center {
    text-align: center;
}
.text-red {
    color: var(--red);
}

.text-green {
    color: var(--green);
}

.section-title {
    font-weight: 700;
    text-transform: uppercase;
}

/* ================================================ */
/* SECTION DEFAULT WORDPRESS STYLES */
/* ================================================ */

/* ================================================ */
/* SECTION TABLES */
/* ================================================ */


/* ================================================ */
/* SECTION BUTTONS */
/* ================================================ */

.cta-row {
    /* display: flex;
    justify-content: center; */
    margin-top: 50px;
    min-height: 80px;
}

.cta {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    width: 288px;
    aspect-ratio: 288/55;
    font-family: "hackney", sans-serif;
    font-size: 2.3rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: 0.3s ease-in-out;

    & span {
        z-index: 2;
    }

}

.cta-primary {
    color: #fff;
    /* background-color: var(--red); */
    background: linear-gradient(90deg, #E30000 12%, #E6AE17 100%);
    background-size: 300%;
    background-position: 0 100%;
    box-shadow: 0 0 20px 0 rgba(223, 25, 42, 0.5);
    position: relative;
    overflow: visible;

    &:before {
        content: "";
        position: absolute;
        background: url('../images/cta-rectangle.webp') no-repeat center center;
        background-size: cover;
        inset: -12px;
        width: 105;
        height: auto;
        transform: none;
        opacity: 0.6;
        z-index: 3;
        transition: 0.3s ease-in-out;
   
    }

    &:hover {
        background-size: 100%;
        background-position: 100% 0;
        box-shadow: 0 0 20px 0 rgba(223, 25, 42, 0.8);
        font-size: 2.4rem;
    }

    &:hover:before {
        opacity: 1;
    }
}

.cta-outline {
    position: relative;
    isolation: isolate;
    overflow: visible;
    background: transparent;

    box-shadow: 0 0 20px 0 rgba(223, 25, 42, 0.5);

    transition:
        box-shadow 0.3s ease-in-out,
        font-size 0.3s ease-in-out;

    /* Gradient fill */
    &::after {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: inherit;
        background: linear-gradient(90deg, #e30000 12%, #e6af17 100%);
        opacity: 0;
        z-index: -1;
        pointer-events: none;
        transition: opacity 0.3s ease-in-out;
    }

    /* Decorative outline */
    &::before {
        content: "";
        position: absolute;
        inset: -12px;
        background: url('../images/cta-rectangle.webp') no-repeat center;
        background-size: cover;
        opacity: 0.6;
        z-index: 3;
        pointer-events: none;
        transition: opacity 0.3s ease-in-out;
    }

    &:hover {
        box-shadow: 0 0 20px 0 rgba(223, 25, 42, 0.8);
        font-size: 2.1rem;
    }

    &:hover::after,
    &:hover::before {
        opacity: 1;
    }
}


/* =============================== */
/*  SECTION FOOTER
/* =============================== */


footer {
    position: relative;
    min-height: 200px;
    color: #fff;
    padding-top: 4%;
    padding-bottom: 2%;
    /* background: linear-gradient(270deg, #0D0824 0%, #03030E 100%); */

    & p {
        margin-bottom: 0;
    }

    & h4 {
        font-size: 1.1rem;
    }
}

.zabka-logo {
    max-width: 150px;
    margin-bottom: 10px;
}

.footer-title {
    /* font-family: "cheddar-gothic-rough", sans-serif; */
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.footer-logo {
    max-width: 120px;
    margin: auto;
    margin-bottom: 10px;
}

.organizer-wrapper {
    margin-top: 20px;
    padding-top: 20px;
    position: relative;

    &:before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 150px;
        height: 1px;
        background: #fff;
    }
    
}


.pijodpowiedzialnie-wrapper img {
    max-width: 120px;
     margin-bottom: 10px;
 }
