*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html {
    scrollbar-gutter: stable;
}


body{
    background: #000;
    color: #efd4b3;
    height: auto;
    overflow-x: hidden;
}


section{
    width:100%;
    font-size:32px;
    font-weight:bold;
    color:#fff;
}

/*==========================
    HEADER
==========================*/

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:110px;
    z-index:9999;
    box-shadow: 0 0 0 rgba(0,0,0,0);
    backdrop-filter: blur(0px);
    transition: transform .5s cubic-bezier(.22,1,.36,1), backdrop-filter .35s ease, box-shadow .35s ease;
}

.header.hide{
    transform: translate3d(0,-60px,0);
    transition: transform .73s cubic-bezier(.22,1,.36,1);
}




.header::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        to bottom,
        rgba(0,0,0,.15),
        transparent
    );
    opacity:1;
    transition:opacity .35s ease;
    pointer-events:none;
}

.header.scrolled::before{
    opacity:1;
}



/*==========================
    TOP
==========================*/

.header-top{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:60px;
    display:flex;
    justify-content:center;
    align-items:center;
    background: transparent;
    transition: all .35s ease;
}


/*==========================
    LOGO
==========================*/

.header-logo{
    cursor: pointer;
    animation: fadeInUp .8s cubic-bezier(.215,.61,.355,1);
}


/*==========================
    BOTTOM
==========================*/

.header-bottom{
    position:absolute;
    top:60px;
    left:0;
    width:100%;
    height:50px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 40px;
    background: transparent;
    border-top: 1px solid #fff;
    transition: all .35s ease;
}


.header.scrolled{
    background: transparent;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0,0,0,.22);
}

.header.scrolled .header-top{
    background: rgba(0,0,0,.60);
}

.header.scrolled .header-bottom{
    background: rgba(0,0,0,.75);
    border-top: 1px solid transparent;
}


/*==========================
    NAV
==========================*/

.nav-left,
.nav-right{
    display:flex;
    gap:40px;
}

.action-btn {
     font-family: "Manrope", sans-serif;
     font-weight: 200;
     position: relative;
     color: #fff;
     text-decoration: none;
     letter-spacing: 1.3px;
     padding: 7px 0;
     font-size: 17px;
     transition: color 0.3s ease;
     background: none;
     border: none;
     cursor: pointer;
     overflow: hidden;
     animation: fadeInUp .8s cubic-bezier(.215,.61,.355,1);
}


.action-btn::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 0;
     height: 2px;
     background-color: #fff;
     transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}


.action-btn:hover::after {
     width: 100%;
     left: 0;
}


.action-btn:not(:hover)::after {
     width: 0;
     left: auto;
     right: 0;
     transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}


/* ===========================
   Slider
=========================== */

.slider-container {
     font-family: "Manrope", sans-serif;
     position: relative;
     width: 100%;
     max-width: 3840px;
     height: 710px;
     margin: 0 auto;
     overflow: hidden;
}
        
.slider {
     display: flex;
     width: 100%;
     height: 100%;
     transition: transform 1s cubic-bezier(0.77, 0, 0.175, 1);
}
        
.slide {
    padding-top:110px;
    min-width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}
        
.slide-content {
    background: #444;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 80px 100px;
    background: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
    color: white;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s;
}
        
.slide.active .slide-content {
    transform: translateY(0);
    opacity: 1;
}
        
.slide h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    transform: translateX(-50px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
}
        
.slide.active h2 {
    transform: translateX(0);
    opacity: 1;
}
        
.slide p {
    font-size: 1.2rem;
    max-width: 600px;
    line-height: 1.6;
    transform: translateX(-50px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0.6s;
}
        
.slide.active p {
    transform: translateX(0);
    opacity: 1;
}
        
.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scale(1.1);
    transition: transform 8s cubic-bezier(0.215, 0.61, 0.355, 1);
    z-index: -1;
}
        
.slide.active .slide-bg {
    transform: scale(1);
}
        
        /* Цвета для слайдов */
.slide:nth-child(1) .slide-bg {
   background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
        
.slide:nth-child(2) .slide-bg {
   background: linear-gradient(135deg, #ff758c 0%, #ff7eb3 100%);
}
        
.slide:nth-child(3) .slide-bg {
   background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

        
.slider-nav {
   position: absolute;
   bottom: 40px;
   left: 50%;
   transform: translateX(-50%);
   display: flex;
   gap: 17px;
   z-index: 10;
}

        
.slider-dot {
   width: 15px;
   height: 15px;
   border-radius: 50%;
   background: rgba(255,255,255,0.5);
   cursor: pointer;
   transition: all 0.25s ease;
}

.slider-dot:hover {
   background: rgba(255,255,255,0.75);  
}
  
  
.slider-dot.active {
   background: white;
   transform: scale(1.3);
}
        
.slider-arrow {
   position: absolute;
   top: 50%;
   transform: translateY(-50%);
   width: 60px;
   height: 50%;
   border-radius: 10px;
   display: flex;
   justify-content: center;
   align-items: center;
   cursor: pointer;
   transition: all 0.2s ease;
   z-index: 10;
}
        
.slider-arrow:hover {
            background: rgba(255,255,255,0.1);
}
        
.slider-arrow.prev {
            left:10px;
}
        
.slider-arrow.next {
            right:10px;
}
        
.slider-arrow svg {
            width: 30px;
            height: 30px;
            fill: white;
}
        


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(8px);
}
    to {
        opacity: 1;
        transform: translateY(0);
       }
}
  
  

.slide.active .slide-content > * {
   animation: fadeInUp 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}
        

.slide.active h2 {
     animation-delay: 0.3s;
}
        
.slide.active p {
     animation-delay: 0.6s;
}


/* ===========================
   Spacer 1
=========================== */

.spacer-one{
    display: flex;   
    justify-content: start;
    height:80px;
    background:#000;
    padding: 0 40px;
    margin-top: 80px;
}


.spacer-one h1{
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    font-size: 40px;
    color: #fcedda;
    animation: fadeInUp .8s cubic-bezier(.215,.61,.355,1);
}



/* ===========================
   Collage
=========================== */

.collage{

    height:1200px;
    display:grid;
    grid-template-columns:1fr 1fr;
    grid-template-rows:600px 600px;

}

.collage-item{
    height:600px;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:28px;
    border: 1px solid #000;
}

.collage-item:nth-child(1){
    background:#555;
}
.collage-item:nth-child(2){
    background:#555;

}
.collage-item:nth-child(3){
    background:#555;

}
.collage-item:nth-child(4){
    background:#555;

}



/* ===========================
   Spacer 2
=========================== */

.spacer-two{
    display: flex;   
    justify-content: start;
    height:80px;
    background:#000;
    padding: 0 40px;
    margin-top: 80px;
}


.spacer-two h1{
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    font-size: 40px;
    color: #fcedda;
}


/* ===========================
   Gallery
=========================== */

.gallery-block{
    display:flex;
    justify-content: center;
    margin-bottom: 150px;
}


.gallery{
    position:relative;
    display: inline-flex;
    width: 100%;
    height:320px;
    overflow:hidden;
    perspective:1200px;
    user-select:none;
}

.item{
    position:absolute;
    left:50%;
    top:50%;
    width:240px;
    aspect-ratio:3 / 4;
    transform:translate(-50%, -50%);
    transition:transform .15s linear, opacity .15s linear;
    border-radius:18px;
    overflow:hidden;
    cursor: pointer;
}

.item img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    pointer-events: none;
}

.item a{
    display:block;
    width:100%;
    height:100%;
}



/* ===========================
   Footer
=========================== */

.footer-main{
    display: flex;
    flex-direction: row;
    border-top:1px solid #fcedda;
    height:500px;
    margin:0 40px;
    box-sizing:border-box;
}

.footer-container{
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items:flex-start;
    padding: 20px 0;
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items:flex-start;
}

.footer-links-2 {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
}


.footer-links-2 p {
    font-size: 15px;
    font-family: "Manrope", sans-serif;
    color: #fff;
    letter-spacing: 1.3px;
    font-weight: 200;
    margin-left: 10px;
}



.footer-container:nth-child(1n) {
    justify-content: space-between;
}

.footer-container:nth-child(2n) {
    align-items: flex-end;
    justify-content: flex-end;
}


.footer-container .action-btn{
    font-size: 14px;
}

.footer-container .action-btn::after {
     color: #fff;
     font-size: 14px;
     height: 1px;
}

.footer-info {
    margin-top: 30px;
    width: 100%;
}

.footer-info p {
    width: 60%;
    margin-top: 15px;
    font-family: "Manrope", sans-serif;
    font-weight: 200;
    position: relative;
    color: #fff;
    font-size: 10px;
    letter-spacing: 1.3px;
}



/*Lang-button*/

 .lang-row{
    display:flex;
    align-items:center;
    gap:10px;
}
 
.lang-switcher{
    position: relative;
    display: inline-block;
}

.action-lang{
    font-family: "Montserrat", sans-serif;
    position: relative;
    color: #fff;
    text-decoration: none;
    font-weight: 200;
    letter-spacing: 1.3px;
    padding: 7px 0;
    font-size: 14px;
    background: none;
    border: none;
    cursor: pointer;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 0px;
    line-height: 1;
}

.action-lang::after{
    content:'';
    position:absolute;
    bottom:0;
    left:0;
    width:0;
    height:2px;
    background-color:#fff;
    transition:width .4s cubic-bezier(0.165,0.84,0.44,1);
}

.action-lang:hover::after{
    width:100%;
}

.action-lang:not(:hover)::after{
    width:0;
    left:auto;
    right:0;
}


.lang-row.chevron{
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.lang-row .chevron svg{
    display:block;
    transition: transform .35s cubic-bezier(.22,1,.36,1);
    transform-origin: center;
}


.lang-switcher.active .chevron svg{
    transform: rotate(180deg);
}


.lang-dropdown{
    position:absolute;
    bottom:calc(100% + 10px);
    top:auto;
    font-family: "Montserrat", sans-serif;
    min-width:123px;
    background:#111;
    border-radius:5px;
    border: 1px solid #444;
    overflow:hidden;
    opacity:0;
    transform:translateY(-10px);
    pointer-events:none;
    transition:all .35s cubic-bezier(0.165,0.84,0.44,1);
    right: -2px;
}


.lang-switcher.active .lang-dropdown{
    opacity:1;
    transform:translateY(0);
    pointer-events:auto;
}


.lang-dropdown a{
    display:block;
    padding:10px 14px;
    color:#ccc;
    text-decoration:none;
    transition:background .2s ease;
}

.lang-dropdown a:hover{
    color:#000;
    background:#fcedda;
    text-decoration: underline;
}

.lang-dropdown a:not(:last-child){
    border-bottom: 1px solid #444;
}

.net-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    cursor: default;
}

.net-icon svg{
    display:block;
}

/*Lang-button*/


