@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');
*
{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
header
{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 40px 100px;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo
{
  cursor: pointer;
}

.logo img{
    max-width: 250px;
    height: auto;
}

.toggle
{
  position: relative;
  width: 60px;
  height: 60px;
  background: url(https://res.cloudinary.com/djyuecpvf/image/upload/v1739182975/menu_bcf4ft.png);
  background-repeat: no-repeat;
  background-size: 30px;
  background-position: center;
  cursor: pointer;
}

.toggle.active
{
  background: url(https://res.cloudinary.com/djyuecpvf/image/upload/v1739183042/close_hhl9o3.png);
  background-repeat: no-repeat;
  background-size: 25px;
  background-position: center;
  cursor: pointer;
}
.showcase
{
  position: absolute;
  right: 0;
  width: 100%;
  min-height: 100vh;
  padding: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: hsla(200, 100%, 50%, 0.5);
  transition: 0.5s;
  z-index: 2;
}
.showcase.active
{
  right: 200px;
  
}

.showcase video
{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}
.overlay
{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00f7ff;
  mix-blend-mode: overlay;
}
.text
{
  position: relative;
  z-index: 10;
}

.text h2
{
  font-size: 6em;
  font-weight: 800;
  color: hsl(63, 100%, 50%);
  text-shadow: 
  1px 1px 0 #000, /* Add border effect */
  -1px -1px 0 #000,
  1px -1px 0 #000,
  -1px 1px 0 #000;
  line-height: 1em;
  text-transform: uppercase;
}
.text h3
{
  font-size: 3em;
  font-weight: 700;
  color: rgb(0, 255, 17);
  text-shadow: 
  1px 1px 0 #000, /* Add border effect */
  -1px -1px 0 #000,
  1px -1px 0 #000,
  -1px 1px 0 #000;
  line-height: 1em;
  text-transform: uppercase;
}
.text p {
    font-size: 1.1em;
    margin: 10px 0;
    font-weight: bold;
    max-width: 700px;
    color: #00f7ff;
    text-align: justify; 
    text-shadow: 
    1px 1px 0 #000, /* Add border effect */
    -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000;


    
}
  
  
.text a
{
  display: inline-block;
  font-size: 1em;
  background: #000000;
  padding: 10px 30px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  margin-top: 10px;
  color: #00f7ff;
  letter-spacing: 2px;
  transition: 0.3s;
}
.text a:hover
{
  font-weight: 900;
  font-size: 1.2em;
  letter-spacing: 7px;
  color: magenta;
  opacity: 0.8;
}
.social
{
  position: absolute;
  z-index: 10;
  bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  
}

 
.social li
{
  list-style: none;
  
}
.social li a
{
  display: inline-block;
  color: #715ff9;
  /* filter: invert(0); */
  transform: scale(0.6);
  transition: 0.5s;
  font-size: 3rem;
  text-decoration: none;
  text-shadow: 
  0.75px 0.75px 0 #000000, 
  -0.75px -0.75px 0 #000000,
  0.75px -0.75px 0 #000000,
  -0.75px 0.75px 0 #000000;
  
}
.social li a:hover
{
  transform: scale(0.9) translateY(-15px);
  color: #b5f004;
}



.menu {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle, #00f7ff, #aae7e7);  
    background-size: cover;
  }
  
.menu ul
{
  position: relative;
}
.menu ul li
{
  list-style: none;
}
.menu ul li a
{
  text-decoration: none;
  font-size: 32px;
  color: #0af578;
  transition: 0.4s;
  text-shadow: 
  0.75px 0.75px 0 #000, 
  -0.75px -0.75px 0 #000,
  0.75px -0.75px 0 #000,
  -0.75px 0.75px 0 #000;
}
.menu ul li a:hover
{
  color: hsl(63, 100%, 50%);
  text-shadow: 
  0.75px 0.75px 0 #000, 
  -0.75px -0.75px 0 #000,
  0.75px -0.75px 0 #000,
  -0.75px 0.75px 0 #000;
}

@media (max-width: 991px)
{


.logo{
    position: absolute;
    top: 10px; 
    left: 10px;
}
.logo img{
    max-width: 150px;
    height: 100px;
}

.toggle {
    position: absolute;
    top: 15px; 
    right: 30px; 
    width: 30px; 
    height: 30px;

}
  .text{
    position: absolute;
    top: 0;
    left: 0;
    margin-top: 30%;
    padding: 10px;
    
    
    
  }

  .text h2
  {
    font-size: 1.75em;
    margin-bottom: 1rem;    
  }

  .text h3
  {
    font-size: 1.4em;    
  }

  .text p {
    color: #ffc400;
  }

  .social {
    bottom: 0;
    
  }

  .showcase video {
    position: absolute;
    width: 100vw; 
    height: 100vh; 
    object-fit: fill; /* Ensure the video covers the container */
    /* transform: rotate(90deg); Rotate the video to make it portrait */
    transform-origin: center; /* Ensure the rotation is centered */
  }
  
  .overlay {

    background: rgb(245, 182, 245);
    
}
  
  
  
  

  


}