/*
Theme Name: Med28
Text Domain:
Version: 0.85
Description: Strona przygotowana dla MED28
Tags:
Author: FAST llama
Author URI: https://fastllama.pl
*/

@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.5.0/font/bootstrap-icons.css");

:root {
    --bg-color: #ffffff;
    --font-family-main: Montserrat, 'sans-serif';
    --main-gold-color: rgba(237, 188, 90, 1);


    font-size: 16pt;
}

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #332f23;
    background-image:
            radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.2), transparent 20%),
            radial-gradient(circle at 100% 0%, rgba(255, 215, 0, 0.2), transparent 20%),
            radial-gradient(circle at 50% 95%, rgba(255, 215, 0, 0.18), transparent 35%),
            linear-gradient(180deg, #332f23 0%, #332f23 100%);
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
}

#lp-logo {
    max-height: 40px;
}

.container-header {
    padding: 0 50px;
}

.hr-header {
    border: 1px solid var(--main-gold-color);
    opacity: 100%;
}

a {
    text-decoration: none;
    color: unset;
}

i.bi {
    margin-top: 2px;
}

.top-icon {
    font-size: 16px;
    color: var(--main-gold-color);
}

.outline-heading {
    color: transparent !important;
    font-family: 'Poppins', sans-serif;
    background-color: transparent;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px white;
    font-size: 90px;
    font-weight: 700;
}

.solid-heading {
    font-size: 90px;
    font-weight: 700;
    color: white;
    margin-left: 10px;
}

.testimonial-heading .outline-heading, .testimonial-heading .solid-heading {
    font-size: 140px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: auto;
    gap: 20px;
    width: 100%;
    padding: 40px 0;
}


.team-grid .grid-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.team-full-link {
    position: absolute;
    inset: 0; /* top: 0; left: 0; right: 0; bottom: 0; */
    z-index: 5;
    text-indent: -9999px; /* ukrywa tekst, zachowuje dostępność */
}

.team-grid .photo img {
    width: 100%;
    height: auto;
    display: block;
}

/* Zdjęcie poziome */
.team-grid .photo.wide {
    grid-column: span 3;
}

/* Doświadczenie */
.team-grid .experience {
    grid-column: span 2;
    background: none;
    color: var(--main-gold-color);
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 10px;
}

.team-grid .experience .number-years {
    font-size: 172px;
    font-weight: 700;
    margin: 0;
    line-height: 150px;
}

.team-grid .experience .label-years {
    font-size: 78px;
    font-weight: 600;
    letter-spacing: 3px;
    //color: rgba(237, 188, 90, 0.7);
    margin: 0;
    background-color: transparent;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px white;
}

.team-grid .experience .desc-years {
    font-size: 42px;
    letter-spacing: 2px;
    color: white;
    margin: 8px 0 0 0;
}

section.team {
    padding-left: 80px;
    padding-right: 80px;
}

/* Overlay */
.photo .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    text-align: center;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 500;
}

.photo:hover .overlay {
    transform: translateY(0%);
    opacity: 1;
}



/* Responsywność */
@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media (max-width: 600px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .outline-heading {
        font-size: 55px;
    }

    .solid-heading {
        font-size: 55px;
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-grid .photo.wide,
    .team-grid .experience {
        grid-column: span 1;
    }

    .team-grid .experience {
        align-items: center;
        padding: 20px 10px;
        text-align: center;
    }

    .team-grid .experience .number-years {
        font-size: 96px;
        line-height: 100px;
    }

    .team-grid .experience .label-years {
        font-size: 40px;
        letter-spacing: 1px;
        -webkit-text-stroke: 0.5px white;
    }

    .team-grid .experience .desc-years {
        font-size: 20px;
        letter-spacing: 1px;
    }

    .testimonial-heading .outline-heading, .testimonial-heading .solid-heading {
        font-size: 55px;
    }
}

.hero-heading {
    margin: 80px 0;
}

#meet-us {
    border: 1px solid var(--main-gold-color);
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 30px;
}

.golden-btn {
    background-color: var(--main-gold-color);
    padding: 5px;
    text-transform: uppercase;
    color: black;
    font-size: 12px;
    width: unset;
    transition-duration: .3s;
    cursor: pointer;
    display: inline-block;
}

.golden-btn:hover {
    transform: scale(1.02);
}

.golden-btn::after {
    content: url('assets/images/arrow.png');
    margin-left: 10px;
}

.footer-btn {
    display: inline-block;
    align-items: center;
    padding: 10px 20px;
    border: 1px solid rgba(255,255,255,.5);
    border-radius: 30px;
    margin-top: 15px;
    font-size: 14px;
    transition-duration: .2s;
}

.footer-btn:hover {
    background-color: var(--main-gold-color);
    color: black;
    border-color: black;
}

.footer-btn::after {
    content: url('assets/images/arrow-w.png');
    margin-left: 10px;
}

section {
    margin: 100px 0;
}

.footer-row-1, .footer-row-2, .footer-row-3 {
    min-height: 80px;
}

.footer-row-1, .footer-row-2 {
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
}

.footer-col-1 {
    border-right: 2px solid rgba(255, 255, 255, .5);
}

.footer-cell {
    padding: 20px 0;
}

.footer-cell.inner-cell {
    padding-left: 20px;
}

.footer-cell.copyright {
    font-size: 14px;
}

section#footer {
    margin-bottom: 0;
}


