html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    position: relative;
    overflow-x: hidden;
    background-color: #A1A7AE;
    color: #000;
    margin: 0;
}

/* PILATES HEADER*/

:root {
  --bs-primary: #c38588;
  --bs-secondary: #edbbbd;
}

.font-sans {
  font-family: "freight-sans-pro", sans-serif;
}

.font-display {
  font-family: "freight-display-pro", serif;
}

.logo {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1001;
  background-color: #c38588; 
  border-radius: 50%;
  width: 50px;
  height: 50px;
  transition: 0.3s;
}

.logo img { 
  width: 42px;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}

.logo:hover {
  background-color: #edbbbd;
}

.page-title {
  color: var(--bs-primary);
  font-weight: 700;
  font-size: 60px;
  line-height: 64px;
  letter-spacing: 6px;
  -webkit-text-stroke: 8px var(--bs-primary);
  text-shadow: 8px 9px 24px #1d1d1dd9;
  text-transform: uppercase;
}

.video-desktop {
  display: block;
}

.video-mobile,
.mobile-logo {
  display: none;
}
/* */

section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 150px auto 0;
}


/* BACKGROUND SHAPE */
.background-shape{
    position: absolute;
}

.background-shape:nth-child(1){
    width: 19%;
    /* opacity: 0.16; */
    top: 8%;
    right: 1%;
    rotate: -15deg;
}

.background-shape:nth-child(2){
    width: 28%;
    opacity: 0.22;
    top: 20.5%;
    left: -1%;
    rotate: 30deg;
}

.background-shape:nth-child(3){
    width: 31%;
    opacity: 0.1;
    top: 21%;
    right: 0%;
    rotate: 15deg;
}

.background-shape:nth-child(4){
    width: 28%;
    opacity: 0.5;
    top: 25.5%;
    left: 0%;
    rotate: -5deg;
        z-index: -1;
}

.background-shape:nth-child(5) {
    width: 30%;
    opacity: 0.16;
    top: 28%;
    right: -12%;
}

.background-shape:nth-child(6) {
    width: 28%;
    /* opacity: 0.22; */
    top: 34%;
    left: -12%;
    rotate: 30deg;
}

.background-shape.gold {
    width: 17%;
    top: 62%;
    left: 3%;
}

.background-shape.silver {
    width: 7%;
    top: 66%;
    right: 3%;
    rotate: 42deg;
}

.background-shape-gold3 {
    width: 47%;
    top: -21%;
    right: -9%;
    rotate: 14deg;
}

.background-shape-gold2 {
    width: 37%;
    bottom: -120%;
    right: -16%;
    rotate: 26deg;
}

.background-shape.red:nth-child(7){ 
    width: 10%;
    top: 50%;
    left: 3%;
    rotate: 42deg;
}

.background-shape.red:nth-child(8){ 
    width: 12%;
    top: 51%;
    left: 5%;
    rotate: 144deg;
}

/* .background-shape:nth-child(6) {

} */

/* INTRO*/
p {
    font-family: "Barlow", sans-serif;
}

/* FREESTYLE TEMPLATE  */

.intro {
    width: 240px;
    margin: 10px auto 100px auto;
}

.text-sample p {
    color: var(--light-color);
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-weight: 200;
    font-size: 14px;
    line-height: 18px;
    text-align: center;
    letter-spacing: 1px;
}

.font-italiana {
    font-family: 'Italiana', serif;
    font-weight: 800;
    font-size: 32px;
    line-height: 30px;

}


/* GALLERY **********************************************************/
.gallery {
    position: relative;
    width: 100vw;
    margin: 120px auto 120px auto;
}

.gallery-naslov {
    position: absolute;
    z-index: 101;
    left: 8%;
    top: -16%;
    width: 80vw;
}

.gallery-naslov h2 {
    color: var(--medium-dark-color);
    font-family: 'Italiana', serif;
    font-style: normal;
    font-size: 52px;
    line-height: 56px;
    letter-spacing: 1px;
    text-transform: lowercase;
    -webkit-text-stroke: var(--medium-dark-color) 2px;
}

.gallery-img {
    width: 50vw;
    height: 232px;
    overflow: hidden;
    transition-duration: 0.2s;
    position: relative; 
}

.gallery-img:hover {
    filter: brightness(70%);
}

.gallery-img img {
    width: 100%;
    height: auto;
}

.gallery-img.video-img video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -58%);
}

.gallery-img.prahir img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50.5%);
}

.gallery-img.sinteza img { 
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.gallery-text {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0,0,0,0.13);
  color: #fff;
  padding: 5px 10px;
  font-size: 14px;
  max-width: 90%;
  text-align: center;
  border-radius: 4px;
}

.cta {
    color: #434343;
    font-size: 26px;
    line-height: 30px;
    border: 2.5px solid #434343;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    transform: rotate(-45deg);
    position: relative;
    transition-duration: 0.4s;
}

.cta i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cta:hover {
    color: #d90429;
    border: 2.5px solid #d90429;
    transform: rotate(360deg);
}

/* BTT */
#btt {
    color: #a4a4a4;
    border: 2.5px solid #a4a4a4;
    border-radius: 50%;
}

#btt i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#btt:hover {
    color: #d90429;
    border: 2.5px solid #d90429;
    transform: rotate(360deg);
}

.btt-hide {
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
}

.btt-show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.border-frame {
    border: 1px solid #030303;
    padding: 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    background-color: #050505;
    transition: transform 0.3s;
}

.border-frame:hover {
    transform: scale(1.05);
}

.gallery-heading {
    position: absolute;
    z-index: 200;
    left: 8%;
    top: 0;
    width: 80vw;
}

.gallery-heading h2 {
    color: var(--medium-dark-color);
    font-family: 'Italiana', serif;
    font-style: normal;
    font-weight: 900;
    font-size: 52px;
    line-height: 56px;
    letter-spacing: 1px;
    text-transform: lowercase;
    -webkit-text-stroke: 2px var(--medium-dark-color);
    margin: 0;
}

/* ČLANCI - SMALL*/

.clanak-text {
    width: 250px;
    position: relative;
    padding: 0;
}

.clanak-text h2,
.clanak-sm-text h2 {
    font-family: 'Italiana', serif;
    font-style: normal;
    font-weight: 900;
    font-size: 38px;
    line-height: 44px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.clanak-sm-text h2 {
    margin-bottom: 10px;
}

.clanak-text p,
.clanak-sm-text p {
    color: var(--light-color);
    font-family: 'Montserrat', sans-serif;    
    font-style: normal;
    font-weight: 300;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 1px;
    margin-bottom: 28px;
}

/* CTA button (only small articles) */
.cta {
    color: white;
    font-size: 26px;
    line-height: 30px;
    border: 2.5px solid white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    transform: rotate(-45deg);
    position: relative;
    transition-duration: 0.4s;
}

.cta i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cta:hover {
    color: var(--primary-color);
    border: 2.5px solid var(--primary-color);
    transform: rotate(360deg);
}

/* SMALL ARTICLES general + img *******************************************/
.clanci-small {
    width: 70vw;
    margin: 0 auto;
    margin-bottom: 140px;
}

.clanak-small {
    height: 875px;
}

.clanci-small-2,
.clanci-small-4 {
    height: 1100px;
    margin: 0 auto 80px auto;
}

.kolaz {
    position: relative;
    height: 600px;
}

.kolaz-images {
    position: absolute;
    z-index: 2;
    transition-duration: 0.2s;
}

.kolaz-images:hover {
    transform: scale(1.1);
}

.kolaz-img1,
.kolaz-img4  {
    left: -22%;
    margin-top: 65px;
}

.kolaz-img2,
.kolaz-img5 {
    left: 44%;
}

.kolaz-img3,
.kolaz-img6 {
    left: 15%;
    margin-top: 300px;
    z-index: 1;
}

.kolaz-img1 img,
.kolaz-img4 img {
    width: 180px;
}

.kolaz-img2 img,
.kolaz-img5 img {
    width: 260px;
}

.kolaz-img3 img,
.kolaz-img6 video,
.kolaz-img6 img {
    width: 200px;
}

/* .text-center p {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.6s ease-in-out;
}

.text-center:hover p {
  opacity: 1;
  transform: translateY(0);
} */
.art-image {
  max-width: 730px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* MEDIA QUERIS */
@media (min-width:320px) {

    .clanci-small {
        margin-bottom: 160px; 
    }

    .kolaz-img2 img, .kolaz-img5 img {
        width: 173px;
    }

    .kolaz-img1 img, .kolaz-img4 img {
        width: 155px;
    }

    .kolaz-img3 img, .kolaz-img6 video, .kolaz-img6 img {
        width: 174px;
    }

    .kolaz-img3, .kolaz-img6 {
        margin-top: 258px;
    }
}
@media (min-width: 360px) {


    .gallery-img {
        height: 236px;
    }

    .clanci-small {
        margin-bottom: 140px;
    }

    .clanak-small {
        height: 940px;
    }

    .kolaz {
        height: 615px;
    }
}

@media (min-width: 375px) {

    /* PILATES HEADER */
    header .page-title {
        font-size: 35px;
        -webkit-text-stroke: 4px var(--bs-primary);
    }

    .intro {
        width: 280px;
        margin: 60px auto 100px auto;
    }

    .gallery-naslov {
        width: 70vw;
        top: -7%;
    }
    
    .gallery-img {
        height: 268px;
    }

    .clanak-small {
        height: 825px;
    }

    .kolaz-img5 img {
        width: 205px;
    }

    .kolaz-img6 {
        margin-top: 290px;
    }   

    .kolaz-img2, .kolaz-img5 {
        left: 40%;
    }

    .kolaz-img1, .kolaz-img4 {
        left: -16%;
    }

}

@media (min-width: 400px) {
    .intro {
        margin: 60px auto 165px auto;
    }

    .info-gallery.intro {
        margin: 60px auto 105px auto
    }
    .gallery-naslov {
        top: -7%;
    }
    .gallery-img {
        height: 300px;
    }

    .clanci-small {
        margin-bottom: 160px;
    }

    .clanak-small {
        height: 915px;
    }

    .kolaz {
        height: 740px;
    }
    
    .kolaz-img1, .kolaz-img4 {
        left: -19%;
    }

    .kolaz-img3 {
        margin-top: 340px;
    }

    .kolaz-img6 {
        margin-top: 330px;
    }

    .kolaz-img1 img{
        width: 230px;
    }

    .kolaz-img4 img {
        width: 200px;
    }

    .kolaz-img2 img {
        width: 322px;
    }

    .kolaz-img5 img {
        width: 222px;
    }

    .kolaz-img3 img,
    .kolaz-img6 video {
        width: 260px;
    }

    .kolaz-img6 img {
        width: 215px;
    }

    .kolaz-img2, .kolaz-img5 {
        left: 46%;
    }
}


@media (min-width: 480px) {

    .gallery-naslov {
        width: 60vw;
        top: -12%;
    }

    .gallery-img {
        width: 260px;
        height: 380px;
    }

    .kolaz {
        height: 725px;
    }

    .kolaz-img1 img,
    .kolaz-img4 img,
    .kolaz-img3 img {
        width: 230px;
    }

    .kolaz-img2 img{
        width: 310px;
    }

    .kolaz-img5 img {
        width: 250px;
    }

    .kolaz-img3, 
    .kolaz-img6 {
        margin-top: 330px;
    }
}

@media (min-width: 576px) {
    .gallery-img {
        height: 422px;
    }

    .gallery-img img {
        margin-top: 0;
    }
}

@media (max-width: 767px) {
    .art-image {
        max-width: 70%;
    }
    .video-desktop {
        display: none;
    }
    .video-mobile {
        display: block;
    }
}

@media (min-width: 768px) {


    /* PILATES HEADER */

    header .page-title {
        font-size: 123px;
    }

    .background-shape-gold2 {
        right: 20%;
    }

    .intro {
        width: 445px;
        margin: 100px auto;
    }
    
    .text-sample p {
        font-size: 18px;
        line-height: 24px;
    }

    .gallery-naslov {
        width: 90vw;
        top: -19%;
        left: 6%;
    }

    .gallery-naslov h2 {
        font-size: 66px;
        line-height: 68px;
    }

    .gallery-naslov.align-left {
    text-align: left;
    left: 8%;
    }

    .gallery-naslov.align-right {
        text-align: right;
        right: 8%;
        left: auto;
    }


    .gallery-img {
        width: 25vw;
        height: 280px;
    }

    /* ČLANCI-SMALL*/

    .clanak-text h2, .clanak-sm-text h2 {
        font-size: 42px;
        line-height: 48px;
        margin-bottom: 10px;
    }

    .clanak-text p, .clanak-sm-text p {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 26px;
    }

    .sm-text-prvi {
        margin-top: 170px;
    }

    .sm-text-ostali {
        margin-top: 270px;
    }

    .clanci-small {
        width: 92vw;
        margin-bottom: 260px;
    }

    .clanak-small {
        height: 700px;
    }
    
    .kolaz-img4 {
        left: 5%;
        margin-top: 180px;
    }

    .kolaz-img5 {
        left: 50%;
        margin-top: 80px;
    }

    .kolaz-img3{
        margin-top: 388px;
        left: 26%;
    }

    
    .kolaz-img6 {
        margin-top: 450px;
        left: 40%;
    }

    .kolaz-img6 img {
        width: 235px;
    }

    .kolaz-img1 {
        left: -6%;
    }

    .kolaz-img2 {
        left: 33%;
    }

    .art-image {
        max-width: 420px;
    }
}

@media (min-width: 991px) {
    .background-shape.gold {
        top: 62%;
    }

    .background-shape:nth-child(5) {
        top: 55%;
    }

    .background-shape.silver{
        top: 62%;
    }

    .section-gallery-team {
        width: 80vw;
    }

    .background-shape-gold3 {
        top: -7%;
        right: -9%;
    }

    .background-shape-gold2 {
        width: 41%;
        bottom: -1%;
        right: -25%;
    }

    .intro {
        width: 580px;
    }

    .gallery-img {
        height: 370px;
    }

    .gallery-naslov {
        top: -14%;
    }

    /* ČLANCI-SMALL*/

    .clanci-small {
        width: 85vw;
        margin-bottom: 260px;
    }

    .kolaz-img3 {
        left: 15%;
    }

    .kolaz-img4 {
        left: 12%;
    }

    .kolaz-img5 {
        left: 51%;
    }

    .kolaz-img6 {
        left: 44%;
    }

    .kolaz-img1 {
        left: -1%;
    }

    .art-image {
        max-width: 600px;
    }
}

@media (min-width: 1200px) {

    .video-header {
        aspect-ratio: 16/9;
        height: unset;
    }

    .background-shape-gold3 {
        width: 43%;
        top: 65%;
        right: 76%;
    }

    .intro {
        width: 800px;
        margin: 100px auto 200px auto;
    }

    .text-sample p {
        font-size: 20px;
        line-height: 30px;
    }

    .gallery {
        margin: 100px auto 120px auto;
    }

    .gallery-naslov {
        left: 40%;
        top: -14%;
    }

    .gallery-naslov h2 {
        font-size: 90px;
        line-height: 90px;
    }

    .gallery-naslov.naslov-h2{
        left: 9%;
    }

    .gallery-img {
        width: 25vw;
        height: 466px;
    }

    /* ČLANCI-SMALL*/

    .clanci-small {
        width: 76vw;
        margin-bottom: 220px;
    }

    .clanak-small {
        height: 800px;
    }

    .sm-text-prvi {
        margin-top: 160px;
    }

    .kolaz {
        width: 670px;
    }

    .kolaz-img1 {
        left: 0;
    }

    .kolaz-img2 {
        left: 34%;
    }

    .kolaz-img3, .kolaz-img4 {
        left: 7%;
    }

    .kolaz-img3, .kolaz-img6 {
        margin-top: 450px;
    }

    .kolaz-img5 {
        left: 50%;
        margin-top: -8px;
    }

    .kolaz-img6 {
        left: 50%;
        margin-top: 499px;
    }

    .kolaz-img1 img,
    .kolaz-img4 img {
        width: 260px;
    }

    .kolaz-img2 img,
    .kolaz-img5 img{
        width: 340px;
    }

    .kolaz-img3 img,
    .kolaz-img6 img,
    .kolaz-img6 video {
        width: 270px;
    }
}

@media (min-width: 1366px) {
    .gallery-img {
        height: 500px;
    }

    .gallery-naslov {
        top: -13%;
        left: 44%;
    }

    .gallery-naslov.naslov-h2{
        left: 9%;
    }

    .clanci-small {
        width: 63vw;
    }

    .kolaz-img5,
    .kolaz-img6 {
        left: 45%;
    }


}

@media (min-width: 1440px) {

    .background-shape-gold2{
        top: 66%;
        right: -2%;
    }

    .clanci-small {
        width: 60vw;
    }

    .art-image {
        max-width: 700px;
    }
}

@media (min-width: 1650px) {
    .background-shape:nth-child(1){
        width: 19%;
        /* opacity: 0.16; */
        top: 16%;
        right: 1%;
        rotate: -15deg;
    }

    .background-shape:nth-child(4) {
        top: 36%;
    }

    .background-shape:nth-child(6){
        top: 49%;
    }

    .background-shape.red:nth-child(7) {
        top: 45%;
    }

    .background-shape.red:nth-child(8) {
        top: 46%;
    }

    .background-shape-gold3 {
        top: 0%;
        right: 9%;
    }

    .background-shape-gold2 {
        top: 62%;
        right: 30%;
    }

    .gallery {
        width: 84vw;
        margin: 100px auto 130px auto;
    }

    .gallery-img {
        height: 515px;
        width: 20vw;
    }

    .gallery-naslov {
        top: -11%;
        left: 36%;
    }

    .gallery-naslov.naslov-h2{
        left: 9%;
    }

    /* ČLANCI-SMALL */
     .clanci-small {
        width: 58vw;
    }

    .clanak-small {
        height: 820px;
    }

    .sm-text-prvi {
        margin-top: 200px;
    }

    .kolaz-img1 {
        left: -6%;
    }

    .kolaz-img5 {
        left: 47%;
    }

    .kolaz-img6 {
        left: 47%;
    }

    .kolaz-img1 img,
    .kolaz-img4 img {
        width: 280px;
    }

    .kolaz-img2 img,
    .kolaz-img5 img {
        width: 340px;
    }

    .kolaz-img3 img,
    .kolaz-img6 img,
    .kolaz-img6 video {
        width: 300px;
    }
} 

@media (min-width: 1920px) {
    .gallery {
        width: 1340px;
        margin: 100px auto 160px auto;
    }

    .gallery-naslov {
        left: 34%;
        top: -16%;
    }

    .gallery-naslov h2 {
        font-size: 100px;
        line-height: 100px;
    }

    .gallery-img {
        width: 324px;
        height: 466px;
    }

    /* ČLANCI-SMALL */
    .clanci-small {
        width: 48vw;
        margin-bottom: 345px;
    }

    .clanak-small {
        height: 700px;
        margin: 0 auto 50px auto;
    }

    .sm-text-prvi {
        margin-top: 180px;
    }

    .sm-text-ostali {
        margin-top: 280px;
    }

    .kolaz-img1 img,
    .kolaz-img4 img {
        width: 280px;
    }

    .kolaz-img2 img,
    .kolaz-img5 img{
        width: 340px;
    }

    .kolaz-img3 img,
    .kolaz-img6 img,
    .kolaz-img6 video {
        width: 270px;
    }
}

@media (min-width: 1921px){
    .gallery {
        width: 1800px;
        margin: 180px auto 150px auto;
    }

    .gallery-img {
        width: 436px;
        height: 650px;
    }

    .gallery-naslov {
        left: 44%;
        top: -11%;
    }

    .gallery-naslov.naslov-h2{
        left: 9%;
    }

    .background-shape:nth-child(1){
        top: 16%;
    }

    .background-shape:nth-child(2){
        top: 25.5%;
        width: 16%;
    }

    .background-shape:nth-child(3){
        top: 34%;
        width: 19%;
    }

    .background-shape:nth-child(4){
        width: 19%;
        top: 36%;
    }

    .background-shape:nth-child(6){
        top: 80%;
    }

     .art-image {
        max-width: 750px;
    }
}