/* ═══════════════ Bletaria Shqip — custom styles ═══════════════ */

:root {
  --honey: #E8A020;
  --honey-light: #FFC65C;
  --honey-deep: #B4700F;
  --night: #0B0906;
  --coal: #14100A;
  --cream: #F5EBD8;
}

html { scroll-padding-top: 84px; }
body { background: var(--night); }

/* ── grain overlay ── */
.grain {
  position: fixed; inset: -50%;
  width: 200%; height: 200%;
  pointer-events: none; z-index: 60;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  animation: grain-shift 9s steps(6) infinite;
}
@keyframes grain-shift {
  0%,100% { transform: translate(0,0); }
  20% { transform: translate(-2%,1%); }
  40% { transform: translate(1%,-2%); }
  60% { transform: translate(-1%,2%); }
  80% { transform: translate(2%,-1%); }
}

/* ── preloader ── */
.hex-loader { animation: hex-spin 1.4s ease-in-out infinite; }
.hex-loader polygon {
  stroke-dasharray: 280; stroke-dashoffset: 280;
  animation: hex-draw 1.4s ease-in-out infinite;
}
@keyframes hex-spin { 50% { transform: rotate(180deg); } 100% { transform: rotate(360deg); } }
@keyframes hex-draw { 0% { stroke-dashoffset: 280; } 55% { stroke-dashoffset: 0; } 100% { stroke-dashoffset: -280; } }

/* ── nav ── */
#nav.scrolled {
  background: rgba(11, 9, 6, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(245, 235, 216, 0.07);
}
.nav-link { position: relative; padding: 4px 0; transition: color .3s; }
.nav-link:hover { color: var(--honey-light); }
.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 1.5px; background: var(--honey);
  transform: scaleX(0); transform-origin: right; transition: transform .35s ease;
}
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }
.menu-line { display: block; width: 18px; height: 2px; margin: 0 auto; background: var(--cream); border-radius: 2px; transition: transform .3s, opacity .3s; }
#menu-btn.open .menu-line:first-child { transform: translateY(4px) rotate(45deg); }
#menu-btn.open .menu-line:last-child { transform: translateY(-4px) rotate(-45deg); }

/* ── hex badge (logo) ── */
.hex-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  background: linear-gradient(140deg, var(--honey-light), var(--honey-deep));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.hex-badge-lg { width: 64px; height: 64px; display: flex; }

/* ── buttons ── */
.btn-honey {
  display: inline-flex; align-items: center; gap: 10px; justify-content: center;
  font-weight: 700; color: var(--night);
  background: linear-gradient(140deg, var(--honey-light) 0%, var(--honey) 55%, var(--honey-deep) 130%);
  border-radius: 999px;
  box-shadow: 0 4px 24px rgba(232, 160, 32, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s;
}
.btn-honey:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 8px 34px rgba(232, 160, 32, 0.5), inset 0 1px 0 rgba(255,255,255,.35); }
.btn-honey:active { transform: translateY(0) scale(.99); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px; justify-content: center;
  font-weight: 600; color: var(--cream);
  border: 1px solid rgba(245, 235, 216, 0.25); border-radius: 999px;
  backdrop-filter: blur(6px);
  transition: border-color .3s, background .3s, transform .3s;
}
.btn-ghost:hover { border-color: var(--honey); background: rgba(232, 160, 32, 0.08); transform: translateY(-2px); }

.btn-dark {
  display: inline-flex; align-items: center; gap: 10px; justify-content: center;
  font-weight: 700; color: var(--cream);
  background: #1E1811; border-radius: 999px;
  box-shadow: 0 4px 20px rgba(30, 24, 17, 0.35);
  transition: transform .3s, box-shadow .3s, background .3s;
}
.btn-dark:hover { transform: translateY(-2px); background: #0B0906; box-shadow: 0 8px 28px rgba(30,24,17,.5); }

.btn-ghost-dark {
  display: inline-flex; align-items: center; gap: 10px; justify-content: center;
  font-weight: 600; color: #1E1811;
  border: 1px solid rgba(30, 24, 17, 0.3); border-radius: 999px;
  transition: border-color .3s, background .3s, transform .3s;
}
.btn-ghost-dark:hover { border-color: var(--honey-deep); background: rgba(180, 112, 15, 0.08); transform: translateY(-2px); }

/* ── section typography ── */
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--honey); font-size: 11px; font-weight: 800;
  letter-spacing: 0.3em; text-transform: uppercase; margin-bottom: 18px;
}
.section-tag::before { content: ""; width: 26px; height: 1.5px; background: currentColor; opacity: .6; }
.section-tag.justify-center::after { content: ""; width: 26px; height: 1.5px; background: currentColor; opacity: .6; }
.section-title {
  font-family: 'Fraunces', serif; font-weight: 600; color: var(--cream);
  font-size: clamp(2rem, 4.6vw, 3.4rem); line-height: 1.08; letter-spacing: -0.01em;
}
.section-sub { margin-top: 20px; color: #D8CBB2; opacity: .85; font-size: 1.05rem; line-height: 1.7; max-width: 34rem; }

/* ── hero extras ── */
.honey-shimmer {
  background: linear-gradient(100deg, var(--honey-deep) 0%, var(--honey) 30%, var(--honey-light) 50%, var(--honey) 70%, var(--honey-deep) 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shimmer 5s ease-in-out infinite;
}
@keyframes shimmer { 0%,100% { background-position: 0% 0; } 50% { background-position: 100% 0; } }

.scroll-drop {
  width: 10px; height: 16px;
  background: var(--honey);
  border-radius: 50% 50% 50% 50% / 30% 30% 70% 70%;
  animation: drop-fall 2s ease-in infinite;
}
@keyframes drop-fall {
  0% { transform: translateY(-6px) scaleY(.8); opacity: 0; }
  35% { opacity: 1; }
  100% { transform: translateY(18px) scaleY(1.15); opacity: 0; }
}

/* ── honeycomb pattern bg ── */
.hex-bg {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='97' viewBox='0 0 56 97'%3E%3Cg fill='none' stroke='%23E8A020' stroke-width='1.5'%3E%3Cpath d='M28 2 54 17v30L28 62 2 47V17Z'/%3E%3Cpath d='M28 64 54 79v30L28 124 2 109V79Z'/%3E%3Cpath d='M-26 33 0 48v30L-26 93l-26-15V48Z'/%3E%3Cpath d='M82 33l26 15v30L82 93 56 78V48Z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 56px 97px;
}
.hex-bg-dark {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='97' viewBox='0 0 56 97'%3E%3Cg fill='none' stroke='%23B4700F' stroke-opacity='.14' stroke-width='1.5'%3E%3Cpath d='M28 2 54 17v30L28 62 2 47V17Z'/%3E%3Cpath d='M28 64 54 79v30L28 124 2 109V79Z'/%3E%3Cpath d='M-26 33 0 48v30L-26 93l-26-15V48Z'/%3E%3Cpath d='M82 33l26 15v30L82 93 56 78V48Z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 56px 97px;
}

/* ── ambient glow spots ── */
.glow-spot {
  position: absolute; width: 620px; height: 620px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,160,32,.14) 0%, rgba(232,160,32,.05) 40%, transparent 70%);
  pointer-events: none; filter: blur(10px);
}
.glow-center { top: 50%; left: 50%; transform: translate(-50%, -50%); width: 900px; height: 900px; }

/* ── drip dividers ── */
.drip-divider { position: relative; height: 0; z-index: 5; }
.drip-divider svg { display: block; width: 100%; height: 90px; margin-top: -1px; }
.drip-into-cream, .drip-from-cream { position: absolute; top: 0; left: 0; right: 0; }

/* ── video cards ── */
.video-card {
  display: block; padding: 10px;
  background: rgba(245, 235, 216, 0.03);
  border: 1px solid rgba(245, 235, 216, 0.08);
  border-radius: 18px;
  transition: transform .4s cubic-bezier(.22,1,.36,1), border-color .4s, background .4s, box-shadow .4s;
}
.video-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232, 160, 32, 0.45);
  background: rgba(232, 160, 32, 0.05);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(232,160,32,.1);
}
.video-card .thumb {
  position: relative; aspect-ratio: 16/10; border-radius: 12px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.video-card .thumb::before {
  content: ""; position: absolute; inset: 0; opacity: .35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='34' height='59' viewBox='0 0 34 59'%3E%3Cg fill='none' stroke='%230B0906' stroke-width='1.2'%3E%3Cpath d='M17 1 33 10.2v18.4L17 37.8 1 28.6V10.2Z'/%3E%3Cpath d='M17 38.6 33 47.8v18.4L17 75.4 1 66.2V47.8Z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 34px 59px;
}
.thumb-1 { background: linear-gradient(135deg, #B4700F, #6b4009); }
.thumb-2 { background: linear-gradient(135deg, #8A5A2B, #3d2712); }
.thumb-3 { background: linear-gradient(135deg, #E8A020, #8a5a10); }
.thumb-4 { background: linear-gradient(135deg, #5c4a22, #2a2010); }
.play-btn {
  position: relative; z-index: 1;
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(11, 9, 6, 0.65); backdrop-filter: blur(4px);
  border: 1px solid rgba(245, 235, 216, 0.3);
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), background .35s;
}
.play-btn::after {
  content: ""; position: absolute; top: 50%; left: 53%;
  transform: translate(-50%, -50%);
  border-left: 14px solid var(--honey-light);
  border-top: 9px solid transparent; border-bottom: 9px solid transparent;
}
.video-card:hover .play-btn { transform: scale(1.15); background: rgba(232, 160, 32, 0.85); }
.video-card:hover .play-btn::after { border-left-color: var(--night); }
.video-card .duration {
  position: absolute; bottom: 8px; right: 8px; z-index: 1;
  font-size: 11px; font-weight: 700; color: var(--cream);
  background: rgba(11,9,6,.75); border-radius: 6px; padding: 2px 7px;
}
.video-card h3 { margin: 14px 6px 4px; font-weight: 700; font-size: .95rem; color: var(--cream); line-height: 1.4; }
.video-card p { margin: 0 6px 8px; font-size: .78rem; color: rgba(216, 203, 178, 0.6); }

/* ── 3D hive labels ── */
.hive-label {
  position: absolute; z-index: 10;
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: clamp(.8rem, 1.5vw, 1rem); color: var(--cream);
  background: rgba(20, 16, 10, 0.72);
  border: 1px solid rgba(232, 160, 32, 0.4);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-radius: 999px; padding: 10px 18px;
  opacity: 0; visibility: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,.4);
}
.hive-label .dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--honey); box-shadow: 0 0 12px var(--honey);
  animation: pulse-dot 1.8s ease-in-out infinite;
}
@keyframes pulse-dot { 50% { transform: scale(1.35); opacity: .7; } }

/* ── app section ── */
.app-feat { display: flex; gap: 14px; align-items: flex-start; }
.app-feat strong { color: var(--cream); font-size: .98rem; }
.app-feat p { color: rgba(216, 203, 178, 0.65); font-size: .88rem; margin-top: 2px; line-height: 1.55; }
.hex-mini {
  flex: none; width: 14px; height: 16px; margin-top: 4px;
  background: linear-gradient(140deg, var(--honey-light), var(--honey-deep));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

/* phone mockups */
.phone {
  position: relative; flex: none;
  width: clamp(130px, 17vw, 185px);
  border-radius: 28px; padding: 8px;
  background: linear-gradient(160deg, #2a2218, #14100A);
  border: 1px solid rgba(245, 235, 216, 0.14);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255,255,255,.06);
}
.phone-main { width: clamp(160px, 20vw, 220px); z-index: 2; }
.phone-side { margin-bottom: 34px; opacity: .96; }
.phone::before {
  content: ""; position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  width: 34%; height: 15px; border-radius: 999px; background: #0B0906; z-index: 3;
}
.phone-screen {
  border-radius: 21px; overflow: hidden;
  background: linear-gradient(180deg, #171209, #0e0b06);
  padding: 34px 10px 14px; min-height: 340px;
  display: flex; flex-direction: column; gap: 7px;
}
.phone-main .phone-screen { min-height: 410px; }
.app-head { display: flex; justify-content: space-between; align-items: center; padding: 0 4px 6px; font-weight: 800; font-size: 11px; color: var(--cream); border-bottom: 1px solid rgba(245,235,216,.08); margin-bottom: 3px; }
.hive-row { display: flex; align-items: center; gap: 8px; background: rgba(245,235,216,.045); border: 1px solid rgba(245,235,216,.06); border-radius: 10px; padding: 7px 8px; }
.hive-row b { display: block; font-size: 9.5px; color: var(--cream); }
.hive-row i { display: block; font-style: normal; font-size: 8px; color: rgba(216,203,178,.55); }
.st { flex: none; width: 8px; height: 8px; border-radius: 50%; }
.st-ok { background: #7C8E5A; box-shadow: 0 0 8px rgba(124,142,90,.8); }
.st-warn { background: var(--honey); box-shadow: 0 0 8px rgba(232,160,32,.8); }
.st-bad { background: #c05a3a; box-shadow: 0 0 8px rgba(192,90,58,.8); }
.report-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.rep { background: rgba(245,235,216,.045); border: 1px solid rgba(245,235,216,.06); border-radius: 10px; padding: 8px; }
.rep i { display: block; font-style: normal; font-size: 8px; color: rgba(216,203,178,.55); }
.rep b { display: block; font-size: 10px; color: var(--cream); margin-top: 2px; }
.note-box { font-size: 8.5px; line-height: 1.5; color: rgba(216,203,178,.75); background: rgba(232,160,32,.07); border: 1px dashed rgba(232,160,32,.3); border-radius: 10px; padding: 8px; margin-top: 2px; }
.app-cta { margin-top: auto; text-align: center; font-size: 10px; font-weight: 800; color: var(--night); background: linear-gradient(140deg, var(--honey-light), var(--honey)); border-radius: 999px; padding: 8px; }
.rem-row { background: rgba(245,235,216,.045); border-left: 2px solid var(--honey); border-radius: 8px; padding: 7px 8px; }
.rem-row b { display: block; font-size: 9.5px; color: var(--cream); }
.rem-row i { display: block; font-style: normal; font-size: 8px; color: rgba(216,203,178,.55); margin-top: 1px; }

/* ── apitherapy: "Fryma e Kosheres" scroll story ── */
.apit-stage {
  position: absolute; left: 0; right: 0; z-index: 10;
  text-align: center; padding: 0 24px; pointer-events: none;
}
#astage-1 { bottom: 13%; }
#astage-2 { top: 20%; opacity: 0; }
.apit-stage h3 {
  font-family: 'Fraunces', serif; font-weight: 600;
  font-size: clamp(1.5rem, 3.6vw, 2.5rem); line-height: 1.2;
  color: #1E1811; letter-spacing: -0.01em;
  text-shadow: 0 2px 24px rgba(245, 235, 216, 0.9);
}

.apit-chip {
  position: absolute; z-index: 10;
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: clamp(.78rem, 1.4vw, .95rem); color: #1E1811;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(180, 112, 15, 0.35);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-radius: 999px; padding: 9px 17px;
  opacity: 0; visibility: hidden;
  box-shadow: 0 10px 30px rgba(138, 90, 43, 0.16);
  pointer-events: none;
}
.apit-chip .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--honey-deep); box-shadow: 0 0 10px rgba(180, 112, 15, .7);
  animation: pulse-dot 2.2s ease-in-out infinite;
}

.apit-panel {
  max-width: 30rem;
  background: rgba(245, 235, 216, 0.8);
  border: 1px solid rgba(180, 112, 15, 0.25);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-radius: 26px; padding: clamp(22px, 3.4vw, 38px);
  box-shadow: 0 26px 70px rgba(138, 90, 43, 0.2);
}

.safety-note {
  display: flex; gap: 12px; align-items: flex-start;
  background: rgba(180, 112, 15, 0.09);
  border: 1px solid rgba(180, 112, 15, 0.3);
  border-radius: 14px; padding: 16px 18px;
  color: #6b4009; font-size: .88rem; line-height: 1.6;
}
/* ── trust cards ── */
.trust-card {
  position: relative; overflow: hidden;
  background: rgba(245, 235, 216, 0.03);
  border: 1px solid rgba(245, 235, 216, 0.08);
  border-radius: 20px; padding: 28px 24px;
  transition: transform .4s cubic-bezier(.22,1,.36,1), border-color .4s, background .4s;
}
.trust-card:hover { transform: translateY(-5px); border-color: rgba(232,160,32,.4); background: rgba(232,160,32,.05); }
.trust-num {
  font-family: 'Fraunces', serif; font-size: 2.6rem; font-weight: 300;
  color: rgba(232, 160, 32, 0.35); line-height: 1;
}
.trust-card h3 { margin-top: 14px; font-weight: 800; color: var(--cream); font-size: 1.05rem; }
.trust-card p { margin-top: 8px; font-size: .88rem; line-height: 1.6; color: rgba(216, 203, 178, 0.6); }

/* ── cursor bees ── */
.cbee {
  position: fixed; top: 0; left: 0; z-index: 55;
  width: 22px; height: 22px; pointer-events: none;
  opacity: 0; will-change: transform;
  filter: drop-shadow(0 0 6px rgba(232, 160, 32, 0.5));
}
.cbee svg { width: 100%; height: 100%; }
.cbee .wing { transform-origin: center; animation: wing-flap .12s ease-in-out infinite alternate; }
@keyframes wing-flap { from { transform: scaleY(1); } to { transform: scaleY(.45); } }

/* reveal default state (GSAP animates in) */
.reveal { opacity: 0; }
.no-js .reveal, .gsap-off .reveal { opacity: 1; }

/* reduced motion: show everything, kill loops */
@media (prefers-reduced-motion: reduce) {
  .reveal, .hero-el { opacity: 1 !important; transform: none !important; }
  .grain, .scroll-drop, .honey-shimmer { animation: none !important; }
}
