/* =========================================================
   AK7G — MAIN STYLESHEET
   Bold, colourful, animated. Built on top of Bootstrap 5.
   ========================================================= */

:root{
  --ak-pink:   #ff2e93;
  --ak-green:  #17e6a1;
  --ak-blue:   #2a6bff;
  --ak-purple: #7b2ff7;
  --ak-dark:   #0b0d17;
  --ak-dark-2: #12142a;
  --ak-light:  #f6f6ff;
  --ak-gradient: linear-gradient(135deg, var(--ak-pink) 0%, var(--ak-purple) 45%, var(--ak-blue) 75%, var(--ak-green) 100%);
  --ak-gradient-soft: linear-gradient(135deg, rgba(255,46,147,.18), rgba(123,47,247,.18), rgba(42,107,255,.18), rgba(23,230,161,.18));
  --ak-radius: 22px;
  --ak-shadow: 0 20px 60px rgba(0,0,0,.35);
}

*{ box-sizing: border-box; }

html{ scroll-behavior: smooth; }

body{
  background: var(--ak-dark);
  color: var(--ak-light);
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  overflow-x: hidden;
  position: relative;
}

h1,h2,h3,h4,h5,.font-display{
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  letter-spacing: -0.5px;
}

a{ text-decoration:none; }

::selection{ background: var(--ak-pink); color:#fff; }

/* -------------------- animated grain / blobs background -------------------- */
.ak-bg-blobs{
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.ak-blob{
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .55;
  animation: floatBlob 18s ease-in-out infinite;
}
.ak-blob.b1{ width: 420px; height: 420px; background: var(--ak-pink); top: -120px; left: -100px; animation-duration: 22s; }
.ak-blob.b2{ width: 380px; height: 380px; background: var(--ak-blue); top: 30%; right: -140px; animation-duration: 26s; }
.ak-blob.b3{ width: 340px; height: 340px; background: var(--ak-green); bottom: -100px; left: 20%; animation-duration: 20s; }
.ak-blob.b4{ width: 300px; height: 300px; background: var(--ak-purple); bottom: 10%; right: 10%; animation-duration: 30s; }

@keyframes floatBlob{
  0%,100%{ transform: translate(0,0) scale(1); }
  33%{ transform: translate(40px,-30px) scale(1.1); }
  66%{ transform: translate(-30px,30px) scale(.95); }
}

.ak-content{ position: relative; z-index: 1; }

/* -------------------- gradient text / buttons -------------------- */
.gradient-text{
  background: var(--ak-gradient);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradientShift 8s ease infinite;
}
@keyframes gradientShift{
  0%{ background-position: 0% 50%; }
  50%{ background-position: 100% 50%; }
  100%{ background-position: 0% 50%; }
}

.btn-ak{
  background: var(--ak-gradient);
  background-size: 250% 250%;
  border: none;
  color: #fff !important;
  font-weight: 600;
  padding: .8rem 2rem;
  border-radius: 50px;
  transition: transform .25s ease, box-shadow .25s ease, background-position .6s ease;
  box-shadow: 0 10px 30px rgba(255,46,147,.25);
}
.btn-ak:hover{
  transform: translateY(-3px) scale(1.03);
  background-position: 100% 50%;
  box-shadow: 0 15px 40px rgba(123,47,247,.4);
  color:#fff !important;
}

.btn-ak-outline{
  background: transparent;
  border: 2px solid var(--ak-pink);
  color: #fff !important;
  font-weight: 600;
  padding: .75rem 2rem;
  border-radius: 50px;
  transition: all .3s ease;
}
.btn-ak-outline:hover{
  background: var(--ak-gradient);
  border-color: transparent;
  transform: translateY(-3px);
}

/* -------------------- navbar -------------------- */
.ak-navbar{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  padding: 14px 0;
  background: rgba(11,13,23,.55);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: all .3s ease;
}
.ak-navbar.scrolled{ padding: 8px 0; background: rgba(11,13,23,.9); }

.ak-logo{
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 2px;
}

.ak-nav-link{
  color: #eaeaf5 !important;
  font-weight: 500;
  margin: 0 10px;
  position: relative;
  padding: 6px 2px !important;
}
.ak-nav-link::after{
  content:'';
  position:absolute;
  left:0; bottom:0;
  height:2px; width:0;
  background: var(--ak-gradient);
  transition: width .3s ease;
}
.ak-nav-link:hover::after, .ak-nav-link.active::after{ width:100%; }
.ak-nav-link.active{ color: #fff !important; }

.ak-cart-badge{
  background: var(--ak-pink);
  color:#fff;
  font-size:.65rem;
  border-radius: 50%;
  padding: 1px 6px;
  position: absolute;
  top: -6px; right: -10px;
}

/* -------------------- hero -------------------- */
.ak-hero{
  min-height: 100vh;
  display:flex;
  align-items:center;
  padding-top: 110px;
  position: relative;
}
.ak-hero-badge{
  display:inline-block;
  padding: 6px 18px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.05);
  font-size:.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.ak-hero h1{
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  line-height: 1.05;
}
.ak-hero p.lead{
  color: #c8c8de;
  max-width: 520px;
}

.ak-hero-art{
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 40% 60% 55% 45% / 55% 45% 60% 40%;
  background: var(--ak-gradient);
  background-size: 300% 300%;
  animation: gradientShift 10s ease infinite, morph 12s ease-in-out infinite;
  box-shadow: var(--ak-shadow);
}
@keyframes morph{
  0%,100%{ border-radius: 40% 60% 55% 45% / 55% 45% 60% 40%; }
  50%{ border-radius: 60% 40% 45% 55% / 45% 55% 40% 60%; }
}

.ak-hero-art img{
  position:absolute;
  inset: 6%;
  width: 88%; height:88%;
  object-fit: cover;
  border-radius: 40% 60% 55% 45% / 55% 45% 60% 40%;
  animation: morph 12s ease-in-out infinite;
  mix-blend-mode: normal;
}

.ak-float{ animation: floaty 5s ease-in-out infinite; }
@keyframes floaty{
  0%,100%{ transform: translateY(0px); }
  50%{ transform: translateY(-18px); }
}

.scroll-cue{
  width: 26px; height: 42px;
  border: 2px solid rgba(255,255,255,.5);
  border-radius: 20px;
  position: relative;
  margin: 0 auto;
}
.scroll-cue::before{
  content:'';
  position:absolute;
  top:6px; left:50%;
  width:5px; height:5px;
  background:#fff;
  border-radius:50%;
  transform: translateX(-50%);
  animation: scrollDot 1.8s ease infinite;
}
@keyframes scrollDot{
  0%{ top:6px; opacity:1;}
  70%{ top:24px; opacity: 0;}
  100%{ top:24px; opacity:0;}
}

/* -------------------- section styling -------------------- */
.ak-section{ padding: 110px 0; position: relative; }
.ak-eyebrow{
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: .8rem;
  color: var(--ak-green);
  font-weight: 700;
}
.ak-section-title{ font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
.ak-section-sub{ color:#b7b7cf; max-width: 640px; }

/* -------------------- glass cards -------------------- */
.ak-card{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--ak-radius);
  backdrop-filter: blur(10px);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  overflow: hidden;
  height: 100%;
}
.ak-card:hover{
  transform: translateY(-10px);
  box-shadow: var(--ak-shadow);
  border-color: rgba(255,46,147,.4);
}

.ak-card-img{
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform .5s ease;
}
.ak-card:hover .ak-card-img{ transform: scale(1.08); }

.ak-play{
  position:absolute; inset:0;
  display:flex; align-items:center; justify-content:center;
  background: rgba(0,0,0,.35);
  opacity:0;
  transition: opacity .3s ease;
}
.ak-card:hover .ak-play{ opacity:1; }
.ak-play i, .ak-play svg{
  width:60px; height:60px;
  border-radius:50%;
  background: var(--ak-gradient);
  display:flex; align-items:center; justify-content:center;
  color:#fff; font-size:1.4rem;
}

/* -------------------- gallery -------------------- */
.ak-gallery-item{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  cursor: zoom-in;
  margin-bottom: 1rem;
}
.ak-gallery-item img{
  width:100%; display:block;
  transition: transform .5s ease, filter .5s ease;
}
.ak-gallery-item:hover img{ transform: scale(1.1); filter: brightness(1.1); }
.ak-gallery-item::after{
  content: '\002B';
  position:absolute; inset:0;
  display:flex; align-items:center; justify-content:center;
  font-size: 2rem; color:#fff;
  background: rgba(123,47,247,.35);
  opacity:0; transition: opacity .3s ease;
}
.ak-gallery-item:hover::after{ opacity:1; }

/* -------------------- shop -------------------- */
.ak-price{
  font-weight: 800;
  font-size: 1.3rem;
  background: var(--ak-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ak-thumb-row img{
  width: 46px; height:46px; object-fit:cover;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color .2s ease;
}
.ak-thumb-row img:hover, .ak-thumb-row img.active{ border-color: var(--ak-pink); }

/* -------------------- forms -------------------- */
.form-control, .form-select{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  color: #fff;
  border-radius: 12px;
  padding: .75rem 1rem;
}
.form-control:focus, .form-select:focus{
  background: rgba(255,255,255,.09);
  border-color: var(--ak-pink);
  box-shadow: 0 0 0 .2rem rgba(255,46,147,.15);
  color:#fff;
}
.form-control::placeholder{ color: #9797ad; }
label{ color:#d6d6ea; font-weight:500; margin-bottom:.4rem; }

/* -------------------- footer -------------------- */
.ak-footer{
  background: var(--ak-dark-2);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 70px 0 25px;
}
.ak-social{
  width:42px; height:42px;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background: rgba(255,255,255,.06);
  color:#fff;
  transition: all .3s ease;
}
.ak-social:hover{ background: var(--ak-gradient); transform: translateY(-4px); }

/* -------------------- fade-in-up utility (works even without AOS) -------------------- */
.reveal{
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.show{ opacity: 1; transform: translateY(0); }

/* -------------------- misc -------------------- */
.badge-ak{
  background: var(--ak-gradient);
  padding: .35rem .9rem;
  border-radius: 50px;
  font-size: .75rem;
  font-weight:700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ak-tabs .nav-link{
  color: #cfcfe4;
  border-radius: 50px !important;
  margin: 0 4px;
  border: 1px solid rgba(255,255,255,.15) !important;
}
.ak-tabs .nav-link.active{
  background: var(--ak-gradient) !important;
  color:#fff !important;
  border-color: transparent !important;
}

.marquee{
  overflow:hidden;
  white-space: nowrap;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 18px 0;
}
.marquee span{
  display:inline-block;
  padding-right: 3rem;
  font-size: 1.4rem;
  font-weight:700;
  animation: marqueeMove 18s linear infinite;
  text-transform: uppercase;
  letter-spacing: 3px;
}
@keyframes marqueeMove{
  0%{ transform: translateX(0); }
  100%{ transform: translateX(-50%); }
}

.timeline-line{
  position: relative;
  border-left: 2px dashed rgba(255,255,255,.2);
  margin-left: 10px;
  padding-left: 30px;
}
.timeline-dot{
  position:absolute;
  left:-9px;
  width:16px; height:16px;
  border-radius:50%;
  background: var(--ak-gradient);
}

::-webkit-scrollbar{ width:10px; }
::-webkit-scrollbar-track{ background: var(--ak-dark); }
::-webkit-scrollbar-thumb{ background: var(--ak-gradient); border-radius: 10px; }

.alert-ak{
  border-radius: 14px;
  border: none;
}
