@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto&display=swap');
@import url('https://fonts.googleapis.com/css?family=Josefin+Slab&display=swap');
:root { 
  --first-color: #FCFBFC;
  --firstsudo-color: rgba(187, 190, 254, 0.8);
  --second-color: #9ea3f5;
  --secondsudo-color: rgba(147, 151, 229, 0.785);
  --background-color: #F3EAD3;
  --box-color: #F3EAD3;
  --nav-color: #d2e0b9;
  --background-color1: #28282B;
  --third-color: #2e2e33;
  --text-color: #28282B;
  --black-color: #222;
  --transition-duration: 0.2s;
  --glass-white: rgba(255, 255, 255, 0.2);
  --glass-whiter: rgba(255, 255, 255, 0.1);
  --glass-black: rgba(0,0,0,0.2);
  --glass-blacker: rgba(0,0,0,0.3);
  --glass-second: rgba(147, 151, 229, 0.4);
}

  *{
    font-family: 'Josefin Slab', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box; 
    transition: var(--transition-duration, 0.5s) color;
    scroll-behavior: smooth;   
}

a{
  text-decoration: none;
}

body{
  background: linear-gradient(90deg, #fdffc9 0%, #fff9f1 33%, #fff7ef 52%, #fffaf0 72%, #eeffcf 100%);
  font-family: 'Josefin Slab', sans-serif;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* width */
::-webkit-scrollbar {
  width: 4px;
  background: transparent;
}

/* Track */
::-webkit-scrollbar-track {
  border-radius: 2px;
  background: transparent;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #e3bfb7;
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #b5cc8d;
}


/* CSS for Side Navigation Bar */
nav {
    position: fixed;  
    top: 0;
    left: 0;
    height: 100%;
    width: 280px;
    background-color: var(--glass-black);
    display: none;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 999;
  }

 
  nav.active {
    display: block;
    animation: nav-fade-in 0.3s ease-in;
    position: fixed;
    box-shadow: 0 0 15px var(--first-color);
  }
  
  @keyframes nav-fade-in {
    0%  {
      opacity:0;
    }
    100% {
      opacity: 1;
    }
  }



  .nav-slide {
    height: 100%;
    width: 100%;
    background-color: var(--glass-black);
    padding: 10px;
    display: none;
    color: white;
  }

  .nav-slide.active {
    height: 100%;
    width: 100%;
    background-color: var(--glass-black);
    z-index: 999;
    padding: 10px;
    display: block;
    color: white;
    transition: 0.2s ease;
  }

.nav-slide .logo{
    position: relative;
    height: 35px;
    background-color: transparent;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 10px;
    color: var(--first-color);
}

  
  .nav-slide ul {
    position: relative;
    top: 40%;
    width: fit-content;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    font-weight: 400;
    list-style-type: none;
    padding: 0;
    color: var(--first-color);
  }
  
  .nav-slide li {
    position: relative;
    justify-content: center;
    margin-bottom: 10px;
    color: var(--first-color);
  }
  
  

  .nav-slide li a {
    position: relative;
    text-decoration: none;
    color: var(--nav-color);
    padding: 10px 10px;
    font-weight: 300;
    font-size: 26px;
    font-family: 'Josefin Slab', sans-serif;
  }
  

  .nav-slide li a i {
    margin-right: 5px;
  }
  

  .nav-slide-dummy {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
    display: none;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }
  
  .nav-slide-dummy.active {
    animation: nav-fade-in 0.3s ease-in;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 11;
    background: rgba(0, 0, 0, 0.5);
    display: block;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }


  .nav-slide li a:hover{
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    padding: 5px 10px 1px 10px;
  }
  
  .nav-slide li a.active{
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    padding: 5px 10px 1px 10px;
  }

  .hamburger {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) ;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 999;
}

.ham-container{
    position: absolute;
    animation: ham-fade-out 0.3s ease-in;
    width: 35px;
    height: 35px;
    background-color:  rgba(227, 191, 183, 0.6);
    top: 30px;
    left: 27px;
    border-radius: 4px;
    z-index: 999;
}
@keyframes ham-fade-out {
  0%  {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.ham-container:hover{
  transform: scale(1.1);
}
.ham-container.active{
  animation: ham-fade-in 0.3s ease-in;
  position: absolute;
  width: 30px;
  height: 30px;
  top: 15px;
  z-index: 999;
  left: 295px;
  background-color: rgba(0, 0, 0, 0.3);
  box-shadow: none;
}

@keyframes ham-fade-in {
  0%  {
    opacity:0;
  }
  100% {
    opacity: 1;
  }
}

.hamburger span {
    left: 50%;
    position: relative;
    transform: translateX(-50%);
    display: block;
    width: 25px;
    z-index: 999;
    height: 3px;
    transition: transform 0.3s ease-in-out, opacity 0.2s ease-in-out;
    background-color: rgba(253,255,201,1);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-50%);
    background-color: var(--nav-color);
}

.hamburger.active span:nth-child(1) {
    transform: translateX(-50%) translateY(10px) rotate(45deg) ;
    width: 31px;
    background-color: var(--nav-color);
}

.hamburger.active span:nth-child(3) {
    transform: translateX(-50%) translateY(-9px) rotate(-45deg);
    width: 31px;
    background-color: var(--nav-color);
}


footer {
  background: linear-gradient(90deg, rgba(253,255,201,1) 0%, rgba(255,249,241,1) 33%, rgba(255,247,239,1) 52%, rgba(255,250,240,1) 72%, rgba(238,255,207,1) 100%);
  z-index: 8;
  position: sticky;
  bottom: 2px;
  left: 50%;
  width: 99.8%;
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 60px;
  justify-content: space-between;
  padding: 10px 100px;
  border-radius: 10px;
  transition: 0.5s ease;
  box-shadow: rgba(255, 250, 218, 1) 0px 50px 100px -20px, rgba(248, 238, 236, 1) 0px 30px 60px -30px, rgba(231, 236, 222, 1) 0px -2px 20px 0px inset;
}

.footerfont {
  position: relative;
  color: #e3bfb7;
  text-align: center;
  width: fit-content;
  font-size: 1.8em;
  font-family: 'Josefin Slab', sans-serif;
  font-weight: 500;
}

.footerimg{
    top: 5px;
    height:60px;
    width: auto;
    position: relative;
}


.footerfont:before {
  content: '';
  position: absolute;
  background: #e3bfb7;
  width: 0;
  height: 2px;
  bottom: -5px; /* Adjust the value as needed */
  left: 50%;
  transform: translateX(-50%);
  transition: 0.3s ease;
}

.footerfont:hover:before{
  width: 100%;
}


.topbar{
  position: relative;
  top: 5px;
  background-color: transparent;
  height: 85px;
  width: 99.2%;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 10px;
  z-index: 9;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: right;
}
  
.top-list{
  position: relative;
  width:500px;
  font-size: 20px;
  font-weight: 400;
  list-style: none; 
  justify-content: space-around;
  padding: 0;
  display: flex;
  color: var(--text-color);
}

.top-list li a {
  position: relative;
  margin: 0px;
  text-align: center;
  color: #e3bfb7;
  text-decoration: none;
  padding: 0px 10px;
  font-family: 'Josefin Slab', sans-serif;
  font-size: 26px;

}
.top-list li a:hover{
  background-color: #e7ecde;
  border-radius: 20px;
  padding: 5px 10px 1px 10px;
}

.top-list li a.activeTop{
  border-radius: 20px;
  background-color: rgba(227, 191, 183, 0.8);
  color: rgba(238,255,207,1);
  padding: 5px 10px 1px 10px;
  top: 2px;
}


/*------------------------------------------------------------------------------------------------------------------------------------*/
@media (max-width: 1190px){
  nav {
    position: fixed;  
    top: 0;
    left: 0;
    height: 100%;
    width: 260px;
    display: none;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 99;
  }

.nav-slide .logo{
    height: 44px;
}

  
  .nav-slide ul {
    font-size: 22px;
    font-weight: 200;
  }

.ham-container.active{
  width: 30px;
  height: 30px;
  left: 265px;
}

.hamburger span {
    width: 25px;
    height: 3px;
}

.footerfont {
  font-size: 1.2em;
}

.footerbtn {
  font-size: 1.2em;
  margin-top: 10px;
}

.topbar{
  position: relative;
  top: 5px;
  height: 85px;
  width: 99.2%;
}
}

/*------------------------------------------------------------------------------------------------------------------------------------*/

@media (max-width: 810px){
  body{
    background: linear-gradient(90deg, rgba(255,239,224,1) 10%, rgba(238,255,207,1) 100%, rgba(255,250,240,1) 100%);  
  }
.hamburger span {
  left: 50%;
  position: relative;
  transform: translateX(-50%);
  display: block;
  width: 25px;
  z-index: 999;
  height: 3px;
  transition: transform 0.3s ease-in-out, opacity 0.2s ease-in-out;
  background-color: #e3bfb7;
}

.ham-container{
  background-color: transparent;
}

.top-list{
    position: relative;
    top: 70%;
    width:280px;
    transform: translate(-50%, -50%);
    font-size: 20px;
    font-weight: 400;
    list-style: none; 
    justify-content: space-around;
    padding: 0;
    display: flex;
    color: var(--text-color);
  }

footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: center;
  padding: 10px 10px;
  background: linear-gradient(90deg, rgba(255,239,224,1) 10%, rgba(238,255,207,1) 100%, rgba(255,250,240,1) 100%);
}

.footerfont {
  position: relative;
  font-size: 18px;
}

.footerbtn {
  font-size: 18px;
  margin-top: 10px;
  position: relative;
  text-decoration: none;
}
.topbar{
  position: relative;
  top: 1px;
  height: 50px;
  width: 99.2%;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 10px;
  display: flex;
}
.top-list li a {
  position: relative;
  margin: 0px;
  text-align: center;
  color: #e3bfb7;
  text-decoration: none;
  padding: 0px 10px;
  font-family: 'Josefin Slab', sans-serif;
  font-size: 26px;

}
.top-list li a.activeTop{
  background-color: #e3bfb7;
  color: #e7ecde;
  border-radius: 20px;
  padding: 5px 10px 1px 10px;
  top: 2px;
}
}

/*------------------------------------------------------------------------------------------------------------------------------------*/
@media (max-width: 650px){
    .top-list{
        display: none;
    }

}
 
@media (max-width: 460px){
  .topbar{
    position: absolute;
    top: 4px;
    height: 40px;
    width: 98.6%;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px;
    z-index: 9;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
  }
  
  .nav-slide .logo{
    height: 35px;
  }

  .ham-container{
    position: absolute;
    animation: ham-fade-out 0.3s ease-in;
    width: 30px;
    height: 30px;
    background-color: transparent;
    top: 8px;
    left: 8px;
    border-radius: 4px;
    z-index: 999;
    display: block;
  }
.hamburger {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 999;
}


.ham-container.active{
animation: ham-fade-in 0.3s ease-in;
position: absolute;
width: 30px;
height: 30px;
top: 5px;
z-index: 999;
left: 265px;
background-color: rgba(0, 0, 0, 0.3);
box-shadow: none;
}

.hamburger span {
  left: 50%;
  position: relative;
  transform: translateX(-50%);
  display: block;
  width: 25px;
  height: 3px;
  background-color: #b5cc8d;
  transition: transform 0.3s ease-in-out, opacity 0.2s ease-in-out;
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-50%);
  background-color: var(--nav-color);
}

.hamburger.active span:nth-child(1) {
  transform: translateX(-50%) translateY(10px) rotate(45deg) ;
  width: 31px;
  background-color: var(--nav-color);
}

.hamburger.active span:nth-child(3) {
  transform: translateX(-50%) translateY(-9px) rotate(-45deg);
  width: 31px;
  background-color: var(--nav-color);
}

.footerfont {
  position: relative;
  color: var(--text-color);
  font-size: 14px;
}

.footerbtn {
  font-size: 14px;
  margin-top: 10px;
  color: var(--text-color);
  position: relative;
  text-decoration: none;
}



.nav-slide-dummy.active {
  animation: nav-fade-in 0.3s ease-in;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 11;
  background: rgba(0, 0, 0, 0.5);
  display: block;
  backdrop-filter: blur(20px);
}

  }

.break{
    height: 1px;
    width: 90%;
    background-color: #b5cc8d;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 10px;
}