/*
Theme Name: Llama2
Text Domain:
Version: 0.9
Description: FAST LLAMA - we've got your movie!
Tags:
Author: FAST llama - Bartłomiej Werewka
Author URI: https://fastllama.pl
*/

@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.5.0/font/bootstrap-icons.css");

:root {
    --bg-color: rgb(28, 28, 28);
    --bg-color2: #eaeaea;
    --bg-color-light: rgb(234, 234, 234);
    --font-family-main: Poppins, 'sans-serif';
    --font-small: 16pt;
    --font-big: 30pt;
    --accent-color: rgba(255, 188, 26, 0.86);
    --accent-color2: rgba(36, 100, 159, .86);
    --text-color: rgba(30, 30, 30, 1);
    --text-color-alpha: rgba(30, 30, 30, .7);
    --news-highlight-color: rgba(21, 98, 126, 0.8);
    --transition-fast: .2s;

    font-size: 16pt;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: var(--bg-color2);
    scroll-behavior: smooth;
    scroll-padding-top: 40px;
}

/* RESPONSYWNOŚĆ */
@media (max-width: 700px) {

}

.offcanvas-button {
    position: absolute;
    z-index: 3;
    top: 20px;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0 auto;

}


.intro-column {
    width: 50%;
    height: 100%;
    box-sizing: border-box;
}

#intro-left {
    padding: 30px;
    background-color: var(--bg-color);
    color: rgba(255, 255, 255, 0.7);
    overflow: hidden;
}

#intro-right {
    position: relative;
    overflow: hidden;
}

.video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 177.77vh;
    height: 100vh;
    transform: translate(-50%, -50%);
    pointer-events: auto;
    border: none;
}

section {
    min-height: 100vh;
    width: 100%;
    padding: 100px;
}

section.elementor-section {
    height: unset;
    width: unset;
    padding: 50px;
}

section#footer {
    height: unset;
    padding: 50px;
}

section.section-divider {
    min-height: unset;
}



@media (min-width: 700px) {
    .bigbig {
        font-size: 48pt;
        font-weight: 900;
    }
}

@media (max-width: 700px) {
    html, body {
        overflow-x: hidden;
    }
    /* Naprawiamy wyświetlanie filmu na urządzeniach mobilnych */
    /* Kontener wideo zajmuje całą wysokość ekranu */
    .video {
        height: 100vh;
        overflow: hidden;
        position: relative;
    }
    
    /* Film zajmuje całą wysokość ekranu (100vh) i jest wyśrodkowany */
    .video iframe {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 177.77vh;
        height: 100vh;
        transform: translate(-50%, -50%);
        pointer-events: auto;
        border: none;
    }

    section {
        min-height: 100vh;
        padding: 20px;
    }

    section.elementor-section {

        padding: 20px;
    }

    section#footer {

        padding: 20px;
    }

    #intro {
        flex-direction: column;
    }

    .intro-column {
        width: 100%;
        height: auto;
    }

    #intro-right {
        height: 100vh;
        width: 100vw;
        position: relative;
        left: 0;
        overflow: hidden;
    }

    /* Offcanvas styling */
    .offcanvas-body {
        padding: 1rem;
    }

    #intro-menu-mobile .intro-menu-item {
        /*margin: 0.5rem 0;*/
        display: block;
    }

    #intro-menu-mobile .intro-menu-item a {
        color: white;
        text-decoration: none;
        font-size: 1.2rem;
    }

    #testimonials-mobile {
        margin-top: 2rem;
    }

    .z-3 {
        z-index: 1030;
    }

    .bigbig {
        font-size: 36pt;
        font-weight: 900;
    }

}

.video .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-color2);
    backdrop-filter: grayscale(100%);
    cursor: pointer;
    z-index: 2;
    transition: opacity 0.3s ease;
}


#intro-menu {
    padding: 100px;
}

.imi-small {
    font-size: var(--font-small);
    color: #6c757d;
}

.intro-menu-item {
    font-size: var(--font-big);
    transition-duration: .3s;
}

.intro-menu-item:hover {
    font-size: 32pt;
    transition-duration: .3s;
    color: rgba(255, 255, 255, 1);
}

.overlay .play-icon {
    position: absolute;
    width: 80px;
    height: 80px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.3s ease;
    pointer-events: none; /* klik nie łapie SVG, tylko overlay */
}

.overlay:hover .play-icon {
    transform: translate(-50%, -50%) scale(1.1);
}



a {
    text-decoration: none;
    color: unset;
}



body {
    font-family: var(--font-family-main), sans-serif;
    /*background-color: var(--bg-color);*/
}


#front-menubar {
    position: sticky;
    top: 0;
    z-index: 999;
    background-color: white; /* albo inny kolor tła */
}



#intro {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: row;
    background-color: var(--bg-color);
    padding: unset;
}

#first {
    width: 100%;
}

#logo-area, .navi-row {
    background-color: var(--bg-color2);
}

.navi-row {
    border-bottom: 1px solid var(--text-color);
    padding: 0 10px;
}



#testimonials {
    position: absolute;
    bottom: 100px;
}

.category-thumbnail {
    min-height: 250px;
    width: 80%;
    background-color: var(--accent-color);
    margin-top: 20px;
    padding: 50px;
}

.category-thumbnail-xl {
    min-height: 450px;
    width: 100%;
    background-color: var(--accent-color2);
    margin-top: 20px;
    padding: 50px;
}

#page-wrapper {
    background-color: var(--bg-color2);
}

#breadcrumbs-wrapper {
    display: block;
    width: 100%;
    padding: 10px 220px;
}

#breadcrumbs-wrapper::before {
    content: '';
    background-color: black;
    height: 30px;
    width: 200px;
    display: inline-block;
    position: absolute;
    left: 0;
}

#line-separator {
    text-align: right;
}
