@font-face{

  font-family:'Nicoletta';

  src:url('fonts/Nicoletta.otf');

}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{

  background:#050505;

  color:white;

  font-family:'Montserrat', sans-serif;

}

section{
  padding:80px 60px;
}

.hero{

  height:100vh;

  background-image:url('images/background.jpg');

  background-size:cover;

  background-position:center;

  background-repeat:no-repeat;

  position:relative;

  overflow:visible;

  padding-bottom:80px;

  border-bottom-left-radius:40px;

  border-bottom-right-radius:40px;

}

.overlay{

  position:absolute;

  inset:0;

  background:linear-gradient(
    to bottom,
    rgba(0,0,0,0.65),
    rgba(0,0,0,0.85)
  );

}

.hero-content{
  position:relative;
  z-index:2;

  display:flex;
  justify-content:space-between;
  align-items:center;

  gap:50px;
}

.left h1{
  font-size:72px;
  line-height:1.1;
}


.left p{

   margin-top:40px;

  max-width:560px;

  font-size:26px;

  line-height:1.8;

  font-weight:300;

  color:rgb(255, 255, 255);

  letter-spacing:0.4px;

  text-shadow:0 0 20px rgba(255,255,255,0.05);

  animation:fadeText 1.5s ease;

}

@keyframes fadeText{

  from{
    opacity:0;
    transform:translateY(20px);
  }

  to{
    opacity:1;
    transform:translateY(0);
  }

}

.socials{

  display:flex;

  gap:18px;

  margin-top:50px;

}

.socials a{

  width:60px;

  height:60px;

  border-radius:50%;

  display:flex;

  align-items:center;

  justify-content:center;

  text-decoration:none;

  color:white;

  font-size:24px;

  background:rgba(255,255,255,0.08);

  border:1px solid rgba(255,255,255,0.15);

  backdrop-filter:blur(10px);

  transition:0.3s;

}

.socials a:hover{

  transform:translateY(-5px);

  background:#d9a441;

  box-shadow:0 0 25px rgba(217,164,65,0.5);

}

.socials a i{

  transition:0.3s;

}

.socials a:hover i{

  transform:scale(1.5);

}

.right img{
  width:420px;
  border-radius:20px;
}

.about{

  display:flex;

  align-items:center;

  justify-content:space-between;

  gap: 10px;

  padding:140px 90px;

  background:#050505;

}

.about-image{

  flex:1;

}

.about-image img{

  width:100%;

  max-width:620px;

  border-radius:28px;

  object-fit:cover;

  box-shadow:
  0 20px 50px rgba(0,0,0,0.5);

}

.about-content{

  flex:1;

  max-width:650px;


}

.about-subtitle{

  font-size:18px;

  letter-spacing:5px;

  color:#d9a441;

  text-transform:uppercase;

}

.about-content h2{

  margin-top:28px;

  font-size:34px;

  line-height:1.2;

  font-weight:300;

  color:white;

}

.about-content p{

  margin-top:28px;

  font-size:20px;

  line-height:1.9;

  font-weight:300;

  color:rgba(255,255,255,0.72);

}

.slider{

  position:relative;

  width:100%;

  max-width:1400px;

  margin:60px auto 0;

  overflow:hidden;

  border-radius:35px;

}

.slide-box{

  border-radius:30px;

  overflow:hidden;

  background:#050505;

  position:relative;

}


.slide-box .slide{

  width:100%;

  height:820px;

  object-fit:cover;

  display:block;

}




.slides{

  display:grid;

  grid-template-columns:1fr 1fr;

  align-items:start;

  gap:20px;

  overflow:hidden;

}

.prev,.next{

  position:absolute;

  top:50%;

  transform:translateY(-50%);

  width:70px;

  height:70px;

  border:none;

  border-radius:50%;

  cursor:pointer;

  z-index:10;

  font-size:30px;

  color:white;

  background:rgba(255,255,255,0.08);

  backdrop-filter:blur(12px);

  transition:0.3s;

}

.prev:hover,.next:hover{

  background:#d9a441;

  box-shadow:0 0 30px rgba(217,164,65,0.5);

}

.prev{

  left:30px;

}

.next{

  right:30px;

}


.thumbnails{

  display:flex;

  gap:18px;

  overflow-x:hidden;

  justify-content:center;

  scroll-behavior:smooth;

  padding:10px 0;

  margin-top:30px;

}

.thumb{

  min-width:19%;

  min-width:160px;

  height:110px;

  object-fit:cover;

  border-radius:18px;

  cursor:pointer;

  opacity:0.35;

  transition:0.35s;
  

  border:2px solid transparent;

  box-shadow:
0 10px 25px rgba(0,0,0,0.35);

}


.thumbnails::-webkit-scrollbar{

  display:none;

}

.thumbnails{

  scrollbar-width:none;

}

.active-thumb{

  opacity:1;

  border:2px solid #d9a441;

  transform:translateY(-4px);

  box-shadow:
  0 0 25px rgba(217,164,65,0.45);

}

.thumb:hover{

  opacity:1;

  transform:translateY(-3px);

}

.works{

  padding:140px 80px;

  background:#050505;

}



.next{

  right:25px;

}

.video-section{

  padding:140px 80px;

  background:#050505;

}





.video-card{
  width:460px;
  flex:0 0 460px;
  border-radius:30px;
  overflow:hidden;
  background:#111;
  transition:0.4s;
}

.video-card video{
  width:100%;
  height:780px;
  object-fit:cover;
  display:block;
  border-radius:30px;
}

.video-card:hover{

  transform:translateY(-8px);

  transition:0.4s;

}



.video-gallery{

  display:flex;

  flex-direction:row;

  justify-content:center;

  align-items:flex-start;

  gap:30px;

  flex-wrap:wrap;

  max-width:1400px;

  margin:0 auto;

}

.cards{
  display:flex;
  gap:20px;
  margin-top:40px;
  justify-content:center;
  align-items:flex-start;
  flex-wrap:wrap;
}

.card{
  width:300px;
  border:1px solid #d9a441;
  border-radius:20px;
  padding:40px;
  text-align:center;
  align-self:flex-start;
}

.card p{
  font-size:36px;
  margin-top:20px;
  color:#d9a441;
}

@media(max-width:900px){

  .hero-content,
  .about,
  .cards{
    flex-direction:column;
  }

  .left h1{
    font-size:48px;
  }

  .right img, .about img, .gallery img{
    width:100%;
  }

}

.logo{
  position:absolute;

  top:20px;
  left:20px;

  z-index:1000;
}

.logo img{
  width:180px;
  height:auto;
}

.author{

  margin-top:20px;

  text-align:center;

  position:relative;

  z-index:10;

  width:100%;

}

.author h3{

  font-family:'Nicoletta';

  font-size:80px;

  font-weight:400;

  font-style:italic;

  color:white;

  line-height:1;

  letter-spacing:1px;

  transform:rotate(-2deg);

  text-shadow:
  0 0 10px rgba(255,255,255,0.15),
  0 0 25px rgba(255,255,255,0.08);

}

.author p{
  margin-top:14px;
  font-size:15px;
  letter-spacing:4px;
  text-transform:uppercase;
  color:rgba(255,255,255,0.9);
  line-height:1.4;
  display:block;
  position:relative;
  z-index:20;
}

.author{

  animation:fadeAuthor 1.5s ease;

}

@keyframes fadeAuthor{

  from{
    opacity:0;
    transform:translateY(20px);
  }

  to{
    opacity:1;
    transform:translateY(0);
  }

}

.about-content{

  animation:fadeAbout 1.4s ease;

}

@keyframes fadeAbout{

  from{

    opacity:0;

    transform:translateY(40px);

  }

  to{

    opacity:1;

    transform:translateY(0);

  }

}

.about{

  border-radius:40px;

  backdrop-filter:blur(6px);

}

/* ========= НОУТБУКИ ========= */

@media(max-width:1024px){

.hero-content{
    flex-direction:column;
    text-align:center;
}

.right{
    display:flex;
    flex-direction:column;
    align-items:center;
}

.about{
    flex-direction:column;
}

.slides{
   grid-template-columns:1fr;
}

.video-card{
   width:100%;
   flex:0 0 100%;
}

}

/* ========= ТЕЛЕФОН ========= */

@media(max-width:768px){

  body{
    overflow-x:hidden;
  }

  section{
    padding:60px 20px;
  }

  h2{
    font-size:42px !important;
    line-height:1.2;
  }

  /* HERO */

  .hero{
    height:auto;
    min-height:auto;
    padding-top:120px;
    padding-bottom:60px;
  }

  .hero-content{
    flex-direction:column;
    text-align:center;
    gap:40px;
  }

  .logo img{
    width:70px;
  }

  .left h1{
    font-size:42px;
  }

  .left p{
    font-size:15px;
    line-height:1.7;
    margin-top:30px;
  }

  .socials{
    justify-content:center;
    flex-wrap:wrap;
  }

  .socials a{
    width:48px;
    height:48px;
    font-size:18px;
  }

  .right{
    width:100%;
    display:flex;
    flex-direction:column;
    align-items:center;
  }

  .right img{
    width:100%;
    max-width:280px;
    height:auto;
    border-radius:20px;
    transform:none;
  }

  .author h3{
    font-size:42px;
  }

  .author p{
    font-size:10px;
    letter-spacing:3px;
  }

  /* ABOUT */

  .about{
    flex-direction:column;
    padding:60px 20px;
    gap:30px;
  }

  .about-image img{
    width:100%;
  }

  .about-content{
    max-width:100%;
  }

  .about-content h2{
    font-size:34px !important;
  }

  .about-content p{
    font-size:15px;
    line-height:1.8;
  }

  /* GALLERY */

  .works{
    padding:70px 20px;
  }

  .slider{
    margin-top:35px;
    border-radius:25px;
  }

  .slides{
    grid-template-columns:1fr;
  }

  .slide-box{
    border-radius:24px;
  }

  .slide-box .slide{
    width:100%;
    height:78vh;
    object-fit:cover;
    border-radius:24px;
  }

  .prev,
  .next{
    display:none;
  }

  .thumbnails{
    gap:10px;
    overflow:hidden;
    margin-top:20px;
  }

  .thumb{
    min-width:62px;
    width:62px;
    height:62px;
    border-radius:12px;
  }

  /* VIDEO */

  .video-section{
    padding:70px 20px;
  }

  .video-section h2{
    margin-bottom:35px;
  }

  .video-gallery{
    flex-direction:column;
    align-items:center;
    gap:24px;
  }

  .video-card{
    width:100%;
    max-width:320px;
    flex:none;
    border-radius:24px;
  }

  .video-card video{
    width:100%;
    height:500px;
    border-radius:24px;
  }

  /* PRICE */

  .price{
    text-align:center;
  }

  .cards{
    width:100%;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:24px;
  }

  .card{
    width:100%;
    max-width:320px;
    padding:30px 24px;
    margin-left:auto;
    margin-right:auto;
    text-align:center;
  }

  .card-header{
    text-align:center;
  }

  .card p{
    font-size:28px;
  }

  .pdf-link{
    font-size:14px;
    padding:12px 14px;
  }

  /* FOOTER */

  .footer{
    padding:70px 20px 40px;
  }

  .footer-content{
    flex-direction:column;
    gap:50px;
  }

  .footer-left h2{
    font-size:34px !important;
  }

}

/* ========= МАЛЕНЬКИЕ ТЕЛЕФОНЫ ========= */

@media(max-width:390px){

.left h1{
   font-size:40px;
}

.left p{
   font-size:15px;
}

}

.card-content{
  max-height:0;
  overflow:hidden;
  margin-top:0;

  transition:
    max-height 0.5s ease,
    margin-top 0.4s ease;
}

.card.active .card-content{
  max-height:500px;
  margin-top:25px;
}

.card-content ul{
  list-style:none;
  padding:0;
}

.card-content li{
  margin-bottom:14px;
  color:rgba(255,255,255,0.72);
  line-height:1.6;
  font-size:15px;
}

.card:hover{
  transform:translateY(-6px);
  box-shadow:0 0 30px rgba(217,164,65,0.12);
}

.footer{

  padding:120px 80px 60px;

  background:#050505;

  border-top:1px solid rgba(217,164,65,0.2);

}

.footer-content{

  display:flex;

  justify-content:space-between;

  gap:60px;

  max-width:1400px;

  margin:0 auto;

  flex-wrap:wrap;

}

.footer-left, .footer-center, .footer-right{

  flex:1;

  min-width:260px;

}

.footer-left h2{

  font-size:42px;

  font-weight:300;

  margin-bottom:12px;

}

.footer-left p{

  color:#d9a441;

  letter-spacing:3px;

  text-transform:uppercase;

  margin-bottom:24px;

}

.footer-left span{

  color:rgba(255,255,255,0.7);

  line-height:1.8;

  display:block;

}

.footer-center h3, .footer-right h3{

  margin-bottom:25px;

  font-size:28px;

  font-weight:300;

}

.footer-center{

  display:flex;

  flex-direction:column;

}

.footer-center a{

  display:flex;

  align-items:center;

  gap:14px;

  color:rgba(255,255,255,0.72);

  text-decoration:none;

  margin-bottom:18px;

  transition:0.3s;

}

.footer-center a i{

  width:22px;

  font-size:18px;

  color:#d9a441;

}

.footer-center a:hover{

  color:#d9a441;

}

.footer-right p{

  color:rgba(255,255,255,0.7);

  line-height:1.8;

  margin-bottom:30px;

}

.footer-btn{

  display:inline-flex;

  align-items:center;

  justify-content:center;

  width:220px;

  height:64px;

  border-radius:18px;

  background:#d9a441;

  color:black;

  text-decoration:none;

  font-size:18px;

  transition:0.3s;

}

.footer-btn:hover{

  transform:translateY(-4px);

  box-shadow:0 0 25px rgba(217,164,65,0.4);

}



.lightbox{

  position:fixed;

  inset:0;

  background:rgba(0,0,0,0.96);

  display:none;

  justify-content:center;

  align-items:center;

  z-index:9999;

  padding:20px;

}

.lightbox.active{
  display:flex;
}

.lightbox-image{

  max-width:100%;

  max-height:100%;

  object-fit:contain;

  border-radius:20px;

}

.close-lightbox{

  position:absolute;

  top:25px;

  right:25px;

  font-size:42px;

  color:white;

  cursor:pointer;

  z-index:10000;

}

.pdf-link{
  display:block;
  margin:12px 0;
  padding:14px 18px;

  border:1px solid #d9a441;
  border-radius:12px;

  color:white;
  text-decoration:none;

  transition:0.3s;
}

.pdf-link:hover{
  background:#d9a441;
  color:black;
}

.max-icon{
  width:24px;
  height:24px;
  object-fit:contain;
  display:block;
}


.max-icon{
  filter:brightness(0) invert(1);
}

.footer-max-link{
    display:flex;
    align-items:center;
}

.footer-max-icon{
    width:16px;
    height:16px;

    margin-right:6px;

    object-fit:contain;

    flex-shrink:0;

filter:
        brightness(0)
        saturate(100%)
        invert(70%)
        sepia(58%)
        saturate(760%)
        hue-rotate(356deg)
        brightness(95%)
        contrast(90%);

}

.additional-services{
  padding:120px 80px;
  background:#050505;
  text-align:center;
}



.additional-intro{
  max-width:760px;
  margin:0 auto 50px;
  font-size:20px;
  line-height:1.8;
  color:rgba(255,255,255,0.72);
}

.additional-box{
  display:flex;
  justify-content:center;
  gap:24px;
  flex-wrap:wrap;
  max-width:1200px;
  margin:0 auto;
}

.additional-item{
  width:340px;
  padding:34px 28px;
  border:1px solid rgba(217,164,65,0.55);
  border-radius:22px;
  background:rgba(255,255,255,0.03);
  transition:0.3s;
}

.additional-item:hover{
  transform:translateY(-6px);
  box-shadow:0 0 30px rgba(217,164,65,0.12);
}

.additional-item h3{
  font-size:22px;
  font-weight:400;
  color:#d9a441;
  margin-bottom:18px;
}

.additional-item p{
  font-size:15px;
  line-height:1.8;
  color:rgba(255,255,255,0.72);
}

.individual-price{
  max-width:860px;
  margin:50px auto 0;
  padding:34px 40px;
  border-radius:24px;
  border:1px solid rgba(217,164,65,0.45);
  background:rgba(217,164,65,0.08);
}

.individual-price h3{
  font-size:26px;
  font-weight:400;
  color:#d9a441;
  margin-bottom:16px;
}

.individual-price p{
  font-size:18px;
  line-height:1.8;
  color:rgba(255,255,255,0.78);
}

@media(max-width:768px){

  .additional-services{
    padding:70px 20px;
  }

  .additional-services h2{
    font-size:36px;
  }

  .additional-intro{
    font-size:15px;
    margin-bottom:35px;
  }

  .additional-box{
    flex-direction:column;
    align-items:center;
  }

  .additional-item{
    width:100%;
    max-width:320px;
    padding:30px 24px;
  }

  .individual-price{
    max-width:320px;
    padding:30px 24px;
  }

  .individual-price h3{
    font-size:22px;
  }

  .individual-price p{
    font-size:15px;
  }

}

section h2{
  font-size:38px;
  font-weight:400;
  text-align:center;
  margin-bottom:60px;
}

.cookie-banner{
    position:fixed;
    bottom:20px;
    left:20px;
    right:20px;

    max-width:700px;
    margin:auto;

    background:#222;
    color:#fff;

    padding:20px;

    border-radius:14px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

    box-shadow:0 10px 30px rgba(0,0,0,.25);

    z-index:9999;
}

.cookie-text{
    flex:1;
    line-height:1.5;
}

.cookie-buttons{
    display:flex;
    gap:12px;
    align-items:center;
}

.cookie-buttons button{

    background:#d4a13b;

    color:white;

    border:none;

    padding:10px 20px;

    border-radius:8px;

    cursor:pointer;
}

.cookie-buttons a{

    color:white;

    text-decoration:none;
}