* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  user-select: none;
  scroll-behavior: smooth;
}

body {
  font-family: 'Rubik', sans-serif;
}

header {
  height: 8svh;
  width: 100%;
  background-color: black;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  padding: 0 20px;
  position: relative;
  z-index: 1000;
  
}

.logo h1 {
  font-size: 30px;
  position: relative;
  animation: headeranim ease-in 0.3s;
}

.nav-desktop ul {
  display: flex;
  gap: 5px;
  list-style: none;
  font-size: 20px;
  animation: headeranim ease-in 0.3s;
}

.nav-desktop ul li a {
    position: relative;
  text-decoration: none;
  color: white;
  padding: 8px 12px;
  display: inline-block;
}

.nav-desktop ul li:hover {
  text-shadow: -2px -5px 10px #6adcf2;
}

.nav-desktop ul li a:hover {
  color: #6adcf2;
  transition: 0.3s;
}

#nav-contact {
  background-color: #6adcf2;
  border-radius: 5px;
  border: 1px solid gray;
}

#nav-contact:hover {
  background-color: black;
  text-shadow: none;
}

#nav-contact:hover a {
  color: white;
  transition: 0.1s;
}

#nav-contact a {
  color: #1E1E1E;
}

.nav-toggle {
  display: none;
  font-size: 30px;
  cursor: pointer;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  height: 100vh;
  background-color: #222;
  color: white;
  transition: right 0.3s ease-in-out;
  z-index: 999;
  padding: 90px 20px 20px 20px;
}
  .close-btn {
  font-size: 50px;
  color: white;
  /* position: absolute; */
  top: 55px;
  right: 20px;
  cursor: pointer;

}



.mobile-nav.open {
  right: 0;

}

.mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.mobile-nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 22px;
}

main {
  height: 92svh;
  width: 100%;
  background-image: url('main.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.main-front {
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(15px);
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-text {
  width: 50%;
  color: white;
  text-align: center;
}

.main-text h1 {
  font-size: 65px;
  text-shadow: 12px 20px 40px black;
  margin-bottom: 10px;
  animation: textanim ease-in 1s;
}

.main-text h1 span,
.main-text p span {
  color: #6adcf2;
    
}

.main-text p {
  font-size: 20px;
  animation: textanim ease-in 2s;
}

/* Animations */
@keyframes headeranim {
  from {
    top: -100;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}

@keyframes textanim {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ========== Media Queries ========== */

/* For mobile (below 468px) */
@media (max-width: 468px) {
  .nav-desktop {
    display: none;
  }



  .nav-toggle {
    display: block;
  }

  .main-text {
    width: 90%;
  }

  .main-text h1 {
    font-size: 32px;
  }

  .main-text p {
    font-size: 14px;
  }
}

/* Tablet (469px to 768px) */
@media (min-width: 469px) and (max-width: 768px) {
  .nav-desktop {
    display: none;
  }
  

  .nav-toggle {
    display: block;
  }

  .main-text {
    width: 80%;
  }

  .main-text h1 {
    font-size: 40px;
  }

  .main-text p {
    font-size: 16px;
  }
}

/* Desktop (above 768px) */
@media (min-width: 769px) {
  .nav-toggle {
    display: none;
  }

  .mobile-nav {
    display: none;
  }

  .main-text h1 {
    font-size: 65px;
  }

  .main-text p {
    font-size: 20px;
  }
}











.tm-section{
  background-color: black;
  color: white;
  padding-top: 60px;
  padding-bottom: 60px;
}


.tm-top h1{
  font-size: 55px;
  text-align: center;
  margin-bottom: 30px;
}

.tm-section h1 span{
  color: #6adcf2;
  font-family: "Dancing Script", cursive;
}


.tm-top p{
  font-size: 20px;
  /* width: 50%; */
  text-align: center;
  margin-bottom: 60px;
 
}

.tm-box{
  min-height: 30svh;
   /* width: 100%; */
  /* background-color: red; */
  display: flex;
  gap: 75px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 20px 10px;
 
   
  
}



.tm{
  height: 500px;
  width: 300px;
  background-color: #1E1E1E;
  border-radius: 10px;
  transition: 0.3s ease-in-out;
}


.tm iframe{
  width: 100%;
  height: 100%;
  border-radius: 10px;
}





@media (max-width: 468px) {

.tm-top h1{
  font-size: 32px;
  margin-bottom: 30px;
}
.tm-top p{
  font-size: 14px;
  padding-left: 15px;
  padding-right: 15px;

}
.tm{
  height: 300px;
  width: 65%;
  background-color: #1E1E1E;
  border-radius: 10px;
  transition: 0.3s ease-in-out;
}
.tm-box{
  min-height: 50svh;
   /* width: 100%; */
  /* background-color: red; */
  display: flex;
  gap: 35px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 0px 10px;
}



}


@media (min-width: 469px) and (max-width: 768px) {
  
.tm-top h1{
  font-size: 40px;
  margin-bottom: 30px;
}
.tm-top p{
  font-size: 16px;
  padding-left: 15px;
  padding-right: 15px;
}
.tm{
  height: 400px;
  width: 250px;
  background-color: #1E1E1E;
  border-radius: 10px;
  transition: 0.3s ease-in-out;
}
.tm-box{
  min-height: 40svh;
   /* width: 100%; */
  /* background-color: red; */
  display: flex;
  gap: 35px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 0px 10px;
}

}

@media (min-width: 769px)  and (max-width: 1024px) {

  .tm-top h1{
  font-size: 65px;
  margin-bottom: 30px;
}
.tm-top p{
  font-size: 20px;
  padding-left: 15px;
  padding-right: 15px;
}
.tm{
  height: 500px;
  width: 45%;
  background-color: #1E1E1E;
  border-radius: 10px;
  transition: 0.3s ease-in-out;
}
.tm-box{
  min-height: 40svh;
   /* width: 100%; */
  /* background-color: red; */
  display: flex;
  gap: 35px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 0px 10px;
}
}





















.thumbnail-section{
  background-color: black;
  color: white;
  padding-top: 60px;
  padding-bottom: 60px;
}


.thumbnail-top h1{
  font-size: 55px;
  text-align: center;
  margin-bottom: 30px;
}

.thumbnail-section h1 span{
  color: #6adcf2;
  font-family: "Dancing Script", cursive;
}


.thumbnail-top p{
  font-size: 20px;
  /* width: 50%; */
  text-align: center;
  margin-bottom: 60px;
 
}

.thumbnails-box{
  min-height: 100svh;
   /* width: 100%; */
  /* background-color: red; */
  display: flex;
  gap: 75px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 20px 10px;
 
   
  
}

.thumbnail{
  height: 40svh;
  width: 35%;
  background-color: #1E1E1E;
  border-radius: 10px;
  transition: 0.3s ease-in-out;
}


.thumbnail img{
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.thumbnail:hover{
  transform: scale(1.02);
}



@media (max-width: 468px) {

.thumbnail-top h1{
  font-size: 32px;
  margin-bottom: 30px;
}
.thumbnail-top p{
  font-size: 14px;
  padding-left: 15px;
  padding-right: 15px;

}
.thumbnail{
  height: 25svh;
  width: 85%;
  background-color: #1E1E1E;
  border-radius: 10px;
  transition: 0.3s ease-in-out;
}
.thumbnails-box{
  min-height: 100svh;
   /* width: 100%; */
  /* background-color: red; */
  display: flex;
  gap: 35px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 0px 10px;
}



}


@media (min-width: 469px) and (max-width: 768px) {
  
.thumbnail-top h1{
  font-size: 40px;
  margin-bottom: 30px;
}
.thumbnail-top p{
  font-size: 16px;
  padding-left: 15px;
  padding-right: 15px;
}
.thumbnail{
  height: 30svh;
  width: 75%;
  background-color: #1E1E1E;
  border-radius: 10px;
  transition: 0.3s ease-in-out;
}
.thumbnails-box{
  min-height: 100svh;
   /* width: 100%; */
  /* background-color: red; */
  display: flex;
  gap: 35px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 0px 10px;
}

}

@media (min-width: 769px)  and (max-width: 1024px) {

  .thumbnail-top h1{
  font-size: 65px;
  margin-bottom: 30px;
}
.thumbnail-top p{
  font-size: 20px;
  padding-left: 15px;
  padding-right: 15px;
}
.thumbnail{
  height: 20svh;
  width: 45%;
  background-color: #1E1E1E;
  border-radius: 10px;
  transition: 0.3s ease-in-out;
}
.thumbnails-box{
  min-height: 100svh;
   /* width: 100%; */
  /* background-color: red; */
  display: flex;
  gap: 35px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 0px 10px;
}
}










.posts-section{
  background-color: black;
  color: white;
  padding-top: 60px;
  padding-bottom: 60px;
}


.posts-top h1{
  font-size: 55px;
  text-align: center;
  margin-bottom: 30px;
}

.posts-section h1 span{
  color: #6adcf2;
  font-family: "Dancing Script", cursive;
}


.posts-top p{
  font-size: 20px;
  /* width: 50%; */
  text-align: center;
  margin-bottom: 60px;
 
}


.post-box{
  min-height: 100svh;
   /* width: 100%; */
  /* background-color: red; */
  display: flex;
  gap: 75px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 20px 10px;
 
   
  
}

.post{
  height: 450px;
  width: 450px;
  background-color: #1E1E1E;
  border-radius: 10px;
  transition: 0.3s ease-in-out;
}


.post img{
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.post:hover{
  transform: scale(1.02);
}


#long-post{
  height: 550px;
  width: 450px;

}



.long-post-box{
  /* background-color: red; */
  padding-top: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}









@media (max-width: 468px) {

.posts-top h1{
  font-size: 32px;
  margin-bottom: 30px;
}
.posts-top p{
  font-size: 14px;
  padding-left: 15px;
  padding-right: 15px;

}
.post{
  height: 250px;
  width: 250px;
  background-color: #1E1E1E;
  border-radius: 10px;
  transition: 0.3s ease-in-out;
}
.post-box{
  min-height: 100svh;
   /* width: 100%; */
  /* background-color: red; */
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 0px 10px;
}

#long-post{
  height: 400px;
  width: 250px;

}



}






@media (min-width: 469px) and (max-width: 768px) {
  

.posts-top h1{
  font-size: 40px;
  margin-bottom: 30px;
}
.posts-top p{
  font-size: 16px;
  padding-left: 15px;
  padding-right: 15px;

}
.post{
  height: 400px;
  width: 400px;
  background-color: #1E1E1E;
  border-radius: 10px;
  transition: 0.3s ease-in-out;
}
.post-box{
  min-height: 100svh;
   /* width: 100%; */
  /* background-color: red; */
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 0px 10px;
}

#long-post{
  height: 600px;
  width: 400px;

}

}




@media (min-width: 769px)  and (max-width: 1024px) {

  .thumbnail-top h1{
  font-size: 65px;
  margin-bottom: 30px;
}
.thumbnail-top p{
  font-size: 20px;
  padding-left: 15px;
  padding-right: 15px;
}
.thumbnail{
  height: 20svh;
  width: 45%;
  background-color: #1E1E1E;
  border-radius: 10px;
  transition: 0.3s ease-in-out;
}
.thumbnails-box{
  min-height: 100svh;
   /* width: 100%; */
  /* background-color: red; */
  display: flex;
  gap: 35px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 0px 10px;
}



.posts-top h1{
  font-size: 65px;
  margin-bottom: 30px;
}
.posts-top p{
  font-size: 16px;
  padding-left: 20px;
  padding-right: 15px;

}
.post{
  height: 350px;
  width: 350px;
  background-color: #1E1E1E;
  border-radius: 10px;
  transition: 0.3s ease-in-out;
}
.post-box{
  min-height: 50svh;
   /* width: 100%; */
  /* background-color: red; */
  display: flex;
  /* gap: 15px; */
  flex-wrap: wrap;
  /* justify-content: center; */
  /* align-items: center; */
  padding: 0px 10px;
  padding-bottom: 20px;
}

#long-post{
  height: 500px;
  width: 350px;

}

}







.footer{
  width: 100%;
  background-color: #6adcf2;
  padding: 10px 20px;
  display: flex;
}


.f-left{
  width: 40%;
  /* background-color: red; */
  display: flex;
  justify-content: start;
  align-items: center;
}


.f-left a{
text-decoration: none;
color: black;
font-size: 20px;
}

.f-left a:hover{
  color: rgb(46, 46, 46);
}

.f-centre{
  width: 20%;
  /* background-color: rgb(255, 0, 255); */
  display: flex;
   justify-content: center;
  align-items: center;
}


.f-centre a{
text-decoration: none;
color: black;
font-size: 20px;
}

.f-centre a:hover{
  color: rgb(46, 46, 46);
}


.f-right{
  width: 40%;
  /* background-color: red; */
  display: flex;
   justify-content: end;
  align-items: center;
  gap: 10px;
}


.f-right a{
text-decoration: none;
color: black;
font-size: 20px;
}

.f-right a:hover{
  color: rgb(46, 46, 46);
}






@media (max-width: 468px) {

.footer{
  width: 100%;
  background-color: #6adcf2;
  padding: 10px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}


.f-left{
  width: 100%;

  display: flex;
  justify-content: center;
  align-items: center;
}


.f-centre{
  width: 100%;
  display: flex;
   justify-content: center;
  align-items: center;
}

.f-right{
  width: 100%;
  display: flex;
   justify-content: center;
  align-items: center;
  gap: 10px;
}


.f-right a{
text-decoration: none;
color: black;
font-size: 20px;
}

}






@media (min-width: 469px) and (max-width: 768px) {
  




.footer{
  width: 100%;
  background-color: #6adcf2;
  padding: 10px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}


.f-left{
  width: 100%;

  display: flex;
  justify-content: center;
  align-items: center;
}


.f-centre{
  width: 100%;

  display: flex;
   justify-content: center;
  align-items: center;
}

.f-right{
  width: 100%;
 
  display: flex;
   justify-content: center;
  align-items: center;
  gap: 10px;
}


.f-right a{
text-decoration: none;
color: black;
font-size: 20px;
}


}





@media (min-width: 769px)  and (max-width: 1024px) {


}
