
/***********************/
/* RESET CSS */
/***********************/

* {
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  margin: 0;
  padding: 0;
  
}

.container {
  max-width: 1200px;
    width: 100%;
}

html {
  /* 
    font-size: 10px; 
    10px / 16px = 0.625 = 62.5%
    Percentage of user's browser font-size setting
  */
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  background: #1E1E1E;
}

p {
  font-size: 17px;
  font-family: 'Montserrat';
  font-weight: 100;
  letter-spacing: 0em;
}

a:link,
a:visited {
  color: #DDC19E;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s;
}

/* HELPER CLASSES */
.center {
  display: flex;
  align-items: center;
  justify-content: center;
}

/***********************/
/* NAVIGATION MENU */
/***********************/

.logo h2 {
    color: #DDC19E;
    font-family: "Viaoda Libre", serif;
    font-size: 7rem;
    font-weight: 300;
}

/* OVERLAY */
.overlay {
  z-index: 9;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100svh;
  background-color: rgba(0, 0, 0, 0.8);
}

.overlay-slide-right {
  transition: all 0.4s ease-in-out;
  transform: translateX(0);
}

.overlay-slide-left {
  transition: all 0.8s ease-in-out;
  transform: translateX(-100%);
}

/* NAV MENU ITEMS */
nav ul {
  height: 100vh;
  height: 100svh;
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

nav ul li {
  height: 20%;
}

/* nav li:nth-of-type(1) {
  background-color: #626059;
}

nav li:nth-of-type(2) {
  background-color: #9d5543;
}

nav li:nth-of-type(3) {
  background-color: #3d405b;
}

nav li:nth-of-type(4) {
  background-color: #5a7d6c;
}

nav li:nth-of-type(5) {
  background-color: #917a56;
} */

nav li a {
  letter-spacing: 0.4rem;
  font-size: 2rem;
}

nav li a:hover,
nav li a:active {
  transform: scale(1.2);
}

/***********************/
/* NAV SLIDE IN ANIMATION */
/***********************/

.slide-in-1 {
  animation: slide-in 0.4s linear 0.2s both;
}

.slide-in-2 {
  animation: slide-in 0.4s linear 0.4s both;
}

.slide-in-3 {
  animation: slide-in 0.4s linear 0.6s both;
}

.slide-in-4 {
  animation: slide-in 0.4s linear 0.8s both;
}



@keyframes slide-in {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

/***********************/
/* NAV SLIDE OUT ANIMATION */
/***********************/

.slide-out-1 {
  animation: slide-out 0.3s linear 0.5s both;
}

.slide-out-2 {
  animation: slide-out 0.3s linear 0.4s both;
}

.slide-out-3 {
  animation: slide-out 0.3s linear 0.3s both;
}

.slide-out-4 {
  animation: slide-out 0.3s linear 0.2s both;
}



@keyframes slide-out {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

/***********************/
/* HAMBURGER MENU ANIMATION */
/***********************/

.hamburger-menu {
  position: fixed;
  top: 1rem;
  right: 2rem;
  z-index: 10;
  cursor: pointer;
}

.menu-bar1, .menu-bar2, .menu-bar3 {
    width: 3.5rem;
    height: 0.2rem;
    background-color: #ddc19e;
    margin: 0.8rem 0;
    transition: 0.4s;
}

.menu-bar2 {
  width: 2rem;
  margin-left: auto;
}

/* ROTATE FIRST BAR */
.active .menu-bar1 {
  transform: rotate(-45deg) translate(-0.7rem, 0.8rem);
}

/* FADE OUT SECOND BAR */
.active .menu-bar2 {
  opacity: 0;
}

/* ROTATE LAST BAR */
.active .menu-bar3 {
  transform: rotate(45deg) translate(-0.6rem, -0.8rem);
}

/***********************/
/* SECTION */
/***********************/

section {
  width: 100%;
  height: 100vh;
  height: 85svh;
  position: relative;
  letter-spacing: 0.2rem;
  text-align: center;
  color: #fff;
}

.logo {
  position: absolute;
  z-index: 2;
  top: 0.5rem;
  left: 1.5rem;
  font-size: 1.4rem;
  letter-spacing: 0.3rem;
}






/**************************/
/* MEDIA QUERY */
/**************************/

/* BELOW 832px (Tablets) */
@media (max-width: 52em) {
  html {
    /* 8px / 16px = 0.5 = 50% */
    font-size: 50%;
  }
}

/* BELOW 600px (Phones) */
@media (max-width: 37em) {
  .hamburger-menu {
    top: 0.5rem;
    right: 1rem;
  }
  .logo {
    top: 1rem;
    left: 1rem;
  }
  h1 {
    font-size: 2rem;
  }

  .logo h2 {
    color: #DDC19E;
    font-family: "Viaoda Libre", serif;
    font-size: 6rem;
    font-weight: 300;
}

.main-section {
  justify-content: flex-end!important;
  padding-bottom: 2rem!important;
}

.golos-inner {
  display: flex;
  flex-direction: column;
}

iframe {
  border-radius: 20px;
  box-shadow: 20px 14px 0 0 rgba(38, 27, 13, 0.5);
  width: 100%;
}

.golos-right {
  background: #40291E;
  z-index: -1;
  border-radius: 20px;
  padding-left: 3rem!important;
  padding-right: 3rem;
  position: relative;
  top: -70px!important;
  text-align: left;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

section {
  padding-left: 1rem;
  padding-right: 1rem;
}

section.main-section h1 {
  text-align: left;
  font-weight: 100;
  padding-left: 0rem!important;
  color: #ddc19e;
  font-size: 3rem!important;
  padding-top: 20rem;
  padding-bottom: 3rem!important;
}

.kartini-inner {
  display: grid;
  grid-template-columns: repeat(1, 1fr)!important;
  grid-template-rows: 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-items: center;
}

.pesni-inner {
  border: solid;
  border-radius: 20px;
  padding: 20px;
  border-color: #f9c07a;
  display: grid
;
  grid-template-columns: repeat(1, 1fr)!important;
  grid-template-rows: 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}

.footer-inner {
  display: flex;
  margin-top: 50px;
  flex-direction: column;
  align-items: center;
}

.footer-left {
  display: flex;
  flex-direction: column;
  align-items: center!important;
  gap: 30px;
  width: 100%!important;
  margin-bottom: 30px;
}

button.music-btn {
  position: fixed;
  top: 90%;
  left: 30%!important;
  padding: 10px 10px;
  border-radius: 100px;
  border: none;
  background: #f9c07a;
  z-index: 1;
}

.golos-left {
  width: 100%!important;
  height: 360px;
  position: relative;
}

.talants-card2 {
  padding-top: 0!important;
}

section#golos {
  display: flex
;
  justify-content: center;
  height: 110rem!important;
}

h3.zag-footer {
  text-align: left;
  font-weight: 300;
  font-size: 28px;
  color: #f9c079;
  font-family: "Viaoda Libre";
  margin-top: 29px;
  text-align: center!important;
}
}




/* hero */

.main-section {
  background: url(/img/fon.png);
  background-size: cover;
  background-position: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  flex-direction: column;
  z-index: -1;
}
  

  
section.main-section h1 {
  text-align: left;
  font-weight: 100;
  padding-left: 1rem;
  color: #ddc19e;
  font-size: 4rem;
  padding-top: 20rem;
}
  
  .main-section p {
    font-size: 1.5rem;
    text-transform: uppercase;
    text-align: center;
    color: #ffffff;
  }
  



/* Голос */

section#golos {
  display: flex;
  justify-content: center;
  height: auto;
}

.golos-inner {
  display: flex;
}

iframe {
  border-radius: 20px;
  box-shadow: 20px 14px 0 0 rgba(38, 27, 13, 0.5);

}

.golos-left {
  position: absolute;
}

.golos-left {
  width: 400px;
  height: 360px;
  position: relative;
}

.golos-right {
  background: #40291E;
  z-index: -1;
  border-radius: 20px;
  padding-left: 12rem;
  position: relative;
  top: -30px;
  text-align: left;
  padding-top: 3rem;
}

h3.zagolovk {
  font-weight: 300;
  font-size: 58px;
  color: #f9c079;
  font-family: "Viaoda Libre";
}

p.opisanie {
  font-weight: 100;
  font-size: 17px;
  color: #ffe6c6;
  font-family: 'Montserrat';
  letter-spacing: 0em;
}


/* таланты */

.talants-inner {
  --auto-grid-min-size: 35rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(var(--auto-grid-min-size), 1fr));
  grid-template-rows: 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  
  }


  section#talants {
    display: flex;
    justify-content: center;
    height: auto;
    margin-top: 50px;
    background: #40291e;
    padding: 30px 0;
}

h3.talants-zag {
  font-weight: 300;
  font-size: 28px;
  color: #f9c079;
  font-family: "Viaoda Libre";
  text-transform: uppercase;
  margin-bottom: 10px;
}

p.talants-opis {
  text-align: left;
}

img.talants-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background-repeat: no-repeat;
  border-radius: 20px;
  margin-bottom: 10px;
}

.talants-card2 {
  padding-top: 50px;
}

/* Песни */

button.music-btn {
  position: fixed;
  top: 90%;
  left: 90%;
  padding: 10px 10px;
  border-radius: 100px;
  border: none;
  background: #f9c07a;
}


section#pesni {
  display: flex;
  justify-content: center;
  height: auto;
  margin-top: 50px;
}

.pesni-opis {
  font-size: 17px;
  font-family: 'Montserrat';
  font-weight: 100;
  letter-spacing: 0em;
}

.pesni-zag {
  font-weight: 300;
  font-size: 28px;
  color: #f9c079;
  font-family: "Viaoda Libre";
  
  margin-bottom: 10px;
}

.pesni-inner {
  border: solid;
  border-radius: 20px;
  padding: 20px;
  border-color: #f9c07a;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}

.pesni-left {
  text-align: left;
}

/* блок */

section#block {
  display: flex;
  justify-content: center;
  height: auto;
  margin-top: 50px;
}

.zagolovok-bloka h3 {
  font-weight: 300;
  font-size: 28px;
  color: #f9c079;
  font-family: "Viaoda Libre";
  
}

.zagolovok-bloka {
  padding: 20px 30px;
  border-radius: 20px;
  background: #421414;
}

/* Картины */

h3.content-zag {
  font-weight: 300;
  font-size: 18px;
  color: #f9c079;
  font-family: "Viaoda Libre";
  margin-top: 20px;
}

section#kartini {
  display: flex;
  justify-content: center;
  height: auto;
  margin-top: 50px;
}

.kartini-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-items: center;
}

a.wiggle img {
  width: 100%;
  border-radius: 20px;
  height: 400px;
  object-fit: cover;
}

.wiggle {
  display:block;
  margin:0 auto;
  
  
}

.wiggle:hover {
  -webkit-animation:none;
}

.short-animate {
  -webkit-transition:.5s ease-in-out;
  -moz-transition:.5s ease-in-out;
  -ms-transition:.5s ease-in-out;
  -o-transition:.5s ease-in-out;
  transition:.5s ease-in-out;
}

.long-animate {
  -webkit-transition: .5s .5s ease-in-out;
  -moz-transition: .5s .5s ease-in-out;
  -ms-transition: .5s .5s ease-in-out;
  -o-transition:.5s .5s ease-in-out;
  transition:.5s .5s ease-in-out;
}

html,body {
  height:100%;
  min-height:100%;
}

.lightbox {
  position:fixed;
  top:-100%;
  bottom:100%;
  left:0;
  right:0;
  background:#000000c8;
  z-index:501;
  opacity:0;
}

.kartini-card {
  width: 300px;
}

.lightbox img {
  position:absolute;
  margin:auto;
  top:0;
  left:0;
  right:0;
  bottom:0;
  max-width:0%;
  max-height:0%;
}

#lightbox-controls {
  position:fixed;
  height:70px;
  width:70px;
  top:-70px;
  right:0;
  z-index:502;
  background:rgba(0,0,0,.1);
}

#close-lightbox {
  display:block;
  position:absolute;
  overflow:hidden;
  height:50px;
  width:50px;
  text-indent:-5000px;
  right:10px;
  top:10px;
  -webkit-transform:rotate(45deg);
  -moz-transform:rotate(45deg);
  -ms-transform:rotate(45deg);
  -o-transform:rotate(45deg);
  transform:rotate(45deg);
}

#close-lightbox:before {
  content:'';
  display:block;
  position:absolute;
  height:0px;
  width:3px;
  left:24px;
  top:0;
  background:white;
  border-radius:2px;
  -webkit-transition: .5s .5s ease-in-out;
  -moz-transition: .5s .5s ease-in-out;
  -ms-transition: .5s .5s ease-in-out;
  -o-transition:.5s .5s ease-in-out;
  transition:.5s .5s ease-in-out;
}

#close-lightbox:after {
  content:'';
  display:block;
  position:absolute;
  width:0px;
  height:3px;
  top:24px;
  left:0;
  background:white;
  border-radius:2px;
  -webkit-transition: .5s 1s ease-in-out;
  -moz-transition: .5s 1s ease-in-out;
  -ms-transition: .5s 1s ease-in-out;
  -o-transition:.5s 1s ease-in-out;
  transition:.5s 1s ease-in-out;
}

.lightbox:target {
  top:0%;
  bottom:0%;
  opacity:1;
}

.lightbox:target img {
  max-width:100%;
  max-height:100%;
}

.lightbox:target ~ #lightbox-controls {
  top:0px;
}

.lightbox:target ~ #lightbox-controls #close-lightbox:after {
  width:50px;
}

.lightbox:target ~ #lightbox-controls #close-lightbox:before {
  height:50px;
}

@-webkit-keyframes wiggle {
  0% {
    -webkit-transform:rotate(2deg);
  }
  20% {-webkit-transform:rotate(-2deg);}
  40% {-webkit-transform:rotate(2deg);}
  60% {-webkit-transform:rotate(-2deg);}
  80% {-webkit-transform:rotate(2deg);}
  100% {-webkit-transform:rotate(-2deg);}
}


/* footer */

section#footer {
  display: flex;
  justify-content: center;
  height: auto;
  margin-top: 50px;
  background: #121212;
  padding-bottom: 20px;
}

h3.zag-footer {
  text-align: left;
  font-weight: 300;
  font-size: 28px;
  color: #f9c079;
  font-family: "Viaoda Libre";
  margin-top: 29px;
}

.footer-inner {
  display: flex;
  margin-top: 50px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  width: 50%;
}

.tel-footer a {
  text-align: left;
  font-weight: 300;
  font-size: 28px;
  color: #f9c079;
  font-family: "Viaoda Libre";
  margin-left: 10px;
}

.footer-link a {
  margin-right: 10px;
}

.footer-right {
  width: 80%;
}

.uk-container.uk-slider.uk-slider-container {
  padding: 0;
}

canvas, img, svg, video {
  max-width: 100%;
  height: auto;
  box-sizing: border-box;
  border-radius: 20px;
}