/* RESET */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body{
  margin:0;
  position:relative;
  overflow-x:hidden;
}

body.mobile{
  cursor:auto;
}


.kush-cursor{
  position:fixed;
  top:0;
  left:0;
  width:40px;
  height:40px;
  pointer-events:none;
  z-index:9999;
}



/* partikel */
.kush-particle{
  position:fixed;
  width:16px;
  height:16px;
  pointer-events:none;
  z-index:9998;
  opacity:1;
  transform:translate(-50%,-50%);
  transition: transform .6s ease-out, opacity .6s ease-out;
}

/* BACKGROUND LAYER */
body::before{
  content:"";
  position:fixed;
  inset:0;
  background:url("images/webg.jpg") center / cover no-repeat;
  z-index:-1;
  filter:blur(8px);
  transition:.5s ease;
}

/* SAAT CLEAR */
body.clear-bg::before{
  filter:blur(0);
}

/* ===================== HERO ===================== */

.hero{
  height:100vh;
  width:100%;
  display:flex;
  flex-direction:column;
}


/* ===================== HERO CENTER ===================== */

.hero-content{
  flex:1;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;

  gap:10px;
  margin-top:-30px;
}


/* CHARACTER */

.kush-character{
  width:350px;
   margin-top:-60px;
  filter:drop-shadow(0 10px 25px rgba(0,0,0,.25));
  animation:float 3s ease-in-out infinite;
}

@keyframes float{
  0%{ transform:translateY(0); }
  50%{ transform:translateY(-10px); }
  100%{ transform:translateY(0); }
}


/* LOGO */

.title-img{
  width:380px;
  filter:drop-shadow(0 8px 22px rgba(0,0,0,.18));
}


/* ===================== BUTTON ===================== */

.actions{
  margin-top:6px;
}

.buy-btn{
  padding:12px 32px;
  border-radius:40px;
  border:none;
  font-size:16px;
  font-weight:700;
  color:white;

  background:linear-gradient(#ff6a6a,#ff3d3d);
 
  box-shadow:0 10px 25px rgba(0,0,0,.2);
  transition:.2s ease;
}

.buy-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 30px rgba(0,0,0,.28);
}

.contract{
  display:block;
  margin-top:6px;
  font-size:13px;
  color:#14482b;
}


/* ===================== SOCIAL PANEL ===================== */

.social-panel{
  position:fixed;
  bottom:30px;
  left:30px;

  background:rgba(255,255,255,.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border-radius:20px;
  padding:16px 18px;
  box-shadow:0 15px 35px rgba(0,0,0,.18);

  display:flex;
  flex-direction:column;
  gap:14px;

  z-index:50;
}

/* each row */

.social-item{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
}

/* ICON SIZE LOCKED 🔒 */
.social-item img{
  width:22px !important;
  height:22px !important;
  object-fit:contain;
  display:block;
}

/* LABEL */

.social-item span{
  color:#184d30;
  font-size:14px;
  font-weight:700;
  letter-spacing:.5px;
}


/* ===================== RESPONSIVE ===================== */

@media (max-width:900px){

  .kush-character{ width:260px; }
  .title-img{ width:280px; }

  .hero-content{
    gap:2px;
  }
}

@media (max-width:768px){

  .kush-character{ width:190px; }
  .title-img{ width:200px; }

  .buy-btn{
    padding:10px 26px;
    font-size:14px;
  }

  .social-panel{
    bottom:14px;
    left:14px;
    padding:12px 14px;
    gap:10px;
  }

  .social-item img{
    width:20px !important;
    height:20px !important;
  }

  .social-item span{
    font-size:13px;
  }
}

@media (max-width:480px){

  .kush-character{ width:170px; }
  .title-img{ width:180px; }

  .hero-content{
    gap:6px;
  }
}

.social-inline{
  display:flex;
  gap:18px;
  margin-top:14px;
  align-items:center;
  justify-content:center;
}

/* icon only */
.social-inline .social-item img{
  width:28px;
  height:28px;
  object-fit:contain;
  display:block;
}

/* remove underline & click effect */
.social-inline .social-item{
  text-decoration:none;
}

/* optional hover */
.social-inline .social-item img:hover{
  transform:scale(1.08);
  transition:.2s ease;
}

@media (max-width:768px){
  .social-inline .social-item img{
    width:24px;
    height:24px;
  }
}

.ca-btn{
  margin-top:10px;
  padding:10px 22px;

  background:rgba(255,255,255,.35);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);

  border:1px solid rgba(255,255,255,.45);
  border-radius:40px;

  font-size:14px;
  font-weight:700;
  color:#14482b;

  cursor:pointer;
  box-shadow:0 10px 25px rgba(0,0,0,.15);

  transition:.2s ease;
}

.ca-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 30px rgba(0,0,0,.22);
}

@media (max-width:768px){
  .ca-btn{
    padding:8px 18px;
    font-size:13px;
  }
}

.about{
  width:100%;
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:120px 20px 80px;

}



/* GLASS CARD */
.about-card{
  max-width:900px;
  width:100%;
  padding:60px 40px;

  background:linear-gradient(
      rgba(0,0,0,.25),
      rgba(0,0,0,.25)
    ),
    rgba(255,255,255,.15);

  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);

  border-radius:26px;
  box-shadow:0 20px 45px rgba(0,0,0,.25);

  text-align:center;
  color:white;
}

/* TITLE */
.about-title{
  font-size:54px;
  font-weight:900;
  margin-bottom:8px;
}

/* SUBTITLE */
.about-subtitle{
  font-size:26px;
  font-weight:800;
  margin-bottom:26px;
}

/* MAIN TEXT */
.about-text{
  font-size:18px;
  line-height:1.7;
  max-width:760px;
  margin:0 auto 26px auto;
  opacity:.9;
}

/* NOTE */
.about-note{
  margin-bottom:30px;
  font-size:17px;
}

/* CONTACT BUTTON */
.contact-btn{
  padding:14px 44px;
  border-radius:40px;
  border:none;
  font-size:17px;
  font-weight:900;
  color:white;
  cursor:pointer;

  background:linear-gradient( #ff6f6f , #ff3434);
  box-shadow:0 12px 28px rgba(0,0,0,.25);

  transition:.2s ease;
}

.contact-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 34px rgba(0,0,0,.3);
}


@media(max-width:768px){

  .about-card{
    padding:40px 22px;
  }

  .about-title{
    font-size:40px;
  }

  .about-subtitle{
    font-size:20px;
  }

  .about-text{
    font-size:16px;
  }
}

.ca-btn{
  cursor:pointer;
  user-select:none;
}

.ca-btn.copied{
  transform:scale(1.05);
}



/* TITLE */
.footer-title{
  font-size:26px;
  font-weight:900;
  margin-bottom:6px;
}

/* SUB TEXT */
.footer-desc{
  opacity:.9;
  margin-bottom:18px;
}

/* SOCIAL ICONS */
.footer-social{
  display:flex;
  justify-content:center;
  gap:20px;
  margin-bottom:18px;
}

.footer-social img{
  width:26px;
  height:26px;
  object-fit:contain;
  transition:.2s ease;
  cursor:pointer;
}

.footer-social img:hover{
  transform:scale(1.08);
}

/* COPYRIGHT */
.copy{
  font-size:13px;
  opacity:.85;
}


@media(max-width:768px){
  .footer-inner{
    padding:22px 18px;
  }

  .footer-title{
    font-size:22px;
  }
}


.footer{
  width:100%;
  padding:40px 20px 30px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  color:white;
}


/* ===================== GALLERY ===================== */

.gallery{
  width:100%;
  min-height:100vh;
  padding:120px 20px 80px;
  display:flex;
  justify-content:center;
}

.gallery-container{
  width:100%;
  max-width:1200px;
  text-align:center;
  color:white;
}

.gallery-title{
  font-size:48px;
  font-weight:900;
  margin-bottom:10px;
}

.gallery-subtitle{
  font-size:18px;
  opacity:.85;
  margin-bottom:50px;
}

/* GRID */

.meme-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(220px,1fr));
  gap:22px;
}

/* CARD */

.meme-item{
  border-radius:18px;
  overflow:hidden;
  background:rgba(255,255,255,.08);
  backdrop-filter:blur(10px);
  transition:.25s ease;
  cursor:pointer;
}

.meme-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.meme-item:hover{
  transform:translateY(-6px) scale(1.02);
  box-shadow:0 20px 40px rgba(0,0,0,.35);
}

/* RESPONSIVE */

@media(max-width:768px){
  .gallery-title{ font-size:34px; }
  .meme-grid{
    grid-template-columns:repeat(auto-fill,minmax(160px,1fr));
    gap:14px;
  }
}