@font-face {
    font-family: 'Lato';
    src: url('czcionki/Lato-Regular.ttf') format('ttf');
    font-weight: normal;
}

@font-face {
    font-family: 'Lato';
    src: url('czcionki/Lato-LightItalic.ttf') format('ttf');
    font-style: italic;
}

@font-face {
    font-family: 'Lato';
    src: url('czcionki/Lato-Bold.ttf') format('ttf');
    font-weight: 500;
}

@font-face {
    font-family: 'Lato';
    src: url('czcionki/Lato-Black.ttf') format('ttf');
    font-weight: 600;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Lato', sans-serif;
    font-weight: normal;
    font-style: normal;
    background: #EEF0F4;
}

.logo-wrapper {
    margin-top: 80px;
}

.logo-wrapper img {
    width: 80%;
    margin: 10px auto 0;
    display: block;
}

.splide__slide {
    padding: 10px;
}

.splide h5 {
    font-size: 1.4rem;
    font-weight: bold;
    color: #212121;
    margin: 10px 0 0;
}

.splide p {
    font-size: 0.9rem;
    color: #212121;
    margin: 0 0 15px;
}

.splide a {
    width: 100%;
    height: 10px;
    padding: 10px;
    text-decoration: none;
    color: #fff;
    background-color: #E21D4D;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.9rem;
}

.splide__slide__container {}

.splide__slide img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.contact-media-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 10px 30px;
    box-sizing: border-box;
}

.contact-media-wrapper a:nth-of-type(3) {
    margin-left: auto;
}

.contact-media-wrapper i {
    padding: 8px;
    color: #212121;
}

nav {
    background-color: #212121;
    width: 100%;
    height: 60px;
    padding: 15px 30px;
    box-sizing: border-box;
    position: fixed;
    z-index: 100;
    border-radius: 0 0 10px 10px;
    top: 0;
    left: 0;
    -webkit-box-shadow: 0px 3px 20px 3px rgba(66, 68, 90, 1);
    -moz-box-shadow: 0px 3px 20px 3px rgba(66, 68, 90, 1);
    box-shadow: 0px 3px 20px 3px rgba(66, 68, 90, 1);
}

nav .is-open {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
    animation: nav-rollout 0.5s;
}

.nav-wrapper a {
    font-size: 1.1rem;
    font-weight: bold;
}

nav img {
    width: 150px;
}

.hamburger {
    width: 30px;
    height: 30px;
    margin-left: auto;
    padding: 20px;
    margin-top: -20px;
    margin-right: -20px;
}

.bacon {
    height: 4px;
    width: 100%;
    border-radius: 1px;
    background: white;
    margin-bottom: 7px;
}

nav a {
    float: left;
    font-size: 1rem;
    color: white;
    text-align: center;
    text-decoration: none;
}

.nav-wrapper {
    margin-top: -7px;
    padding-top: 7px;
    display: none;
    position: fixed;
    overflow: hidden;
    top: 60px;
    left: 0;
    width: 100%;
    height: calc(100vh - 60px);
    /*background: linear-gradient(*/
    /*        60deg, rgba(84,58,183,1) 0%, rgba(0,172,193,1) 100%);*/
    background-color: #212121;
}

@keyframes nav-rollout {
    0% {
        height: 0;
    }

    100% {
        height: calc(100vh - 60px);
    }
}

.dropdown {
    float: left;
    overflow: hidden;
    cursor: default;
    /*padding: 0 15px;*/
    padding: 15px 30px;
}

.plan-szkolenia-wrapper h2 {
    text-align: center;
}

.dropdown .dropbtn {
    font-size: 1.1rem;
    font-weight: bold;
    border: none;
    outline: none;
    color: white;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
}

.navbar a:hover,
.dropdown:hover .dropbtn {}

@keyframes dropdown-content-anime-desk {
    0% {
        height: 0;
    }

    100% {
        height: 123px;
    }
}

@keyframes dropdown-content-anime {
    0% {
        height: 0;
    }

    100% {
        height: 183px;
    }
}

.dropdown-content {
    display: none;
    background-color: rgba(20, 20, 20, .8);
    /*min-width: 160px;*/
    /*box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);*/
    animation: dropdown-content-anime .7s;
    z-index: 1;
    overflow: hidden;
}

.dropdown-content a {
    float: none;
    color: white;
    padding: 20px 20px;
    text-decoration: none;
    display: block;
    /*text-align: left;*/
}

.dropdown-content a:hover {
    background-color: #ddd;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.szkolenia-dropdown {
    background: rgba(33, 33, 33, .8);
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/*#szkolenia {*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    display: flex;*/
/*    align-items: flex-start;*/
/*    justify-content: center;*/
/*    flex-direction: column;*/
/*}*/

.szkolenia-dropdown a {
    padding: 15px;
    display: block;
}

.szkolenia-dropdown ol {
    list-style: none;
    padding: 0;
}

#opinie {
    text-align: center;
    font-size: 2rem;
    margin-top: 2rem;
    margin-bottom: 0;
    padding: 30px;
}

.img-center {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-center img {
    width: 100%;
}

.dlaczego-abc {
    text-align: center;
}



/*DESKTOP*/
@media screen and (min-width: 1000px) {

    .terminy-mobile {
        display: none;
    }

    #szkolenia .cennik-wrapper {
        margin-top: 200px;
        /*margin-bottom: 200px;*/
    }



    .dlaczego-abc {
        margin-top: 200px;
    }

    .nav-wrapper .dropdown-content a {
        padding: 10px 20px;
    }

    #primary-logo {
        visibility: visible !important;
        opacity: 1 !important;
    }

    .plan-szkolenia-wrapper {
        /*padding: 50px 150px !important;*/
        display: flex;
        align-items: center;
        flex-direction: column;
    }

    .dlaczego-abc {
        font-size: 3rem;
    }

    .dlaczego-my-wrapper {
        display: flex;
        justify-content: center;
        padding: 0 150px !important;
    }

    .dlaczego-my-wrapper .dlaczego-my-el {
        padding: 30px;
        box-sizing: border-box;
    }



    .szkolenia-wrapper article {
        padding: 150px;
        margin-top: -400px;
    }

    .szkolenia-wrapper #image-slider {
        padding: 100px;
        box-sizing: border-box;
    }

    .opinie-wrapper {
        flex-direction: row !important;
    }

    .logo-wrapper,
    .contact-media-wrapper {
        display: none;
    }

    .title-container a {
        margin-top: 0;
    }

    .hamburger {
        display: none;
    }

    .nav-wrapper {
        display: block;
        position: static;
        width: 100%;
        height: 100%;
        background: #212121;
    }

    nav img {
        width: 200px;
    }

    nav {
        padding: 0 100px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .nav-wrapper {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        width: calc(100% - 200px);
    }

    .nav-wrapper a {
        padding: 0 19px;
    }

    .fala3 {
        display: none;
    }

    .surfer {
        display: none;
    }

    .title-container {
        align-items: flex-start;
        justify-content: center;
        padding: 150px;
    }

    .title-container button {
        margin-top: 20px;
    }

    .title-container h2 {
        margin-top: 50px;
        font-size: 3rem;
    }

    .title-container p {
        font-size: 1rem;
    }

    .nav-wrapper a:last-of-type i {
        padding-right: 5px;
    }

    .nav-wrapper i:not(a i) {
        padding-left: 5px;
    }
}

/*ABOUT SECTION*/

.about-title-wrapper h3 {
    text-align: center;
}

.plan-szkolenia-wrapper h3 img {
    display: inline-block;
}

.about-section {
    width: 100%;
    height: auto;
}

.about-right {
    width: 100%;
    padding: 30px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.splide__arrow {
    display: none !important;
}

.splide__track {}

.about-right img:first-of-type {
    /*display: none;*/
}

.about-right img:last-of-type {
    height: 250px;
    width: 250px;
    object-fit: cover;
    border-radius: 50%;
    border: #eef0f4 solid 8px;
}

.about-right h3 {
    font-weight: bold;
    font-size: 3rem;
    margin: 0;
}

.about-right p {
    font-size: 1rem;
}

.about-title-wrapper img {
    width: 300px;
}


@media screen and (min-width: 1000px) {

    .dropdown-content {
        position: absolute;
        animation: dropdown-content-anime-desk .7s;
    }

    .about-section {
        margin-top: 0;
    }

    #image-slider {
        margin-top: -30px !important;
    }

    .about-right {
        width: 100%;
        padding: 100px;
        box-sizing: border-box;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: row;
    }

    .about-right img:last-of-type {
        /*display: none;*/
    }

    /*.about-right img:first-of-type {*/
    /*    display: block;*/
    /*    width: 500px;*/
    /*    padding: 50px;*/
    /*}*/

    .about-title-wrapper h3,
    .about-title-wrapper p {
        /*text-align: left;*/
        letter-spacing: 1px;
    }

    .about-right h3 {
        font-weight: bold;
        font-size: 3rem;
        margin: 0;
    }

    .about-right p {
        font-size: 1rem;
        max-width: 800px;
    }

    .news-section .news-element {
        flex-direction: row;
        padding: 30px 100px;
    }

    .news-section .news-element img {
        width: 300px;
        border-radius: 30px;
    }

    .news-element .news-right {
        padding: 30px;
    }

    .news-right p {
        -webkit-animation: scale-up-ver-top 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
        animation: scale-up-ver-top 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
        transition: ease-in-out .2s;
    }

    @-webkit-keyframes scale-up-ver-top {
        0% {
            -webkit-transform: scaleY(0.4);
            transform: scaleY(0.4);
            -webkit-transform-origin: 100% 0%;
            transform-origin: 100% 0%;
        }

        100% {
            -webkit-transform: scaleY(1);
            transform: scaleY(1);
            -webkit-transform-origin: 100% 0%;
            transform-origin: 100% 0%;
        }
    }

    @keyframes scale-up-ver-top {
        0% {
            -webkit-transform: scaleY(0.4);
            transform: scaleY(0.4);
            -webkit-transform-origin: 100% 0%;
            transform-origin: 100% 0%;
        }

        100% {
            -webkit-transform: scaleY(1);
            transform: scaleY(1);
            -webkit-transform-origin: 100% 0%;
            transform-origin: 100% 0%;
        }
    }


    div.links-section {
        flex-direction: row;
        padding: 0;
        box-sizing: border-box;
    }

    div.szkolenia {
        padding: 100px;
    }

    div.surfhouse {
        padding: 100px;
    }

    div.kontakt-wrapper {
        flex-direction: row;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 50px;
        box-sizing: border-box;
    }

    /*html #szkolenia header {*/
    /*    padding: 150px;*/
    /*    align-items: flex-start;*/
    /*}*/

    .card-wrapper {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        flex-wrap: wrap;
    }

    div.szkolenia-wrapper {
        max-width: unset;
        padding: 50px;
    }
}

mark {
    color: #E21D4D;
    background: none;
}

.news-section {
    width: 100%;
}

.news-element {
    width: 100%;
    padding: 30px 30px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.news-element img {
    width: 96vw;
    padding-bottom: 15px;
    object-fit: fill;
}

.news-element p {}

.news-right a {
    margin-left: auto;
}

/*LINKS*/

.links-section {
    width: 100%;
    height: auto;
    font-weight: bold;
    font-size: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.links-section img {
    width: 100%;
    max-width: 550px;
    border-radius: 10px;
}

.szkolenia {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    box-sizing: border-box;
}

.surfhouse {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    box-sizing: border-box;
}

.news-right a {
    width: 150px;
    height: 30px;
    padding: 10px;
    text-decoration: none;
    color: #fff;
    background-color: #E21D4D;
    border: none;
    border-radius: 15px;
    font-weight: bold;
    font-size: 1rem;
}

.read-more-wrapper button {
    width: 140px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #fff;
    background-color: #E21D4D;
    border: none;
    border-radius: 15px;
    font-weight: bold;
    font-size: 1rem;
    margin-left: auto;
}

.news-section h2 {
    font-size: 2rem;
    text-align: center;
}

.read-more-wrapper {
    width: 100%;
    text-align: end;
    box-sizing: border-box;
    margin-top: 20px;
}

.read-more-wrapper a {}

.links-section h4 {
    font-size: 1.2rem;
    margin-top: 15px;
    text-align: center;
}

.links-section a {
    width: 220px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 15px;
    color: #212121;
    border-radius: 15%;
    box-shadow: inset 9.91px 9.91px 15px #D9DADE, inset -9.91px -9.91px 15px #FFFFFF;
    border: none;
    font-weight: bold;
    font-size: 1.2rem;
    text-decoration: none;
}

#camera {
    background: url("./assets/camera.png") no-repeat;
    background-size: contain;
    height: 20px;
    width: 20px;
    padding-right: 5px;
    display: inline-block;
}

.social-media {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    font-size: 1.2rem;
    box-sizing: border-box;
}

.social-icon-wrapper {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.social-icon-wrapper i {
    padding: 50px;
    cursor: pointer;
}

.social-media .fb-video {
    display: none;
}

.fb-video,
.instagram-media {
    -webkit-animation: scale-up-ver-top 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    animation: scale-up-ver-top 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

@-webkit-keyframes scale-up-ver-top {
    0% {
        -webkit-transform: scaleY(0.4);
        transform: scaleY(0.4);
        -webkit-transform-origin: 100% 0%;
        transform-origin: 100% 0%;
    }

    100% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
        -webkit-transform-origin: 100% 0%;
        transform-origin: 100% 0%;
    }
}

@keyframes scale-up-ver-top {
    0% {
        -webkit-transform: scaleY(0.4);
        transform: scaleY(0.4);
        -webkit-transform-origin: 100% 0%;
        transform-origin: 100% 0%;
    }

    100% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
        -webkit-transform-origin: 100% 0%;
        transform-origin: 100% 0%;
    }
}


.kontakt-wrapper {
    padding: 0;
    box-sizing: border-box;
    color: white;
    display: flex;
    flex-direction: column;
}

.kontakt-wrapper h3 {
    font-size: 3rem;
    font-weight: bold;
    margin: 0;
}

.kontakt-wrapper h4 {
    font-size: 2rem;
    margin: 0;
}

.salon-wrapper h5 {
    font-size: 2rem;
    margin: 0;
    padding-top: 30px;
}

.kontakt-wrapper {
    width: 100%;
    /*background: linear-gradient(*/
    /*        60deg, rgba(84,58,183,1) 0%, rgba(0,172,193,1) 100%);*/
    background-color: #212121;
    border-radius: 15px 15px 0 0;
}

.salon-wrapper a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
}

.salon-wrapper ul {
    width: 100%;
    font-size: 1rem;
    font-weight: bold;
    list-style: none;
    padding: 0;
}

.salon-wrapper ul li {
    width: 100%;
    padding: 5px;
}

.salon-wrapper i {
    padding-right: 10px;
}

.salon-wrapper {
    text-align: center;
    padding: 30px;
    /*width: 100%;*/
    box-sizing: border-box;
}

form {
    width: 100%;
    background: #07ABE3;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    padding: 30px;
    box-sizing: border-box;
}

form h4 {
    font-size: 2rem;
    color: white;
    font-weight: bold;
    margin: 0;
    padding: 0;
    text-align: center;
    display: block;
    width: 100%;
}

form input {
    width: 100%;
    height: 50px;
    background: #07ABE3;
    border: none;
    box-shadow: inset -2px -2px 10px rgba(255, 255, 255, 0.06), inset 2px 2px 10px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: inset -2px -2px 10px rgba(255, 255, 255, 0.06), inset 2px 2px 10px rgba(0, 0, 0, 0.25);
    -webkit-appearance: none;
    border-radius: 10px;
    padding-left: 20px;
    margin-top: 20px;
    box-sizing: border-box;
    color: #fff;
}

form p {
    margin: 0;
    color: white;
    text-align: center;
    width: 100%;
}

form input:last-of-type {
    background-color: #E21D4D;
}

form input::placeholder {
    color: white;
    opacity: 0.7;
    font-family: 'Lato', sans-serif;
}

form textarea {
    padding: 20px;
    box-sizing: border-box;
    resize: none;
    margin-top: 20px;
    width: 100%;
    height: 200px;
    background: #07ABE3;
    border: none;
    box-shadow: inset -2px -2px 10px rgba(255, 255, 255, 0.06), inset 2px 2px 10px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: inset -2px -2px 10px rgba(255, 255, 255, 0.06), inset 2px 2px 10px rgba(0, 0, 0, 0.25);
    -webkit-appearance: none;
    border-radius: 10px;
    font-family: Montserrat, sans-serif;
    color: #fff;
}

form textarea::placeholder {
    opacity: 0.7;
    color: white;
}


@media screen and (max-width: 1919px) and (min-width: 1400px) {
    nav .nav-wrapper a {
        font-size: 0.9rem;
        padding: 0 10px;
    }


    .dropdown .dropbtn {
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 1399px) and (min-width: 1000px) {
    nav {
        padding: 0 50px;
    }

    nav .nav-wrapper a {
        font-size: 0.8rem;
        padding: 0 5px;
    }

    .dropdown {
        padding: 0 5px;
    }

    .dropdown .dropbtn {
        font-size: 0.8rem;
    }

    nav img {
        width: 150px;
    }

    .title-container {
        padding: 100px;
    }


    .about-right {
        padding: 50px 150px;
    }

    .about-right img:first-of-type {
        width: 300px;
        height: 300px;
        margin: 0 80px 0 0;
    }
}

#surfhouse {
    width: 100%;
    /*height: 500px;*/
    margin-top: 50px;
    background: linear-gradient(rgba(0, 0, 0, 0.4),
            rgba(0, 0, 0, 0.4)),
        url("./assets/surfhouse.jpg") fixed center center no-repeat;
    background-size: cover;
    color: white;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-direction: column;
    box-sizing: border-box;
}

#szkolenia header {
    width: 100%;
    height: 500px;
    margin-top: 50px;
    /*url("./assets/news-3.JPG") fixed center center no-repeat;*/
    /*background-size: cover;*/
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-sizing: border-box;
}

header p {
    font-size: 1rem;
    padding: 0 150px;
}

header h1 {
    margin-top: 50px;
}

/*.dropdown-content a{*/
/*    padding: 10px !important;*/
/*}*/

#obozy-wind {
    background: url("assets/polkolonie/glowne.JPG") no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.plan-szkolenia-wrapper {
    width: 100%;
    max-width: 1300px;
    text-align: center;
    padding: 30px;
    margin: 0 auto;
    box-sizing: border-box;
}

.szkolenia-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    /*max-width: 550px;*/
    width: 100%;
    /*padding: 30px;*/
    box-sizing: border-box;
}

.szkolenia-wrapper article {
    width: 50%;
    padding: 30px;
    box-sizing: border-box;
}

.szkolenia-slider {
    /*width: 50%;*/
    /*height: 300px;*/
    /*padding: 20px;*/
    box-sizing: border-box;
}

.detale-szkolenia {
    width: 100%;
    min-height: 200px;
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    flex-direction: column;
    border-radius: 15px;
    background: #07ABE3;
    color: white;
    padding: 30px;
    box-sizing: border-box;
}

.detale-szkolenia ul {
    list-style-type: circle;
    list-style-position: outside;
}

.detale-szkolenia h4 {
    font-size: 1.4rem;
    margin: 0;
}

.detale-szkolenia span {
    font-size: 0.8rem;
}

.detale-szkolenia p {
    margin: 0;
    padding-top: 20px;
}

.detale-szkolenia a {
    width: 100%;
    height: 50px;
    border-radius: 10px;
    border: none;
    background: #E21D4D;
    color: white;
    font-family: 'Lato', sans-serif;
    font-size: 1.2rem;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    margin-top: 30px;
}


#live-cam {
    height: 300px;
}

#live-cam button {
    display: none;
}

#live-cam .title-container {
    padding: 30px;
    height: calc(100% - 60px);
}

#live-cam .title-container h2 {
    margin: 0;
}

.live-cam-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 30px;
    box-sizing: border-box;
    flex-direction: column;
}

.live-cam-wrapper a {
    text-align: center;
    text-decoration: none;
    padding: 15px;
}

#kite-wind-surf .title-container p {
    font-size: .8rem;
}

#kite-wind-surf .title-container h1 {
    color: white;
}

.cennik-el table {
    width: 100%;
}

#szkolenia h3 {
    font-size: 3rem;
    margin: 0;
    white-space: break-spaces;
}

#szkolenia p {
    font-size: 1.1rem;
}

#szkolenia h1 {
    font-size: 4rem;
    margin: 0;
}

#obozy-gdzie {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%), url("assets/sunset-kuznica.JPG") center center fixed;
    background-size: cover;
}

.photo-text-wrapper {
    width: 100%;
    min-height: 500px;
    padding: 30px 150px;
    box-sizing: border-box;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.photo-text-wrapper h3 {
    font-size: 3rem;
    margin: 0;
}

.photo-text-wrapper p {
    font-size: 1.2rem;
}

@media screen and (max-width: 1000px) {

    .dropdown {
        width: 100%;
    }

    .nav-wrapper a:not(.dropdown-content a) {
        padding: 15px 30px;
    }

    .dropdown-content {
        margin-top: 20px;
    }

    .surfhouse-slider-wrapper p:not(.splide__slide__container p) {
        padding: 30px 30px !important;
    }

    .surfhouse-slider-wrapper h2 {
        padding: 0 30px !important;
    }

    .opinie-wrapper {
        padding: 0 !important;
    }

    #szkolenia h1 {
        font-size: 2rem;
    }

    #szkolenia h3 {
        font-size: 2rem;
    }

    #szkolenia p {
        font-size: 1rem;
    }

    .photo-text-wrapper {
        padding: 30px;
        box-sizing: border-box;
    }

    /*#obozy-wind{*/
    /*    height: 200px !important;*/
    /*}*/

    header p {
        padding: 0 50px;
    }

    .szkolenia-wrapper article {
        width: 100%;
    }

    .szkolenia-slider {
        width: 100%;
    }

    .szkolenia-wrapper {
        flex-direction: column;
    }

    #szkolenia header p {
        padding: 0 50px;
    }

    .cennik-el {
        padding: 30px !important;
    }

    .windy-wrappper {
        margin: 0 auto;
        width: 90%;
    }

    .live-cam-wrapper iframe {
        height: auto;
        width: 265px;
    }
}

#aktualnosci {
    margin-top: 100px;
}

#aktualnosci h1 {
    margin-left: 30px;
}

#surfhouse {
    /*height: 300px;*/
    /*background: url("./assets/surfhouse.jpg") no-repeat center center;*/
    /*background-size: cover;*/
}

#surfhouse button {
    display: none;
}

#surfhouse .title-container {
    padding: 30px;
    height: calc(100% - 60px);
}

#surfhouse .title-container h2 {
    margin: 0;
}

.gallery-wrapper {
    width: 100%;
    display: grid;
}


.row {
    display: flex;
    flex-wrap: wrap;
    padding: 0 4px;
}

/* Create four equal columns that sits next to each other */
.column {
    flex: 25%;
    max-width: 25%;
    padding: 0 4px;
}

.column img {
    margin-top: 8px;
    vertical-align: middle;
    width: 100%;
}

#galeria .kontakt-wrapper {
    margin-top: 30px;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
    .column {
        flex: 50%;
        max-width: 50%;
    }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
    .column {
        flex: 100%;
        max-width: 100%;
    }
}

.cennik-wrapper {
    flex-wrap: wrap;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    /*flex-direction: column;*/
    /*padding: 30px;*/
    box-sizing: border-box;
}

.cennik-el h4 {
    font-size: 2rem;
    font-weight: bold;
    margin: 0;
    text-transform: uppercase;
    /*text-decoration: underline;*/
}

.cennik-el p {
    margin: 0;
}


.cennik-wrapper p {
    /*font-size: 1.4rem;*/
    /*font-weight: bold;*/
}

.cennik-el table {
    border-collapse: collapse;
}

.cennik-el th {
    background: #E21D4D;
    color: white;
    border-radius: 0 5px 5px 0;
    padding: 10px;
}

.cennik-el th:first-of-type {
    border-radius: 5px 0 0 5px;
}

.cennik-el td {
    transition: ease-in-out 0.2s;
    padding: 10px;
    margin-top: 5px;
    cursor: default;
    border-radius: 5px;
}

.cennik-el td:last-of-type {
    /*border: 1px solid #E21D4D;*/
    font-weight: bold;
    font-size: 0.8rem;
    text-align: center;
}

.cennik-el td:last-of-type:hover {
    background: #E21D4D;
    color: white;
}

.cennik-el:last-of-type td:not(td:first-of-type) {
    font-weight: bold;
    font-size: 0.8rem;
}

.cennik-el:last-of-type td:not(td:first-of-type):hover {
    background: #E21D4D;
    color: white;
}

.cennik-el th:not(th:first-of-type):not(th:last-of-type) {
    border-radius: 0;
}


.cennik-el {
    width: 650px;
    padding: 80px;
}

#contact-info footer {
    margin-top: 60px;
}

a:hover {
    transform: scale(1.05);
    transition: ease-in-out .2s;
}

.windy-wrappper {
    /*margin: 0 auto;*/
    max-width: 750px;
    width: 100%;
    border-radius: 30px;
    /*background: linear-gradient(*/
    /*        60deg, rgba(84,58,183,1) 0%, rgba(0,172,193,1) 100%);*/
    /*box-shadow: 20px 20px 60px #00acc1ff, -20px -20px 60px #543ab7ff;*/
    padding: 20px;
    box-sizing: border-box;
}

.windy-wrappper h2 {
    text-align: center;
}

.windy-wrappper iframe {
    border-radius: 15px;
}

#image-slider {
    margin: 15px auto 0;
}

.cookies-bar {
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    background: #2e2e2e;
    width: 100%;
    height: auto;
    padding: 15px;
    box-sizing: border-box;
    z-index: 999;
    text-align: center
}

.cookies-bar p {
    font-size: .9rem
}

.cookies-bar p a {
    text-decoration: none;
    color: #d5aa61
}

.cookies-bar button {
    width: 25px;
    height: 25px;
    background: url(assets/close.svg) no-repeat;
    background-size: contain;
    border: none;
    flex-shrink: 0;
    margin-left: 13px
}

.opinie-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    padding: 50px 150px;
    box-sizing: border-box;

}

.opinia-container {
    text-align: center;
    width: 100%;
    padding: 30px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.star-holder {
    width: 100px;
    height: 20px;
    background: url("assets/star.png") repeat-x;
}

.opinia-container p {
    margin: 5px;
}

.opinia-container i {
    margin: 5px;
    font-size: .7rem;
}


.terminy-mobile h4 {
    font-size: 1.2rem;
    width: 100%;
    text-align: left;
    margin: 0;
    padding: 0;
}

.rodzaj-obozu-mobile {
    padding-right: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.rodzaj-obozu-mobile p {
    font-size: .8rem !important;
}


.terminy-mobile {
    display: none;
    padding: 10px 0;
    border-bottom: 1px solid black;
}

.opis-terminu-mobile {
    width: 66%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
}

.rezerwacja-terminu-mobile {
    width: 33%;
    display: flex;
    justify-content: center;
    align-items: center;
}




/*WAWE*/

.header {
    position: relative;
    text-align: center;
    background: linear-gradient(60deg, rgba(84, 58, 183, 1) 0%, rgba(0, 172, 193, 1) 100%);
    color: white;
    margin-top: 150px;
}

.logo {
    width: 50px;
    fill: white;
    padding-right: 15px;
    display: inline-block;
    vertical-align: middle;
}

.inner-header {
    width: 100%;
    margin: 0;
    padding: 0;
}

.flex {
    /*Flexbox for containers*/
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.waves {
    position: relative;
    width: 100%;
    height: 15vh;
    margin-bottom: -7px;
    /*Fix for safari gap*/
    min-height: 100px;
    max-height: 150px;
}

.upside {
    transform: rotate(180deg);
}

.content {
    position: relative;
    height: 20vh;
    text-align: center;
    background-color: white;
}

/* Animation */

.parallax>use {
    animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
}

.parallax>use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
}

.parallax>use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
}

.parallax>use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
}

.parallax>use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
}

@keyframes move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }

    100% {
        transform: translate3d(85px, 0, 0);
    }
}

/*Shrinking for mobile*/
@media (max-width: 768px) {

    .terminy-mobile {
        display: flex;
    }

    .menu-rezerwacji table {
        display: none;
    }


    #about>div>img {
        z-index: 2;
    }

    .about-right img:last-of-type {
        margin-top: -170px;
        margin-bottom: 50px;
    }

    .waves {
        height: 80px;
        min-height: 40px;
    }

    .content {
        height: 30vh;
    }

    h1 {
        font-size: 24px;
    }
}

.szkolenia-wave {
    width: 100%;
    margin-top: 100px;
}

.dlaczego-my-wrapper {
    width: 100%;
    padding: 30px;
    box-sizing: border-box;
    text-align: center;
}

.dlaczego-my-el {
    padding-top: 30px;
    max-width: 550px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

h6 {
    font-size: 1.2rem;
    margin: 0;
    padding-top: 15px;
}


#photos {
    /* Prevent vertical gaps */
    line-height: 0;

    -webkit-column-count: 5;
    -webkit-column-gap: 0px;
    -moz-column-count: 5;
    -moz-column-gap: 0px;
    column-count: 5;
    column-gap: 0px;
}

#photos img {
    /* Just in case there are inline attributes */
    width: 100% !important;
    height: auto !important;
}

@media (max-width: 1200px) {
    #photos {
        -moz-column-count: 4;
        -webkit-column-count: 4;
        column-count: 4;
    }
}

@media (max-width: 1000px) {
    #photos {
        -moz-column-count: 3;
        -webkit-column-count: 3;
        column-count: 3;
    }
}

@media (max-width: 800px) {
    #photos {
        -moz-column-count: 2;
        -webkit-column-count: 2;
        column-count: 2;
    }
}

@media (max-width: 400px) {
    #photos {
        -moz-column-count: 1;
        -webkit-column-count: 1;
        column-count: 1;
    }
}

#kitesurfing {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%);
    overflow: hidden;
    position: relative;
}

#wingfoil {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%);
    overflow: hidden;
    position: relative;
}

#windsurfing {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%);
    overflow: hidden;
    position: relative;
}

#kitesurfing h1 {
    padding: 0 50px;
    /*margin-top: auto;*/
}

#kitesurfing .szkolenia-wave {
    margin-top: auto;
}

#wingfoil h1 {
    padding: 0 50px;
    /*margin-top: auto;*/
}

#wingfoil .szkolenia-wave {
    margin-top: auto;
}

#windsurfing h1 {
    padding: 0 50px;
    /*margin-top: auto;*/
}

#windsurfing .szkolenia-wave {
    margin-top: auto;
}

.surfhouse-slider-wrapper {
    width: 100%;
    margin-top: 100px;
}

.surfhouse-slider-wrapper p:not(.splide__slide__container p) {
    padding: 30px 150px;
}

.surfhouse-slider-wrapper h2 {
    padding: 0 150px;
    font-size: 3rem;
    margin: 0;
}

.menu-rezerwacji {
    max-width: none;
    padding: 0 !important;
}

.menu-rezerwacji td {
    text-align: center;
    width: 1fr;
    font-weight: normal !important;
}

.menu-rezerwacji td:hover {
    background: none !important;
    color: #000 !important;
}

.plan-szkolenia-wrapper a {
    color: black;
    text-decoration: none;
    display: block;
}

#wingfoil img {
    width: 100%;
    height: 500px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    object-fit: cover;
    object-position: bottom;

}

#kitesurfing img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

#windsurfing img {
    width: 100%;
    height: 500px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    object-fit: cover;

}

* {
    text-align: center;
}

ul li:not(.salon-wrapper ul li) {
    text-align: left;
    /*padding: 5px;*/
}

#primary-logo {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.5s ease-in-out;
}

/*#szkolenia .plan-szkolenia-wrapper{*/
/*    padding-bottom: 0;*/
/*}*/

/* ============================================================
   BUG FIXES - Added 2026-03-10
   ============================================================ */

/* Bug 5: Splide sliders too tall - constrain image height only, not the whole container */
.splide__slide__container img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}

/* Bug 3: Email icon red background only inside btn-cta context, NOT in footer */
footer .salon-wrapper a[href^="mailto"],
footer .salon-wrapper a[href^="tel:"] {
    background-color: transparent !important;
    padding: 5px 0 !important;
    font-size: 1.2rem !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    color: white !important;
    display: inline !important;
    transform: none !important;
}

footer .salon-wrapper a[href^="mailto"]:hover,
footer .salon-wrapper a[href^="tel:"]:hover {
    background-color: transparent !important;
    transform: none !important;
}

/* Bug 2: Surfhouse (noclegi) mobile responsiveness */
@media (max-width: 768px) {

    /* Surfhouse page mobile overrides */
    .plan-szkolenia-wrapper {
        padding: 20px 15px;
        width: 95%;
        margin: 10px auto;
    }

    .plan-szkolenia-wrapper h1 {
        font-size: 1.5rem;
    }

    .plan-szkolenia-wrapper h2 {
        font-size: 1.3rem;
    }

    .plan-szkolenia-wrapper h3 {
        font-size: 1.2rem;
    }

    .plan-szkolenia-wrapper h4 {
        font-size: 1.1rem;
    }

    .plan-szkolenia-wrapper p {
        font-size: 0.95rem;
    }

    .dlaczego-my-wrapper {
        flex-direction: column;
        padding: 10px;
    }

    .dlaczego-my-el {
        padding: 20px 15px;
        max-width: 100%;
    }

    /* Splide on mobile */
    .splide__slide__container img {
        max-height: 250px;
    }
}

/* Bug 4: Mobile pricing — hide tables, show .terminy-mobile card views */
@media (max-width: 768px) {
    .cennik-el table {
        display: none !important;
    }

    .cennik-el {
        width: 100% !important;
        padding: 15px 5px !important;
    }

    /* Pricing card styling */
    .cennik-card {
        background: #f8f9fa;
        border-radius: 12px;
        border-left: 4px solid #E21D4D;
        padding: 14px 16px !important;
        margin-bottom: 10px;
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    }

    .cennik-card .opis-terminu-mobile {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
        gap: 10px;
        align-items: center;
    }

    .cennik-card .rodzaj-obozu-mobile {
        padding: 0;
        text-align: left;
    }

    .cennik-card .rodzaj-obozu-mobile .mobile-label {
        font-size: 0.65rem;
        text-transform: uppercase;
        color: #888;
        letter-spacing: 0.5px;
        margin: 0;
        font-weight: 600;
    }

    .cennik-card .rodzaj-obozu-mobile .mobile-value {
        font-size: 1rem;
        font-weight: 700;
        color: #222;
        margin: 2px 0 0 0;
    }

    /* First column (option name) is a bit bigger */
    .cennik-card .rodzaj-obozu-mobile:first-child .mobile-value {
        color: #E21D4D;
        font-size: 1.05rem;
    }
}