@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

.grid-container {
    background: #101010; /* Zmieniono tło na jednolity kolor #101010 */
    /*background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);*//*  Ciemne, bogate tło */
    color: #e0e0e0; /* Jasny kolor tekstu */
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    margin: 0; /* Usuń domyślny margines body */
}
.container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 32px; 
    padding-bottom: 32px; 
}

/* Responsywność nagłówka */
@media (min-width: 768px) { /* md breakpoint */
    .glamour-heading {
        font-size: 3.75rem; /* Odpowiednik md:text-6xl */
    }
}

.grid-container {
    display: grid;
    grid-template-columns: 1fr; /* Odpowiednik grid-cols-1 */
    gap: 2rem; /* Odpowiednik gap-8 */
}

/* Responsywność siatki */
@media (min-width: 640px) { /* sm breakpoint */
    .grid-container {
        grid-template-columns: repeat(2, 1fr); /* Odpowiednik sm:grid-cols-2 */
    }
}

@media (min-width: 768px) { /* md breakpoint */
    .grid-container {
        grid-template-columns: repeat(3, 1fr); /* Odpowiednik md:grid-cols-3 */
    }
}

@media (min-width: 1024px) { /* lg breakpoint */
    .grid-container {
        grid-template-columns: repeat(4, 1fr); /* Odpowiednik lg:grid-cols-4 */
    }
}

.card {
    background-color: rgba(255, 255, 255, 0.05); /* Lekko przezroczysta biel dla kart */
    backdrop-filter: blur(5px); /* Efekt mrożonego szkła */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem; /* Odpowiednik rounded-xl */
    padding: 1.5rem; /* Odpowiednik p-6 */
    display: flex;
    flex-direction: column; /* Odpowiednik flex-col */
    align-items: center; /* Odpowiednik items-center */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); /* Początkowy subtelny cień */
}
.card:hover {
    transform: translateY(-8px) scale(1.02); /* Uniesienie i lekkie powiększenie po najechaniu */
    /*box-shadow: 0 8px 30px rgba(255, 105, 180, 0.4), 0 0 40px rgba(255, 105, 180, 0.2); Różowy blask po najechaniu */
    box-shadow: 0 8px 30px rgba(2, 119, 118, 0.4), /* Głęboki zielono-niebieski */
                0 0 40px rgba(41, 208, 242, 0.2); /* Jaśniejszy niebieski */
}

.card-image {
    width: 12rem; /* Odpowiednik w-36 */
    height: 12rem; /* Odpowiednik h-36 */
    margin-bottom: 1rem; /* Odpowiednik mb-4 */
    border: 4px solid #fff; /* Odpowiednik border-4 border-pink-400 */
    object-fit: contain;
    object-position: center;
    padding: 0rem;
}

.card h2 {
    font-size: 1rem; /* Odpowiednik text-xl */
    font-weight: 600; /* Odpowiednik font-semibold */
    color: #ffffff; /* Odpowiednik text-white */
    margin-bottom: 0.25rem; /* Odpowiednik mb-1 */
    height: 80px;
    text-align: center;
}

.card p {
    font-size: 0.875rem; /* Odpowiednik text-sm */
    color: #d1d5db; /* Odpowiednik text-gray-300 */
    text-align: center;
}
.card .trim{
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5; /* Przytnij tekst po 3 liniach */
    -webkit-box-orient: vertical;
    text-overflow: ellipsis; /* Dodaje trzy kropki na końcu, choć -webkit-line-clamp już to robi */
    height: 100px;
}

.single-ambasador #inner-body{
    background-color: #101010;
}
.single-ambasador h1, h2{
    color: #fff;
    padding: 15px;
}

.page-id-9825 h1, h2{
    color: #fff;
    padding: 15px;
}
.page-id-9825 h2{
    font-family: Montserrat;
    font-weight: 700;
    font-size: 42px;
    line-height: 100%;
    letter-spacing: 0%;
}



.page-id-9825 .aux-breadcrumbs span {
    color: #fff;
}
.page-id-9825 .aux-breadcrumbs span a {
    color: #fff;
}
.page-id-9825 #inner-body{
    background: #000;
}

.page-id-9825{
    #site-title .aux-container, .aux-container #primary{
        max-width: 1280px; /* Odpowiednik max-w-7xl */
        margin-left: auto;
        margin-right: auto;
    }

    .card-amb-gold {
        width: 280px;
        height: 170px;
        background: linear-gradient(90deg, rgba(105, 64, 2, 0.2) 0%, rgba(242, 146, 0, 0.2) 100%);
        /*background: linear-gradient(90deg, rgba(197, 166, 110, 0.5), rgba(217, 140, 0, 0.5), rgba(110, 91, 62, 0.5), rgba(155, 125, 77, 0.5));*/
        /* border: 1px solid rgba(255, 255, 255, 0.05); */
        border-radius: 10px;
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        box-shadow: 0 8px 24px rgba(0,0,0,0.5);
        padding: 25px;
        color: #fff;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .card-amb-gold:hover {
        /* background: linear-gradient(90deg, rgba(1, 130, 131, 0.9), rgba(3, 180, 200, 0.9), rgba(3, 230, 232, 0.9));
        box-shadow: 0 8px 24px rgba(0, 150, 150, 0.25), 0 0 8px rgba(0, 180, 180, 0.2); */

        /* background: linear-gradient(90deg, rgba(0, 80, 120, 0.4), rgba(0, 180, 255, 0.4));
        box-shadow: 0 10px 28px rgba(0, 140, 200, 0.5); */


        background: linear-gradient(90deg, rgba(60, 40, 10, 0.9), rgba(130, 80, 20, 0.9));
        box-shadow: 0 10px 28px rgba(120, 80, 30, 0.5);
        transform: scale(1.02);
        color: #fff;
        transition: all 0.3s ease;
    }

    /* .card-amb-gold:hover {
        background: linear-gradient(90deg, rgba(90, 55, 5, 0.85), rgba(180, 110, 20, 0.85), rgba(60, 45, 30, 0.85));
        box-shadow: 0 12px 32px rgba(255, 200, 100, 0.45), 0 0 15px rgba(255, 180, 80, 0.3);
        transform: scale(1.03);
        color: #fff;
        transition: all 0.3s ease;
    } */

    .card-amb-green {
        width: 280px;
        height: 170px;
        background: linear-gradient(90deg, rgba(1, 106, 107, 0.2) 0%, rgba(2, 207, 209, 0.2) 100%);
        /* border: 1px solid rgba(255, 255, 255, 0.05); */
        border-radius: 10px;
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        box-shadow: 0 8px 24px rgba(0,0,0,0.5);
        padding: 25px;
        color: #fff;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        transition: all 0.3s ease;
    }

    .card-amb-green:hover {
        background: linear-gradient(90deg, rgba(1, 130, 131, 0.35), rgba(3, 230, 232, 0.35));
        box-shadow: 0 10px 28px rgba(0, 180, 180, 0.5);
        transform: scale(1.02);
        color: #fff;
    }

    .card-amb-blue {
        width: 280px;
        height: 170px;
        background: linear-gradient(90deg, rgba(0, 59, 85, 0.2) 0%, rgba(0, 159, 227, 0.2) 100%);
        /* border: 1px solid rgba(255, 255, 255, 0.05); */
        border-radius: 10px;
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
        padding: 25px;
        color: #fff;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        transition: all 0.3s ease;
    }

    .card-amb-blue:hover {
        background: linear-gradient(90deg, rgba(0, 80, 120, 0.4), rgba(0, 180, 255, 0.4));
        box-shadow: 0 10px 28px rgba(0, 140, 200, 0.5);
        transform: scale(1.02);
        color: #fff;
    }

    .logo-text {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 24px;
        padding-top: 10px;
        text-align: center;
    }

    .logo{
        display: flex;
        justify-content: center;
    }

    .title {
        font-family: Montserrat;
        font-weight: 500;
        font-size: 20px;
        line-height: 100%;
        letter-spacing: 0%;
    }

    .grid-container-amb {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 30px 40px;
    }
}

.aux-burger.aux-regular-small{
    float: right;
}

@media (max-width: 767px) {
    .herb-poznania{
        position: absolute;
        left: 160px;
    }
}

@media (max-width: 1400px) and (min-width: 1000px) {
    .elementor-element-df06099 img{
        height: 100% !important;
        width: auto !important;
    }
}

.elementor-element-15de422{
    padding-right: 15px;
    border-right: 1px solid #fff;
}
/* .single-reprezentant .menu-main-container{
    display: none;
} */
.single-reprezentant #inner-body{
    /* *{
        outline: 1px solid red;
    } */
    
    background-color: #101010!important;
    color: #fff;
    a{
        color: #fff;
    }
    .arrow-wrapper{
        padding: 20px 0;
        width: 50px;
        img{
            height: 45px;
        }
    }
    .inner-container{
        display: flex;
    }
    .data-grid{
        width: 40%;
        background:  #141414;
        border: 1px solid #292727;
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 48px;
        img{
            max-width: 150px;
            border-radius: 50%;
        }
    }
    .inner-container{
        gap: 50px;
    }
    .reprezentant-header{
        font-family: Montserrat;
        font-weight: 700;
        font-size: 36px;
        line-height: 100%;
        margin-bottom: 8px;

    }
    .team{
        font-family: Montserrat;
        font-weight: 400;
        font-size: 24px;
        line-height: 100%;
        text-align: center;

    }
    .company{
        margin-top: 20px;
        font-family: Montserrat;
        font-weight: 400;
        font-size: 24px;
        line-height: 100%;
    }
    .position{
        font-family: Montserrat;
        font-weight: 400;
        font-size: 20px;
        line-height: 100%;
    }
    .contact-info{
        font-family: Montserrat;
        font-weight: 400;
        font-size: 20px;
        line-height: 150%;
        margin: 0;
        padding: 0;
        gap: 13px;
        display: flex;
        flex-direction: column;
        width: 60%;
        justify-content: center;
        align-items: flex-start;
        a{
            font-family: Montserrat;
            font-weight: 400;
            font-size: 32px;
            line-height: 100%;
        }
        p{
            display: flex;
            margin: 12px;
            padding: 0;
            img{
                display: block;
                /* line-height: 21px; */
                margin-top: 0px;
                margin-right: 6px;
                padding-top: 0px;
                /* width: 20px;
                height: auto; */
            }

        }
    }
}

/* @media (max-width: 1200px) { */
    .single-reprezentant #inner-body{
        .data-grid{
            width: calc(100% - 40px);
            margin: 20px;
            /* img{
                width: 100px;
            } */
        }
        .reprezentant-header{
            padding-top: 64px;
            font-size: 48px;
            text-align: center;
        }
        .team{
            font-size: 32px;
        }
        .company{
            font-size: 32px;
        }
        .position{
            padding-top: 10px;
            font-size: 24px;
        }
        .description{
            p{
                margin:0;
                padding:0;
            }
        }
        .reprezentant-mail a{
            font-size: 32px;
        }
        .reprezentant-phone a{
            font-size: 32px;
        }
        .reprezentant-address{
            font-size: 32px;
        }
    }
/* } */


@media (max-width: 992px) {
    .single-reprezentant #inner-body{
        .arrow-wrapper{
            margin-left: 20px;
        }
        .inner-container{
            flex-direction: column;
        }
        .data-grid{
            width: calc(100% - 40px);
            margin: 20px;
            img{
                width: 100px;
            }
        }
        .contact-info{
            padding: 20px;
            width: 100%;
            line-height: 150%;
            p img{
                margin-top: 0px;
            }
        }
        .reprezentant-header{
            padding-top: 20px;
            font-size: 28px;
        }
        .team{
            font-size: 20px;
        }
        .company{
            font-size: 20px;
        }
        .position{
            font-size: 20px;
        }
        .description{
            font-size: 18px;
            p{
                margin:0;
                padding:0;
            }
        }
        .reprezentant-mail a{
            font-size: 16px;
        }
        .reprezentant-phone a{
            font-size: 16px;
        }
        .reprezentant-address{
            font-size: 16px;
        }
    }
    
}

/* #menu-main .login-logout-item-primary{
    display: none!important;
} */
#menu-main .menu-item{
    margin-right: 0;
    .gtranslate_wrapper{
        margin-left: 10px;
    }
}
/* .page-id-9870{
    
    #menu-main li{
        display: none!important;
    }
    #menu-main .login-logout-item-primary{
        display: block!important;
    }
    #menu-main-1 .login-logout-item-primary{
        display: block!important;
    }
} */

@media (min-width: 768px) {
    .single-tdp #inner-body{
        .short-description{
            display: none;
        }
        .arrow-wrapper{
             padding: 15px;
             margin-left: 45px;
             a{
                width: 100%;
                display: inline-block;
                img{
                    height: 45px;
                }
             }  
        }
    }   
}


@media (max-width: 767px) {
    .single-tdp #inner-body{
        .arrow-wrapper{
             padding: 15px;
             a{
                width: 100%;
                display: inline-block;
                img{
                    height: 45px;
                }
             }  
        }
        .inner-container{
            flex-direction: column;
            gap: 0;
            .booking-cta{
                display: none;
            }
            /* .tags-wrapper{
                display: none;
            } */
            .small-container{
                padding: 15px;
                width: 100%;
                img{
                    max-width: 100%;
                    margin: 0;
                }
            }
            .big-container{
                padding: 15px;
                width: calc(100% -  30px);
                text-align: center;
                margin: 0 auto;
                .title-header{
                    font-family: Montserrat;
                    font-weight: 700;
                    font-style: bold;
                    font-size: 32px;
                    line-height: 100%;
                    text-align: center;

                }
                .description{
                    display: none;
                }
                .short-description{
                    font-family: Montserrat;
                    font-weight: 300;
                    font-style: italic;
                    font-size: 20px;
                    line-height: 100%;
                    text-align: center;
                    width: calc(100% - 30px);
                    margin: 0 auto;
                }
            }
        }
        
    }
    
}

.single-tdp {
    /* *{
        outline: 1px solid red;
    } */
    
    #inner-body{
        background-color: #101010!important;
        color: #fff;
        a{
            color: #fff;
        }
    }


    background-color: #101010!important;
    color: #fff;
    .inner-container{
        gap: 35px;
        display: flex;
        .small-container{
            width: 33.3333%;
        }
        .big-container{
            width: 66.6666%;
        }
        .description{
            width: 80%;
        }
        .big-image{
            margin: 30px;
            width: 100%;
            max-width: 400px;
        }
        .booking-cta{
            background: linear-gradient(87.74deg, #016A6B 7.16%, #02CFD1 93.98%);
            backdrop-filter: blur(8px);
            border-radius: 80px;
            /* padding: 40px 120px; */
            width: 400px;
            height: 80px;
            display: inline-block;
            color: #fff;
            font-family: Inter;
            font-weight: 600;
            font-size: 27px;
            line-height: 80px;
            text-align: center;
            vertical-align: middle;
            margin: 30px;
        }
        .tags-wrapper{
            margin: 30px;
            gap: 10px;
            display: flex;
            flex-wrap: wrap;
            li{
                background: #3F3B3B;
                font-family: Montserrat;
                font-weight: 400;
                font-size: 18px;
                display: inline-flex;
                /* line-height: 100%; */
                padding: 8px 14px;
                border-radius: 10px;
                color: #fff;
                margin: 0;
                /* gap: 8px; */
                
            }
        }

    }
}

.tdp-all-wrapper{
    .tags-wrapper{
        /* margin: 30px; */
        gap: 10px;
        display: flex;
        flex-wrap: wrap;
        li{
            background: #3F3B3B;
            font-family: Montserrat;
            font-weight: 400;
            font-size: 18px;
            display: inline-flex;
            /* line-height: 100%; */
            padding: 8px 14px;
            border-radius: 10px;
            color: #fff;
            margin: 0;
            /* gap: 8px; */
            
        }
    }
}

@media (max-width: 1600px) and (min-width: 1000px) {
    .menu-main-container #menu-main {
        li{
            margin: 0;
            a{
                padding: 15px 10px;
            }
        }
        .menu-button {
            margin-right: 2%;
            a {
                padding: 15px 35px;
            }
        }
    }
}

@media (max-width: 1200px) and (min-width: 1000px) {
    .elementor-50 .elementor-element.elementor-element-e325755{
        width: 80% !important;
        --container-widget-width: 70% !important;
    }
    
    .menu-main-container #menu-main {
        font-size: 14px;
        .gtranslate_wrapper{
            padding-top: 4px;
        }
        li{
            margin: 0;
            a{
                padding: 10px 5px;
            }
        }
        .menu-button {
            margin-right: 2%;
            a {
                padding: 10px 25px;
            }
        }
    }
}
.aux-elementor-header .elementor-widget-wrap .e-con-inner{
    align-items: center;
}