* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
    font-family: "Poppins", sans-serif;
}

 :root {
    --options:'Exile';
    --titles: 'Permanent Marker';
    --heads:  'Exile';
    --bg-color: #fefefe;
    --second-bg-color: rgb(0, 0, 0);
    --text-color: black;
    --second-text-color: white;
    --main-color: #FD6555;
    --second-main-color: #847DFF;
  } 

html {
    font-size: 60%;
    overflow-x: hidden;
  }

  body {
    background: white;
    overflow-x: hidden;
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 3rem 3% 2rem;
    background: rgb(255, 255, 255);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 5;
    height: 14vh;
}

.header img{
    width: 200px;
}

/* NAVIGATION BAR */

.navButton{
  display: inline-block;
  padding: 1rem 2.8rem;
  background: #847DFF;
  box-shadow: #7972fe;
  border-radius: 4rem;
  font-size: 1.6rem;
  border: 2px solid transparent;
  letter-spacing: 0.1rem;
  font-weight: 600;
  transition: 0.3s ease-in-out;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.navButton1{
    display: inline-block;
    padding: 1rem 2.8rem;
    background: var(--main-color);
    box-shadow: var(--main-color);
    border-radius: 4rem;
    font-size: 1.6rem;
    border: 2px solid transparent;
    letter-spacing: 0.1rem;
    font-weight: 600;
    transition: 0.3s ease-in-out;
    cursor: pointer;
    align-items: center;
    justify-content: center;
  }

.logo {
    font-size: 3rem;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s ease;
    
}
.logo:hover {
    transform: scale(1.1);
}

.navbar a {
    font-size: 1.8rem;
    color: var(--second-text-color);
    padding: 20px;
    font-weight: 500;
    transition: 0.3s ease;
    border-bottom: 3px solid transparent;
}

.navbar{
    display: flex;
    gap: 1.5rem;
}

.navButton:hover {
    transform: scale(1.05);
    box-shadow: 0 0 50px var(--second-main-color);
}

.navButton1:hover {
    transform: scale(1.05);
    box-shadow: 0 0 50px var(--main-color);
  }

/*HOME AND VIDEO SECTION*/


.home{
    min-height: 100vh;
    width: 100%;
    /* margin: 50px; */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15rem 12% 10rem;
    margin-top: 0;
    position: relative;
}
.home-content {
    align-items: center;
    text-align: center; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; 
}
.home h1,
.home p {
    margin: 0; 
    padding: 10px 0;
}

.background-clip{
    position: absolute;
    right: 0;
    top: 14.2vh;
    z-index: -1;
    height: 90%;
    width: 100%;
    object-fit: cover;
}

.home-content h1 {
    font-size: 10rem;
    font-weight: 700;
    margin-top: 2.5rem;
    line-height: 1;
    color: white;
}

.home-content p {
    font-size: 3.5rem;
    font-weight: 500;
    line-height: 1.8;
    max-width: 600px;
    color: white;
    text-align: center;
    /* margin-top: 77px; */
}


.bigButton a{
    font-family: var(--titles);
}

.bigButton {
    margin-top: 50px;
}
.btn {
    display: inline-block;
    padding: 3.7rem 8.8rem;
    background: var(--main-color);
    /* font-family: var(--heads); */
    box-shadow: 15px 5px 35px 5px var(--main-color);
    border-radius: 10rem;
    font-size: 7.6rem;
    color: black;
    /* border: 1px solid black; */
    letter-spacing: 0.1rem;
    font-weight: 600;
    transition: 0.3s ease-in-out;
    cursor: pointer;
    align-items: center;
  }

  .btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 50px var(--main-color);
  }

/* Owl wrapper */
.home .owl {
    position: absolute;          
    left: -8.5rem;                
    top: 75%;                    
    transform: translateY(-50%); 
    pointer-events: none;        
}
  
  /* Owl image sizing */
.home .owl img {
    width: 770px;     
    height: auto;
}

@media (max-width: 1024px) {
    .home .owl img { width: 100px; }
    .bigButton .btn { padding: 0.8rem 2.2rem; }
 }
 
  /*LOGO ANIMATION*/

.morelogo{
    padding: 48px;
    /* margin-bottom: 60px; */
    margin-top: 40px;
}
 
.logo-slider {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    background: #fff; 
    padding: 20px 0;
}
  
.logo-track {
    display: inline-block;
    animation: scroll 20s linear infinite;
}
  
.logo-track img {
    height: 60px;
    margin: 0 30px;
    vertical-align: middle;
}
  
@keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
}

/*DEVICES*/

.devices{
    position: relative;
    display: flex;
    /* margin: 1%; */
    justify-content: center;
    flex-wrap: wrap;
    /* margin:50px 50px 70px;  */
    background-color: rgb(246, 246, 246);
}

.devices img {
    width: 40rem;
    padding: 50px;
    
}

.image{
    position: relative;
    height: 500px;
}

.devices img:hover {
    transform: translateY(-10px) scale(1.03);
    transition: 0.4s ease-in-out;
  }


.devices h4 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    margin-bottom: 20px;
    margin-top: -50px
    
}
.devices p{
    font-size: 16px;
    font-weight: 500;
    line-height: 2.2;
    max-width: 360px;
    margin-bottom: 50px;
    text-align: center;

    
}

/* YONDA BOX */ 

.yondaBox {
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.5s ease;
    background-color: #847dff;
}

.cage {
    position: relative;
    min-height: 250px;
    max-width: 430px;
    background: rgba(255, 255, 255, 0.6); 
    border-radius: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    padding: 30px;
    margin: 15px;
    border: 2px solid #847dff;
    overflow: hidden; 
}


.bckg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;    
    opacity: 0.4;        
    pointer-events: none; 
}

.cage h1 {
    font-size: 2rem;   
    font-weight: bold;
}
  
.cage p {
    font-size: 1.3rem; 
    line-height: 1.6; 
    font-weight: bold;
    
}
/*YONDA COLOURS*/

.colours{
    position: relative;
    display: flex;
    width: 100%;
    
}

.green {
    width: 45%;
    height: 40px;
    background-color: #81fbad;
}

.red{
    width: 40%;
    height: 40px;
    background-color: var(--main-color);
    bottom: -40px;
    z-index: 10;
    position: relative;
}

.purple{
    width: 15%;
    height: 40px;
    background-color: #847DFF;
}

.pictures{
    padding: 48px;
}
 
.picture-slider {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    background: #fff; 
    padding: 20px 0;
}
  
.picture-track {
    display: inline-block;
    animation: scroll 60s linear infinite;
    cursor: pointer;
}
  
.picture-track img {
    height: 250px;
    margin: 0 10px;
    vertical-align: middle;
    border-radius: 30px;
}

.pictures img:hover {
    transform: translateY(-10px) scale(1.03);
   
    transition: 0.4s ease-in-out;
}

.photos{
    padding: 48px;
    margin-top: -100px;
}

.photo-slider{
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    background: #fff; 
    padding: 20px 0;
}

.photo-track{
    display: inline-block;
    animation: scroll-right 60s linear infinite;
    cursor: pointer;
}

@keyframes scroll-right {
    0% {
      transform: translateX(-50%); /* Start halfway left */
    }
    100% {
      transform: translateX(0); /* Move to starting position */
    }
}

.photo-track img {
    height: 250px;
    margin: 0 10px;
    vertical-align: middle;
    border-radius: 30px;
}

.photo-track img:hover {
    transform: translateY(-10px) scale(1.03);
    transition: 0.4s ease-in-out;
}

.footer {
    position: relative;
    bottom: 0;
    width: 100%;
    /* padding: 40px 0; */
    background-color: var(--second-bg-color);
    height: 45vh;
    display: flex;
    padding: 3rem 3% 2rem;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
  }

.footer img{
    width:180px;
    filter: brightness(1) invert(1);
    margin-top: 30px;
}
  
.footer .socials {
    display: flex;
    gap: 1.5rem;
    /* text-align: center; */
    padding-bottom: 25px;
    color: var(--second-main-color);
    margin-left: auto;
    margin-top: 50px;
}
  
.footer .socials a {
    font-size: 45px;
    color: var(--text-color);
    border: 2px solid var(--text-color);
    width: 60px;
    height: 60px;
    line-height: 60px;
    display: inline-block;
    text-align: center;
    border-radius: 7%;
    margin: 0 10px;
    transition: 0.3s ease-in-out;
    background-color: var(--bg-color);
}
  
.footer .socials a:hover {
    transform: scale(1.2) translateY(-10px);
    background-color: var(--second--main-color);
    color: var(--bg-color);
    box-shadow: 0 0 25px var(--second-main-color);
}
  
/*FONTS*/
@font-face {
    font-family: 'Permanent Marker';
    src: url('fonts/permanentFont/PermanentMarker-Regular.woff2') format('woff2'),
        url('fonts/permanentFont/PermanentMarker-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Boldonse';
    src: url('fonts/Boldonse\ font/Boldonse-Regular.woff') format('woff2'),
        url('fonts/Boldonse\ font/Boldonse-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


/* RESPONSIVE DESIGN */

/* @media (max-width: 768px) {
    .btn {
      font-size: 3rem;
      padding: 2rem 5rem;
    }
} */

/* Small phones */
@media (max-width: 480px) {
    h1 {
      font-size: 2rem;
    }
    .header img {
        width: 100px;
    }

    .footer {
      flex-direction: column;
      align-items: center;
    }

    .footer .socials {
        margin-left: 0%;
    }
  
    .btn {
      font-size: 3.5rem;
      padding: 1rem 2rem;
    }
  
    .logo {
      height: 80px;
      padding-top: 27px;
    }
  
    .container {
      flex-direction: column;
      align-items: center;
    }
  
    .slider img {
      width: 100px;
      margin: 10px;
    }
  }
  
  /* Tablets and medium devices */
  @media (min-width: 481px) and (max-width: 768px) {
    h1 {
      font-size: 3rem;
    }

    .header img {
        width: 150px;
    }

    .btn {
      font-size: 4.5rem;
      padding: 2rem 4rem;
    }
  
    .logo {
        padding: 35px;
        height: 120px;
    }
  
    .slider img {
      width: 140px;
      margin: 15px;
    }
  
    .modal-content {
      width: 80%;
      font-size: 1.2rem;
    }

    .footer {
        flex-direction: column;
        align-items: center;
      }
    .footer .socials {
        margin-left: 0%;
    }
  }
  
/* iPad  and small laptops */
 @media (min-width: 769px) and (max-width: 1024px) {

    .btn {
      font-size: 5.5rem;
      padding: 3rem 6rem;
    }
  

}

@media (min-width: 1490px) {
    .devices {
      gap: 10rem; /* wider gap for larger screens */
    }

    .home-content h1{
        font-size: 10rem;
    }

    .home-content p{
        font-size: 4.5rem;
        font-weight: 500;
        line-height: 1.8;
        max-width: 700px;
    }
    
    .bigButton{
        margin-top: 50px;
    }

    .cage{
        min-height: 350px;
        max-width: 500px;
        gap: 3.5rem;
    }
    .yondaBox {
        padding: 20px;
        gap: 50px;
    }

    .home .owl img {
        width: 870px;    
        height: auto;
    }

    .home .owl {
        position: absolute;          
        left: 1.5rem;                
                          
       
    }
}


  @font-face {
    font-family: 'Exile';
    src: url('fonts/exile/Exile-Regular.woff2') format('woff2'),
        url('fonts/exile/Exile-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}



