@font-face {
  font-family: futura;
  src: url(./Futura-Bold.ttf);
}

@font-face {
  font-family: gilroy;
  src: url(./Gilroy-Medium.ttf);
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: gilroy;
}
html,body{
    height: 100%;
    width: 100%;
}
*::selection{
    background-color: #000;
    color: #FFF;
}
body{
    background-color: #F7F7F7;
}
.nav{
    height: 8vw;
    width: 100%;
    position: fixed;
    /* background-color: salmon; */
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2vw 2vw;
}
.nav1{
    height: 5.4vw;
    /* background-color: red; */
    overflow: hidden;

}
.nav2{
    display: flex;
    align-items: center;
    gap: 4vw;

}
.nav2 .icons{
    display: flex;
    gap: 2vw;
    background-color: #FFF;
    padding: 1vw 2vw;
    border-radius: 50px;
    box-shadow: #000;
}
.nav1 svg{
    display: block;
    overflow: hidden;
}
.nav2 a{
    text-decoration: none;
    color: #5e5e5e;
    font-size: 0.9vw;
}
.main{
    width: 100%;
}

.page1{
    min-height: 100vh;
    width: 100%;
    /* background-color: salmon; */
    margin: 1vw;

}

.vid-container{
    height: 100vh;
    width: 98.5%;
    background-color: rgb(199, 199, 199);
    /* margin: 9vw 1vw; */
}
.page1 h1{
    font-size: 15.3vw;
    font-family: "futura";
    line-height: 1;
    text-transform: uppercase;
}
.play{
    padding: 3vw 2.5vw;
    background-color: #000;
    color: #FFF;
    font-family: "futura";
    border-radius: 50%;
    position: fixed;
    text-transform: uppercase;
    font-size: 1.3vw;
    font-weight: 400;
    scale: 0;
    opacity: 0;
    transition: all cubic-bezier(0.19, 1, 0.22, 1) 0.5s;
}

.vid-container video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.wraper:nth-child(1){
    /* background-color: blue; */
    margin-top: 10vw;
}
.wraper{
    height: fit-content;
    overflow: hidden;
}
.page2{
    margin: 2vw 1vw;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2vw ;
}
.page2 .img{
    height: 100%;
    width: 33%;
    /* background-color: red; */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.page2 .img img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: top;
    scale: 1.2;
}

.cap{
    height: 45px;
    width: 60%;
    background-color: #F5DFCF;
    z-index: 9;
    position: absolute;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

#img2 .cap{
    background-color: #EDF3FF;
}
#img3 .cap{
    background-color: #F7F7F7;
}

.cap i{
    font-size: 1vw;
}
.cap h4{
    font-size: 0.8vw;
    font-weight: 400;
}
.cap h3{
    font-size: 0.8vw;
    font-weight: 600;
    letter-spacing: 0.03vw;
}
.page3{
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
    gap: 5vw;
}

.shop{
    height: 50vh;
    width: 45vw;
    /* background-color: red; */
    display: flex;
    align-items: center;
    justify-content: center;
}
.shop img{
    height: 90%;
    width: 60%;
   object-fit: cover;
}
.page4{
    height: 100vh;
    width: 100%;
}




@media (max-width:600px) {
    .page1{
        min-height: 50vh;
    }
    
    .vid-container{
        height: 30vh;
        width: 92%;
        margin: 4vw 4vw;
    }
    .page1 h1{
        letter-spacing: -1vw;
    }
    
    .vid-container video{
        object-position: center;
    }
    .wraper:nth-child(1){
        /* background-color: blue; */
        margin-top: 35vh;
        
    }
    .wraper{
        padding: 0 2vw;
    }
    .page2{
        margin: 4vw 1vw;
        min-height: 300vh;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: space-between;
        justify-content:center;
        padding: 2vw ;
        gap: 4vw;
    }
    .page2 .img{
        flex-shrink: 0;
        height: 100vh;
        width: 95%;
        /* background-color: red; */
        overflow: hidden;
    }
    .page2 .img img{
        height: 100%;
        width: 100%;
        object-fit: cover;
        object-position: top;
        scale: 1.2;
    }
    .page3{
        height: 200vh;
        width: 100%;
    }
    
}
.futuristic-footer {
    background-color: #000;
    color: #fff;
    padding: 50px 0 100px;
    font-family: 'Roboto', sans-serif;
    position: relative;
    overflow: hidden;
  }
  
  .futuristic-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, rgb(255, 255, 255), rgb(255, 255, 255), #f0f);
    animation: rainbow-line 5s linear infinite;
  }
  
  @keyframes rainbow-line {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
  }
  
  .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .footer-section {
    flex: 1;
    margin-bottom: 30px;
    min-width: 250px;
  }
  
  .footer-section h2, .footer-section h3 {
    color: rgb(255, 255, 255);
    margin-bottom: 20px;
  }
  
  .glitch {
    position: relative;
    font-size: 2.5rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  
  .glitch::before,
  .glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  .glitch::before {
    left: 2px;
    text-shadow: -2px 0 #ff00de;
    clip: rect(24px, 550px, 90px, 0);
    animation: glitch-anim-2 3s infinite linear alternate-reverse;
  }
  
  .glitch::after {
    left: -2px;
    text-shadow: -2px 0 #000000, 2px 2px #ff00de;
    animation: glitch-anim 2.5s infinite linear alternate-reverse;
  }
  
  @keyframes glitch-anim {
    0% { clip: rect(83px, 9999px, 62px, 0); }
    5% { clip: rect(60px, 9999px, 69px, 0); }
    10% { clip: rect(96px, 9999px, 95px, 0); }
    /* ... more keyframes ... */
    100% { clip: rect(5px, 9999px, 30px, 0); }
  }
  
  @keyframes glitch-anim-2 {
    0% { clip: rect(57px, 9999px, 93px, 0); }
    5% { clip: rect(8px, 9999px, 16px, 0); }
    10% { clip: rect(70px, 9999px, 86px, 0); }
    /* ... more keyframes ... */
    100% { clip: rect(91px, 9999px, 90px, 0); }
  }
  
  .footer-section ul {
    list-style-type: none;
    padding: 0;
  }
  
  .footer-section ul li {
    margin-bottom: 10px;
  }
  
  .hover-effect {
    color: #fff;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
  }
  
  .hover-effect::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: rgb(255, 255, 255);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease;
  }
  
  .hover-effect:hover {
    color: rgb(255, 255, 255);
  }
  
  .hover-effect:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
  }
  
  .social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
  }
  
  .social-icon {
    color: #fff;
    font-size: 1.5rem;
    transition: color 0.3s ease, transform 0.3s ease;
  }
  
  .social-icon:hover {
    color: rgb(255, 255, 255);
    transform: translateY(-5px);
  }
  
  .newsletter form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .newsletter input[type="email"] {
    flex: 1;
    min-width: 200px;
    padding: 10px;
    border: none;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
  }
  
  .btn-neon {
    padding: 10px 20px;
    background-color: transparent;
    color: rgb(255, 255, 255);
    border: 2px solid rgb(0, 0, 0);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  
  .btn-neon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background-color: rgb(255, 255, 255);
    z-index: -1;
    filter: blur(5px);
    opacity: 0;
    transition: all 0.3s ease;
  }
  
  .btn-neon:hover {
    color: #000;
    text-shadow: 0 0 5px rgb(215, 215, 215);
  }
  
  .btn-neon:hover::before {
    opacity: 1;
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding: 20px 0;
    position: relative;
  }
  
  .footer-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgb(255, 255, 255), transparent);
    margin-top: 10px;
  }
  
  @media (max-width: 768px) {
    .footer-content {
      flex-direction: column;
    }
  
    .footer-section {
      margin-bottom: 40px;
    }
  }