
.landingpage {
        background-color: transparent;
        width: 100%;
        height: 100vh;
        display: grid;
        grid-template-rows: 64px 1fr;
}
.navbar {
        z-index: 100;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 5px 10px;
        /* position: sticky;
        top: 0; */
        background-color: transparent;
        backdrop-filter: blur(10px);
}
.logo {
        background-color: transparent;
        display: flex;
        align-items: center;
        gap: 8px;
}

.logo span{
        background-color: transparent;
        font-size: 1.5rem;
        font-weight: bold;
}
.logo img {
        background-color: transparent;
        height: 48px;
        width: 48px;
}

.menu {
        display: none;
}


.right {
        position: relative;
        display: flex;
        align-items: center;
        gap: 10px;
        padding-right: 10px;
}
.hamburg {
        background-color: black;
        width: 40px;
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
}
.hamburg input {
        display: none;
}
.hamburg img {
        width: 48px;
        height: 48px;
}
.mobile-menu {
        display: var(--mobile-menu);
        z-index: 100;
        position: absolute;
        top: 64px;
        width: 100%;
        height: 30%;
        background-color: transparent;
        backdrop-filter: blur(1.5rem);
}

.mobile-menu ul, .mobile-menu ul li,.mobile-menu ul li a {
        background-color: transparent;
        font-size: 18px;
        padding: 10px 10px;
        list-style: none;
        text-decoration: none;
}
.mobile-menu ul li a:hover {
        animation: upDisappearDown 0.6s 0.2s 1 ease-in-out;
        color: var(--primary);
  }

/* content css here  */

.content {
        background-color: transparent;
        display: grid;
        grid-template-rows: 2fr 4fr;
        position: relative;
}
.title {
        background-color: transparent;
        text-align: center;
        justify-content: center;
        display: flex;
        flex-direction: column;
        align-items: center;
}
.title p:nth-child(1){
        background-color: transparent;
        font-size: clamp(24px, 8vw, 48px);
        font-family: 'supershiny';
        line-height: 1;
        color:var(--primary);
}

.title p:nth-child(2){
        margin-top: 10px;
        background-color: transparent;
        font-size: 16px;
        line-height: 1.2;
        color: var(--text-muted);
}

.theme {
        background-color: transparent;
        position: relative;
        display: flex;
        align-items: start;
        width: 40px;
        height: 40px;
  }
  .theme input {
        display: none;
  }
  .theme img{
        background-color: transparent;
        position: absolute;
        height: 32px;
        width: 32px;
        cursor: pointer;
        transition: opacity 0.5s;
  }
  .sun {
        background-color: transparent;
        opacity: var(--opacity);
  }

.floating-card {
        background-color: transparent;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
}
.mobile-laptop img{
        height: 300px;
        width: 300px;
        z-index: 100;
  }

@media (min-width: 600px) {
.hamburg,.mobile-menu {
                display: none;
        }
        
  .menu ul li {
        background-color: transparent;
  }
  .menu, .menu ul, .menu ul li a{
        background-color: transparent;
        display: flex;
        align-items: center;
        gap: 20px;
        text-decoration: none;
        list-style: none;
        font-size: clamp(16px, 1.3vw, 32px);
  }
  .menu ul li a:hover {
        animation: upDisappearDown 0.6s 0.2s 1 ease-in-out;
        color: var(--primary);
  }
  /* navbar right section  */
  .theme {
        background-color: transparent;
        position: relative;
        display: flex;
        align-items: start;
        width: 40px;
        height: 40px;
  }
  .theme input {
        display: none;
  }
  .theme img{
        background-color: transparent;
        position: absolute;
        height: 32px;
        width: 32px;
        cursor: pointer;
        transition: opacity 0.5s;
  }
  .sun {
        background-color: transparent;
        opacity: var(--opacity);
  }

.floating-card {
        background-color: transparent;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
}
}
@keyframes upDisappearDown {
    0% {
      transform: translateY(0);
      opacity: 1;
    }
    40% {
      transform: translateY(-20px);
      opacity: 0;
    }
    60% {
      transform: translateY(20px);
      opacity: 0;
    }
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }


.magic-btn {
margin-top: 20px;
  position: relative;
  padding: 14px 40px;
  border: 2px solid transparent;
  border-radius: 50px;
  background: linear-gradient(90deg, var(--input), var(--input-border));
  color: var(--text-color);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  transition: color 0.4s ease;
}

.magic-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50px;
  padding: 2px;
  background: linear-gradient(45deg, #ff00cc, #3333ff, #00ffcc, #ff6600);
  background-size: 400%;
  animation: borderMove 6s linear infinite;
  -webkit-mask: 
    linear-gradient(var(--input) 0 0) content-box, 
    linear-gradient(var(--input) 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}

.magic-btn:hover {
  color: #00ffcc;
  box-shadow: 0 0 20px #00ffcc44, 0 0 40px #00ffcc33;
}

.magic-btn:active {
  transform: scale(0.97);
}

@keyframes borderMove {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 400% 50%;
  }
}