@import url('https://fonts.googleapis.com/css2?family=Jost:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    outline: 0;
    box-sizing: border-box;
    font-family: 'Jost', sans-serif;
    text-decoration: none;
    list-style-type: none;
    scroll-behavior: smooth;
    /* transition: all 2s ease; */
}

body {
    color: #F2F2F2;
    background: #070708;
    position: relative;
}

a { color: inherit; } 

nav {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 85px;
    z-index: 1500;
    transition: all 0.3s;
    /* background: linear-gradient(100deg, rgba(7, 7, 8, 100%) 100%, rgba(22, 22, 22, 0.1) 100%); */
}

nav.scrolled {
    background: #070708;
    transition: all 0.4s ease-in;
}

nav a img {
    width: 120px;
    margin-left: 8px;
    transform: translateY(6px);
}

nav .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1050px;
}

nav .navbar a {
    color: #f9f9f980;
    margin-left: 120px;
    font-weight: 300;
    font-size: 18px;
    transition: all .2s ease;
    transform: translateX(-52px);
    z-index: 1000;
}

nav .navbar #link-o-nas {
    transform: translateX(-60px)
}

nav .navbar #link-galeria {
    transform: translateX(-57px)
}

nav .navbar #link-kontakt {
    transform: translateX(-62px)
}

nav .navbar a:hover {
    color: #f9f9f9;
}

nav #menu {
    width: 35px;
    top: 50px;
    right: 50px;
    display: none;
    position: absolute;
}

#logo {
    transform: translateX(-7px) translateY(5px);
    transition: all .1s;
    opacity: 0.9;
}

#logo2 {
    display: none;
}

@media (max-width: 1023px) {

    nav {
        top: 0;
        height: 90px;
        width: 100vw;
        border-radius: 0;
        justify-content: space-between;
        background: #070708;
    }

    nav::before, nav::after {
        border-radius: 0; 
        z-index: 0;
    }
    
    nav .navbar {
        justify-content: center;
        flex-direction: column;
        position: absolute;
        background: #1d1d1d5a;
        height: 100vh;
        width: 100%;
        top: -940px;
        left: 0;
        right: 0;
        transition: top 1.5s ease;
        z-index: 50;
        -webkit-backdrop-filter: blur(45px);
        backdrop-filter: blur(45px);
        margin-right: 0;
        transform: none;
    }
    
    nav .navbar.open {
        top: 0;
    }

    nav .navbar #link-o-nas {
        transform: translateY(-80px);
    }
    
    nav .navbar #link-galeria {
        transform: translateY(-40px);
    }
    
    nav .navbar #link-kontakt {
        transform: translateY(-5px);
    }
    
    #logo {
        display: block;
        margin: 0;
        width: 85px;
        filter: brightness(0) invert(1);
        opacity: 0.5;
        transform: translateX(0.5px);
        transform: translateY(10px);
    }

    nav #logo2 {
        position: absolute;
        transform: translateX(25px);
        left: 20px;
        transform: translateY(-20.5px);
        z-index: 50;
        width: 80px;
        display: block;
    }


    nav a img {
        width: 55px;
        margin-top: 10px;
    }

    nav #menu {
        top: 30px;
        right: 25px;
        margin: 0;
        display: block;
        z-index: 500;
    }

    nav .navbar a {
        color: #eaeaea;
        margin-left: 0;
        font-weight: 300;
        font-size: 18px;
        transition: all .2s ease;
        transform: translateY(-60px);
        margin-top: 50px;
        z-index: 1000;
    }
}

/* Header */                /* Header */
              /* Header */               /* Header */

header {
    position: relative;
    height: 100vh;
    width: 100%;
    background-image: url(/img/header.jpg);
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: hidden;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

header #mouse {
    position: absolute;
    bottom: 45px;
    opacity: 0.5;
    cursor: pointer;
    animation: bounce 4s infinite ease-in-out;
    -webkit-animation: bounce 4s infinite ease-in-out;
    -o-animation: bounce 4s infinite ease-in-out;
    -ms-animation: bounce 4s infinite ease-in-out; 
    -moz-animation: bounce 4s infinite ease-in-out;
    transition: 0.3s all ease-out;
}

header #mouse:hover {
    opacity: 1;
}

@-webkit-keyframes bounce {
    0% { transform: translateY(-5px)  }
    50% { transform: translateY(10px) }
    100% { transform: translateY(-5px) }
}

@keyframes bounce {
    0% { transform: translateY(-5px)  }
    50% { transform: translateY(10px) }
    100% { transform: translateY(-5px) }
}

header #mouse img {
    width: 25px;
}

@media (max-width: 500px) {
    header #mouse {
        display: none;
    }
}


@media (min-height: 2000px) {
    header {
        max-height: 50vh;
        background-position-x: -1500px;
        background-position-y: -420px;
        background-size: cover;
    }
}

.header .shadow-transition {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 75px;
    z-index: 5500;
    opacity: 1;
    background: linear-gradient(to bottom, transparent, rgb(7, 7, 8) 98%, rgb(7, 7, 8) 98%, rgb(7, 7, 8) 100%);
}

.header__title {
    font-size: 1.15em;
    position: relative;
    text-align: center;
    z-index: 50;
}

@media (min-width: 999px) and (max-width: 1366px) {
    .header__title {
        transform: translateY(15px);
    }
}

.header__title h1 {
    font-weight: 600;
    font-style: normal;
    font-size: 4rem;
    line-height: 1.4;
    /* text-transform: uppercase; */
    z-index: 50;
}

.header__title p {
    font-size: 3rem;
    line-height: 1.4;
    font-weight: 200;
    text-transform: none;
    z-index: 50;
}

.header__title button {
    color: #f2f2f2cc;
    background: #090909a4;
    font-size: 18px;
    font-weight: 500;
    padding: 10px 35px;
    border-radius: 15px;
    margin-top: 35px;
    cursor: pointer;
    transition: all 0.5s ease-out;
    border: 0.5px solid rgba(242, 242, 242, 0.1);
}

.header__title button:hover {
    background: #ff1111b5;
    color: #f2f2f2;
    background: #242424a4;
    border: 0.5px solid rgba(255, 255, 255, 0.15);
}

#shadow {
    position: absolute;
    background-color: rgba(87, 91, 98, 0.53);
    width: 700px;
    height: 375px;
    transform: translateY(-300px) translateX(-50px);
    filter: blur(125px);
    opacity: 0.4;
    z-index: -5;
}

@media (max-width: 1023px) {
    header {
        width: 100vw;
        height: 85vh;
        background-repeat: no-repeat;
        background-size: 265%;
        background-attachment: fixed;
        background-position-x: -290px;
        background-position-y: 36px;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        top: 75px;
    }

    .header__title {
        text-align: center;
        margin-top: 10px;
        margin-left: 15px;
        margin-right: 15px;
    }

    .header__title h1 {
        font-size: 3rem;
        font-weight: 600;
        /* text-transform: uppercase; */
        z-index: 50;
    }
    
    .header__title p {
        padding-top: 15px;
        line-height: 1.4;
        font-size: 2.5rem;
        font-weight: 200;
        text-transform: none;
        z-index: 2;
    }

    #shadow {
        display: none;
        position: absolute;
        background-color: #0e0505b2;
        top: 500px;
        left: 120px;
        width: 80vw;
        height: 400px;
        filter: blur(60px);
        z-index: -2;
    }
}

@media (max-width: 500px) {
    header {
        background-size: 290%;
    }

    .header__title h1 {
        font-size: 2.2rem;
        font-weight: 600;
        /* text-transform: uppercase; */
        z-index: 50;
    }
    
    .header__title p {
        padding-top: 15px;
        line-height: 1;
        font-size: 2.2rem;
        font-weight: 200;
        text-transform: none;
        z-index: 2;
    }
}

                /* SECTION */

.section {
    position: relative;
    margin: 42px 0;
    height: 350px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 1000;
}

@media (min-width: 1366px) {
    .section {
        height: 375px;
    }
}

@media (min-width: 1560px) {
    .section {
        height: 400px;
    }
}

.section .section__text {
    max-width: 1000px;
    position: absolute;
    transform: translateY(-7px);
    z-index: 1000;
}

.section img {
    width: 725px;
    position: absolute;
    filter: grayscale(100) brightness(100) opacity(0.015);
    transform: translateY(4px);
}

@media (max-width: 1023px) {
    .section {
        margin: 150px 0;
    }

    .section .section__text {
        margin: 0 25px;
    }

    .section img {
        width: 600px;
    }
}

@media (max-width: 870px) {
    .section {
        margin: 200px 0 125px;
    }

    .section img {
        width: 500px;
    }
}

@media (max-width: 600px) {
    .section {
        margin: 220px 0 155px;
    }
}

@media (max-width: 500px) {
    .section img {
        width: 360px;
    }
}

@media (max-width: 450px) {
    .section {
        margin: 220px 0 155px;
    }
}

@media (max-width: 390px) {
    .section img {
        width: 300px;
    }
}


.section0 {
    height: 50vh;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    z-index: 1000;
}

.section0 .section0__text {
    max-width: 820px;
    width: 100%;
    transform: translateY(-7px);
    z-index: 1000;
}
                /* SECTION 1 */


.section1 {
    padding: 150px 35px 150px;
    min-height: 700px;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    background: #070708;
    z-index: 1000;
}

.section1__intro {
    max-width: 1004px;
    margin-bottom: 10px;
}

.section1__values {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 80px;
    max-width: 1100px;
    width: 100%;
    margin-bottom: 80px;
}

.section1__value-item {
    flex: 1;
    max-width: 320px;
    text-align: center;
}

.section1__value-item i {
    font-size: 3.5rem;
    color: #f2f2f2;
    margin-bottom: 30px;
    display: block;
    opacity: 0.9;
}

.section1__value-item h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.3;
}

.section1__value-item p {
    line-height: 1.7;
    opacity: 0.85;
    font-size: 0.98rem;
}

.section1__footer {
    max-width: 850px;
    text-align: center;
}

.section1__footer p {
    font-size: 1.08rem;
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 1075px) {
    .section1__values {
        gap: 60px;
    }
}

@media (max-width: 900px) {
    .section1 {
        padding: 120px 30px 100px;
        min-height: auto;
    }

    .section1__values {
        flex-direction: column;
        align-items: center;
        gap: 60px;
    }

    .section1__value-item {
        max-width: 450px;
    }
}

@media (max-width: 500px) {
    .section1 {
        padding: 100px 25px 80px;
    }

    .section1__intro h2 {
        font-size: 2rem !important;
    }

    .section1__intro p {
        font-size: 0.95rem !important;
        margin-bottom: 60px !important;
    }

    .section1__values {
        gap: 50px;
        margin-bottom: 60px;
    }

    .section1__value-item i {
        font-size: 3rem;
        margin-bottom: 25px;
    }

    .section1__value-item h3 {
        font-size: 1.3rem;
        margin-bottom: 18px;
    }

    .section1__value-item p {
        font-size: 0.95rem;
    }

    .section1__footer p {
        font-size: 1rem !important;
        line-height: 1.7;
    }
}

              /* SECTION 2 */

.section2 {
    height: 700px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    position: relative; 
    text-align: center;
    background-image: url(img/header4.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    width: 100%;
    overflow: hidden;
    /* opacity: 0.35; */
}

.section2 .section2__text {
    max-width: 1055px;
    position: absolute;
    z-index: 1000;
}

.section2 .offer {
    margin: 135px 25px 9px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 85px;
}

.section2 .offer .offer--text {
    height: 440px;
    width: 50%;
    padding: 55px 30px 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    transition: 0.2s ease-out;
    z-index: 15000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.offer--text p {
    transform: translateY(-17px);
}

.section2 .offer .offer--text .icons-offer {
    margin-bottom: 45px;
    filter: brightness(100%);
    z-index: 1500;
    transition: 0.2s ease-out;
    opacity: 1;
}

.section2 .offer .offer--text:nth-child(1) .icons-offer {
    transform: translateY(-7px);
    width: 95px;
}

.section2 .offer .offer--text:nth-child(1) h3 {
    transform: translateY(-33px);
}

.section2 .offer .offer--text:nth-child(1) p {
    transform: translateY(-50px);
}

.section2 .offer .offer--text:nth-child(2) .icons-offer {
    width: 100px;
    transform: translateY(0);
}

.section2 .offer .offer--text:nth-child(2) h3 {
    transform: translateY(-28px);
}

.section2 .offer .offer--text:nth-child(2) p {
    transform: translateY(-44px);
}

.section2 .section2__title {
    max-width: 90%;
    text-align: center;
    margin: 0 auto;
    font-weight: 500;
    font-size: 1.1em;
}

.section2 .offer p {
    z-index: 1000;
}

.section2 img {
    width: 35%;
    position: static;
    filter: grayscale(100) brightness(100) opacity(0.025);
    transform: translateY(10px);
}

.section4 #section4--logo {
    display: none;
    position: absolute;
    width: 110%;
    filter: grayscale(100) brightness(100) opacity(1) invert(0.972);
    bottom: -25px;
    z-index: 151051;
}

@media (max-width: 1220px) {
    .section2::before {
        background-position-y: 103px;
    }
}

@media (max-width: 1023px) {
    .section2 {
        height: 1275px;
    }

    .section2 .offer {
        flex-direction: column;
        margin: 0 25px;
    }
    
    .section2 .section2__text {
        padding: 150px 15px;
        border-radius: 0px;
    }

    .section2 .offer .offer--text {
        width: 100%;
        margin: 0 auto;
        justify-content: center;
    }

    .section2::before {
        background-size: 145%;
    }
}

@media (max-width: 850px) {
    .section2 {
        height: 1275px;
    }

    .section2::before {
        background-size: 200%;
        background-position: center;
        background-position-x: -165px;
    }
    
}

@media (max-width: 600px) {
    .section2::before {
        background-size: cover;
        background-position: center;
        background-position-x: -450px;
        background-attachment: fixed;
    }
}

@media (max-width: 550px) {
    .section2 {
        height: 1300px;
    }
}

@media (max-width: 400px) {
    .section2 {
        height: 1275px;
    }
}

            /* SECTION 2-3 */

.section2-3 {
    height: 715px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative; 
    text-align: center;
    padding-bottom: 15px;
    background-image: url(img/section2.jpg);
    background-size: cover;
    background-position: center;
    /* background-position-y: -900px; */
    background-repeat: no-repeat;
    background-attachment: fixed;
    /* opacity: 0.35; */
}

.section2-3 .section2-3__text {
    margin: 0 30px;
    max-width: 1010px;
    position: absolute;
    z-index: 1000;
    display: flex;
    gap: 85px;
}

.section2-3 .offer {
    width: 60%;
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
}

.section2-3 .offer2 {
    width: 40%;
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
}

.section2-3 .offer .offer--text img{
    height: 100%;
    width: 100%;
    border-radius: 20px;
    background: linear-gradient(100deg, rgba(242, 242, 242, 0.16) 100%, rgba(22, 22, 22, 0.6) 100%);
    transition: 0.2s ease-out;
    z-index: 1500;
}

.section2-3 .offer2 {
    padding: 35px 30px 76px;
    height: 103%;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    transition: 0.2s ease-out;
    z-index: 1500;
}

.section2-3 .offer2 .offer--text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.offer--text p {
    transform: translateY(-17px);
}

.section2-3 .offer .offer--text .icons-offer {
    margin-bottom: 50px;
    filter: brightness(100%);
    z-index: 1500;
    transition: 0.2s ease-out;
    opacity: 1;
}

.section2-3 .offer2 .offer--text .icons-offer {
    margin-bottom: 50px;
    filter: brightness(100%);
    z-index: 1500;
    transition: 0.2s ease-out;
    opacity: 1;
}

.section2-3 .offer2 .offer--text img.icons-offer {
    transform: translate(-2px, 40px);
    width: 150px;
}

.section2-3 .offer2 .offer--text h3 {
    transform: translateY(10px);
}

.section2-3 .offer2 .offer--text p {
    transform: translateY(-14px);
}

#logo-lf {
    position: absolute;
    opacity: 0.55;
    width: 100%;
    transform: translate(-170px, 450px);
}

.section2-3 .offer p {
    z-index: 1000;
}

@media (max-width: 1023px) {
    .section2-3 {
        height: 1215px;
        margin: 0 auto;
    }

    .section2-3 .offer {
        width: 100%;
        margin: 0;
    }

    .section2-3 .offer2 {
        width: 100%;
        margin: 0;
    }
    
    .section2-3 .section2-3__text {
        padding: 150px 35px;
        border-radius: 0px;
        flex-direction: column-reverse;
        margin: 0 auto;
    }

    .section2-3 .offer .offer--text {
        width: 100%;
        margin: 0 auto;
        justify-content: center;
    }

    .section2-3::before {
        background-size: 145%;
    }
}

@media (max-width: 550px) {
    .section2-3::before {
        background-size: cover;
        background-position: center ;
        background-attachment: fixed;
    }
}

        /* black section */

.black-section {
    width: 100%; 
    display: flex;
    justify-content: center;
    align-items: center;
}

.black-section-text {
    max-width: 1030px;
    margin: 130px 35px 130px;
    text-align: center;
}

@media (max-width: 1075px) { 
    /* .black-section-text {
        margin: 0 35px;
    } */
}

@media (max-width: 870px) {
        /* .black-section-text {
        max-width: 680px;
        margin: 40px auto 0;
    } */
}

@media (max-width: 500px) {
    .black-section-text {
        text-align: left;
        margin: 100px 30px 100px;
    }
}

        /* SECTION 4 */

.section4 {
    height: 900px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative; 
    text-align: center;
    padding-bottom: 15px;
    background-image: url(img/sauna.jpg);
    background-size: cover;
    background-position: center;
    background-position-y: -300px ;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.section4 .section4__text {
    position: absolute;
    z-index: 1000;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.section4 .offer {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 50px;
}

.section4 .offer .offer--text {
    width: 100%;
    max-width: 580px;
    padding: 35px 30px 45px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    transition: 0.2s ease-out;
    z-index: 15000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.offer--text p {
    transform: translateY(-17px);
}

.section4 .offer .offer--text .icons-offer {
    margin-bottom: 50px;
    filter: brightness(100%);
    z-index: 1500;
    transition: 0.2s ease-out;
    opacity: 1;
    width: 100px;
    transform: translateY(11px);
}

.section4 .offer .offer--text h3 {
    transform: translateY(-21px);
}

.section4 .offer .offer--text p {
    transform: translateY(-37px);
}

.section4 .offer p {
    z-index: 1000;
}

.section4 .logo-house {
    position: absolute; 
    width: 60%; 
    bottom: 125px; 
    filter: grayscale(1) brightness(100); 
    opacity: 0.1;
}

.section4__title {
    max-width: 67%;
    text-align: center;
    margin: 0 auto;
    font-weight: 500;
    font-size: 1.1em;
    opacity: 1;
    margin-bottom: 40px;
}

@media (max-width: 1600px) {
    .section4 {
        background-position-y: 0 ;
    }
}

@media (max-width: 1023px) {

    .section4 .logo-house {
        width: 500px; 
        bottom: 125px; 
        display: none;
    }

    .section4 .offer {
        flex-direction: column;
    }
    
    .section4 .section4__text {
        padding: 150px 15px;
        border-radius: 0px;
    }

    .section4 .offer .offer--text {
        width: 100%;
        margin: 0 auto;
        justify-content: center;
    }

    .section4::before {
        background-size: 145%;
    }

    .section4__title {
        max-width: 80%;
        text-align: center;
        margin: 0 auto;
        font-weight: 500;
        font-size: 1.1em;
        opacity: 1;
        margin-bottom: 40px;
    }
}

@media (max-width: 715px) {
    .section4::before {
        background-position-y: -400px ;
    }

    .section4__title {
        max-width: 85%;
        text-align: center;
        margin: 0 auto;
        font-weight: 500;
        font-size: 1.1em;
        opacity: 1;
        margin-bottom: 40px;
    }
}

@media (max-width: 550px) {
    .section4::before {
        background-size: cover;
        background-position: center ;
        background-attachment: fixed;
    }

    .section4 {
        height: 1030px;
    }

    .section4__title {
        max-width: 90%;
        text-align: center;
        margin: 0 auto;
        font-weight: 500;
        font-size: 1.1em;
        opacity: 1;
        margin-bottom: 40px;
    }
}

/* GALLERY */

.gallery-container {
    margin: 160px 0 130px;
}

.gallery {
    margin: 0 auto 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1010px;
    gap: 55px
}

.gallery2 {
    margin: auto;
    margin-top: 50px;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1010px;
    gap: 55px
}

#gallery2Container {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 6s, max-height 3s ease-in-out;
}

@media (max-width: 997px) {
    #gallery2Container {
        transition: opacity 2s, max-height 3.75s;
    }
}

@media (max-width: 648px) {
    #gallery2Container {
        transition: opacity 2s, max-height 5s;
    }
}

.gallery-container .buttonGallery {
    margin: 50px 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease-in-out;
}

.gallery-container .buttonGallery button {
    margin-top: 15px;
    color: #f2f2f2cc;
    background: #090909a4;
    font-size: 18px;
    font-weight: 500;
    padding: 10px 35px;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.6s ease-out;
    border: 0.5px solid rgba(242, 242, 242, 0.1);
}

.gallery-container .buttonGallery button:hover {
    background: #ff1111b5;
    color: #f2f2f2;
    background: #242424a4;
    border: 0.5px solid rgba(255, 255, 255, 0.15);
}

.buttonGallery button {
    opacity: 1;
    transition: opacity 0.5s ease-in-out, display 0.5s ease-in-out;
}

.buttonGallery button.hidden {
    opacity: 0;
    display: none;
}

.modal-container {
    position: fixed;
    top: 43px;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(7, 7, 8, 0.1);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    z-index: 1000;
}
  
.modal-image {
    max-width: 75%;
    max-height: 75%;
    object-fit: contain;
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.2s ease-out;
  }
  
  .modal-image.loaded {
    opacity: 1;
  }

.modal-close-button {
    position: absolute;
    top: 70px;
    right: 90px;
    background: none;
    border: none;
    font-size: 32px;
    color: #f2f2f2;
    cursor: pointer;
    padding-left: 155px;
    padding-bottom: 155px;
    transition: all 0.5s;
    font-weight: 400;
    z-index: 1001;
    opacity: 0.5;
    transform: scaleX(1.2);
    font-family: sans-serif;
}

.modal-close-button:hover {
    color: #d70101;
    opacity: 0.8;
}

.modal-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    font-weight: 400;
    background: none;
    border: none;
    color: #f2f2f2;
    cursor: pointer;
    transition: color 0.5s, opacity 0.5s;
    z-index: 1001;
    opacity: 0.5;
}

.modal-arrow:hover {
    color: #d70101;
    opacity: 0.8;
}

.prev-arrow {
    left: 240px;
    padding-left: 50px;
    padding-right: 150px;
    padding-bottom: 100px;
    padding-top: 100px;
}

.next-arrow {
    right: 240px;
    padding-right: 50px;
    padding-left: 150px;
    padding-bottom: 100px;
    padding-top: 100px;
}

@media (max-width: 1800px) {
    .prev-arrow {
        left: 40px;
    }
    
    .next-arrow {
        right: 40px;
    }
}

@media (max-width: 1400px) {
    .prev-arrow {
        padding-left: 0;
    }
    
    .next-arrow {
        padding-right: 0;
    }
}

@media (max-width: 800px) {
    .modal-arrow {
        font-size: 36px;
        font-weight: 400;
    }

    .prev-arrow {
        left: 30px;
    }
    
    .next-arrow {
        right: 30px;
    }
}

@media (max-width: 580px) {
    .modal-arrow {
        font-size: 32px;
        font-weight: 400;
    }

    .prev-arrow {
        left: 20px;
    }
    
    .next-arrow {
        right: 20px;
    }
}

@media (max-width: 430px) {
    .modal-arrow {
        font-size: 28px;
        font-weight: 300;
    }

    .prev-arrow {
        left: 15px;
    }
    
    .next-arrow {
        right: 15px;
    }
}

@media (max-width: 700px) {
    .modal-close-button {
        right: 70px;
        font-weight: 100;
        opacity: 0.3;
    }
}

@media (max-width: 600px) {
    .modal-close-button {
        right: 50px;
    }
}

.gallery__img1 {
background-image: url(img/gallery1.jpg);
background-position: center;
background-size: cover;
width: 300px;
height: 200px;
border-radius: 15px;
}
.gallery__img2 {
background-image: url(img/gallery2.jpg);
background-position: center;
background-size: cover;
width: 300px;
height: 200px;
border-radius: 15px;
}
.gallery__img3 {
background-image: url(img/gallery3.jpg);
background-position: center;
background-size: cover;
width: 300px;
height: 200px;
border-radius: 15px;
}
.gallery__img4 {
background-image: url(img/gallery4.jpg);
background-position: center;
background-size: cover;
width: 300px;
height: 200px;
border-radius: 15px;
}
.gallery__img5 {
background-image: url(img/gallery5.jpg);
background-position: center;
background-size: cover;
width: 300px;
height: 200px;
border-radius: 15px;
}
.gallery__img6 {
background-image: url(img/gallery6.jpg);
background-position: center;
background-size: cover;
width: 300px;
height: 200px;
border-radius: 15px;
}
.gallery__img7 {
background-image: url(img/gallery7.jpg);
background-position: center;
background-size: cover;
width: 300px;
height: 200px;
border-radius: 15px;
}
.gallery__img8 {
background-image: url(img/gallery8.jpg);
background-position: center;
background-size: cover;
width: 300px;
height: 200px;
border-radius: 15px;
}
.gallery__img9 {
background-image: url(img/gallery9.jpg);
background-position: center;
background-size: cover;
width: 300px;
height: 200px;
border-radius: 15px;
}
.gallery__img10 {
background-image: url(img/gallery10.jpg);
background-position: center;
background-size: cover;
width: 300px;
height: 200px;
border-radius: 15px;
}
.gallery__img11 {
background-image: url(img/gallery11.jpg);
background-position: center;
background-size: cover;
width: 300px;
height: 200px;
border-radius: 15px;
}
.gallery__img12 {
background-image: url(img/gallery12.jpg);
background-position: center;
background-size: cover;
width: 300px;
height: 200px;
border-radius: 15px;
}
.gallery__img13 {
background-image: url(img/gallery13.jpg);
background-position: center;
background-size: cover;
width: 300px;
height: 200px;
border-radius: 15px;
}
.gallery__img14 {
background-image: url(img/gallery14.jpg);
background-position: center;
background-size: cover;
width: 300px;
height: 200px;
border-radius: 15px;
}
.gallery__img15 {
background-image: url(img/gallery15.jpg);
background-position: center;
background-size: cover;
width: 300px;
height: 200px;
border-radius: 15px;
}
.gallery__img16 {
background-image: url(img/gallery16.jpg);
background-position: center;
background-size: cover;
width: 300px;
height: 200px;
border-radius: 15px;
}
.gallery__img17 {
background-image: url(img/gallery17.jpg);
background-position: center;
background-size: cover;
width: 300px;
height: 200px;
border-radius: 15px;
}
.gallery__img18 {
background-image: url(img/gallery18.jpg);
background-position: center;
background-size: cover;
width: 300px;
height: 200px;
border-radius: 15px;
}
.gallery__img19 {
background-image: url(img/gallery19.jpg);
background-position: center;
background-size: cover;
width: 300px;
height: 200px;
border-radius: 15px;
}
.gallery__img20 {
background-image: url(img/gallery20.jpg);
background-position: center;
background-size: cover;
width: 300px;
height: 200px;
border-radius: 15px;
}
.gallery__img21 {
background-image: url(img/gallery21.jpg);
background-position: center;
background-size: cover;
width: 300px;
height: 200px;
border-radius: 15px;
}
.gallery__img22 {
background-image: url(img/gallery22.jpg);
background-position: center;
background-size: cover;
background-position-y: -30px;
width: 300px;
height: 200px;
border-radius: 15px;
}
.gallery__img23 {
background-image: url(img/gallery23.jpg);
background-position: center;
background-size: cover;
background-position-y: -150px;
width: 300px;
height: 200px;
border-radius: 15px;
}
.gallery__img24 {
background-image: url(img/gallery24.jpg);
background-position: center;
background-size: cover;
width: 300px;
height: 200px;
border-radius: 15px;
}
.gallery__img25 {
background-image: url(img/gallery25.jpg);
background-position: center;
background-size: cover;
width: 300px;
height: 200px;
border-radius: 15px;
}
.gallery__img26 {
background-image: url(img/gallery26.jpg);
background-position: center;
background-position-y: -160px;
background-size: cover;
width: 300px;
height: 200px;
border-radius: 15px;
}
.gallery__img27 {
background-image: url(img/gallery27.jpg);
background-position: center;
background-size: cover;
width: 300px;
height: 200px;
border-radius: 15px;
}

.gallery__img28 {
background-image: url(img/gallery28.jpg);
background-position: center;
background-position-y: -140px;
background-size: cover;
width: 300px;
height: 200px;
border-radius: 15px;
}

@media (max-width: 550px) {
    .gallery__img1 {
        width: 330px;
    }
    .gallery__img2 {
        width: 330px;
    }
    .gallery__img3 {
        width: 330px;
    }
    .gallery__img4 {
        width: 330px;
    }
    .gallery__img5 {
        width: 330px;
    }
    .gallery__img6 {
        width: 330px;
    }
    .gallery__img7 {
        width: 330px;
    }
    .gallery__img8 {
        width: 330px;
    }
    .gallery__img9 {
        width: 330px;
    }
    .gallery__img10 {
        width: 330px;
    }
    .gallery__img11 {
        width: 330px;
    }
    .gallery__img12 {
        width: 330px;
    }
    .gallery__img13 {
        width: 330px;
    }
    .gallery__img14 {
        width: 330px;
    }
    .gallery__img15 {
        width: 330px;
    }
    .gallery__img16 {
        width: 330px;
    }
    .gallery__img17 {
        width: 330px;
    }
    .gallery__img18 {
        width: 330px;
    }
    .gallery__img19 {
        width: 330px;
    }
    .gallery__img20 {
        width: 330px;
    }
    .gallery__img21 {
        width: 330px;
    }
    .gallery__img22 {
        width: 330px;
    }
    .gallery__img23 {
        width: 330px;
    }
    .gallery__img24 {
        width: 330px;
    }
    .gallery__img25 {
        width: 330px;
    }
    .gallery__img26 {
        width: 330px;
    }
    .gallery__img27 {
        width: 330px;
    }
    .gallery__img28 {
        width: 330px;
    }
}

              /* SECTION 3 */

.section3 {
    margin: 0 30px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    position: relative;
    text-align: center;
}

.section3 .section3__text {
    margin: 0px 15px 0 15px;
    text-align: left;
    gap: 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    max-width: 1100px;
    z-index: 500;
}

.section3 .section3__text--title {
    text-align: center;
}

.section3 .section3__text .section3__text--title h2 {
    font-size: 2.5rem;
}

@media (max-width: 500px) {
    .section3 .section3__text .section3__text--title h2 {
        font-size: 2.1em;
        padding-bottom: 5px;
    }
}

@media (max-width: 425px) {
    .section3 .section3__text .section3__text--title h2 {
        font-size: 1.9em;
        padding-bottom: 10px;
    }
}

@media (max-width: 390px) {
    .section3 .section3__text .section3__text--title h2 {
        font-size: 2em;
        margin: 0 50px 0 50px;
    }
}

.contact-container {
    margin-top: 40px;
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    max-width: 1050px;
    font-size: 0.9rem;
}

.address-container {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 35px;
}

.address-container .contact-container2, .address-container .address-container2 {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact {
    text-align: left;
    z-index: 500;
    align-items: center;
}

.address {
    text-align: left;
    z-index: 500;
}

.parking-container {
    display: flex;
    flex-direction: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.parking {
    margin-top: 5px;
    text-align: left;
    font-size: 0.9rem;
    font-weight: 400;
    z-index: 500;
}

@media (max-width: 870px) {

    .section3 {
        margin: 0 30px 150px;
    }

    .contact-container {
        padding-top: 75px;
    }

    .address-container {
        flex-direction: column;
        gap: 10px;
    }

    .address-container .contact-container2, .address-container .address-container2, .parking-container  {
        flex-direction: column;
    }

    .contact, .address {
        text-align: center;
    }

    .parking-container {
        padding-top: 75px;
        flex-direction: column;
        gap: 10px;
    }

    .parking {
        text-align: center;
    }
}

            /* FOOTER */

footer {
    width: 100%;
    display: grid;
    place-items: center;
    margin-bottom: 35px;
}

footer #logo__footer {
    width: 120px;
    filter: brightness(0) invert(1);
    margin-top: 45px;
}

footer a[href="#"] {
    cursor: pointer;
    color: #f6f6f6;
    transform: scaleX(1.5) scale(1.5);
    margin-top: 25px;
    position: absolute;
    bottom: 0;
    right: 50px;
}

footer a[href*="gtlrdesign"] p {
    font-size: 0.6rem;
    margin-top: 35px;
    opacity: 0.5;
    font-weight: 200;
}

footer .pay {
    margin-top: 25px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

/* Fix for iOS/Safari mobile - background-attachment: fixed not supported */
@media only screen and (max-width: 1024px) {
    header,
    header::before,
    .section2,
    .section2-3,
    .section4 {
        background-attachment: scroll !important;
    }
}

@supports (-webkit-touch-callout: none) {
    /* iOS specific fix */
    header,
    header::before,
    .section2,
    .section2-3,
    .section4 {
        background-attachment: scroll !important;
    }
}

/* Fallback for browsers that don't support backdrop-filter */
@supports not (backdrop-filter: blur(8px)) {
    nav .navbar {
        background: rgba(29, 29, 29, 0.85);
    }

    .section2 .offer .offer--text {
        background: rgba(255, 255, 255, 0.1);
    }

    .section2-3 .offer2 {
        background: rgba(255, 255, 255, 0.1);
    }

    .section4 .offer .offer--text {
        background: rgba(255, 255, 255, 0.1);
    }

    .modal-container {
        background-color: rgba(7, 7, 8, 0.85);
    }
}