/* =============================================
   HERYERPARKOUR — Component Library
   Butonlar, badge'ler, genel kartlar
   ============================================= */

/* ===== BUTTONS — Street Style (Parallelogram) ===== */
.btn-street {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  font-family: var(--ff-heading);
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--duration-normal);
  clip-path: var(--clip-btn);
}

/* Dolu buton */
.btn-fill {
  background: var(--accent);
  color: white;
}

.btn-fill:hover {
  background: var(--yellow);
  color: var(--bg-dark);
  transform: translateY(-3px);
}

/* Çerçeve buton */
.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Ghost buton (sadece metin) */
.btn-ghost {
  background: transparent;
  color: var(--accent);
  padding: 12px 0;
  clip-path: none;
}

.btn-ghost:hover {
  color: var(--accent-hover);
}

/* Buton boyutları */
.btn-sm {
  padding: 12px 24px;
  font-size: 13px;
}

.btn-lg {
  padding: 20px 44px;
  font-size: 18px;
}

/* Bej zemin üzerinde outline */
.btn-outline-dark {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid rgba(0, 0, 0, 0.15);
}

.btn-outline-dark:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ===== LINK ARROW — "Keşfet →" tarzı ===== */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-heading);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  text-decoration: none;
  transition: gap var(--duration-normal), color var(--duration-normal);
}

.link-arrow:hover {
  gap: 14px;
}

/* ===== BADGES ===== */
.badge {
  display: inline-block;
  padding: 6px 18px;
  font-family: var(--ff-heading);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  clip-path: polygon(6% 0, 100% 0, 94% 100%, 0 100%);
}

.badge-dark {
  background: var(--bg-dark);
  color: white;
}

.badge-accent {
  background: var(--accent);
  color: white;
}

.badge-pop {
  position: absolute;
  top: -14px;
  right: 24px;
  background: var(--bg-dark);
  color: var(--accent);
  padding: 6px 20px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 3px;
  clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
  z-index: 2;
  border: 1px solid var(--accent);
}

/* ===== SCHEDULE TAGS ===== */
.st {
  display: inline-block;
  padding: 6px 14px;
  font-family: var(--ff-heading);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  clip-path: polygon(4% 0, 100% 0, 96% 100%, 0 100%);
  transition: all var(--duration-normal);
}

.st-p { background: rgba(255, 77, 0, 0.10); color: var(--accent); }
.st-j { background: rgba(34, 197, 94, 0.10); color: var(--green); }
.st-e { background: rgba(168, 85, 247, 0.10); color: var(--purple); }
.st-s { background: rgba(45, 91, 255, 0.10); color: var(--blue); }

.sched-table tr:hover .st-p { background: rgba(255, 77, 0, 0.18); }
.sched-table tr:hover .st-j { background: rgba(34, 197, 94, 0.18); }
.sched-table tr:hover .st-e { background: rgba(168, 85, 247, 0.18); }
.sched-table tr:hover .st-s { background: rgba(45, 91, 255, 0.18); }

/* ===== GRADIENT PLACEHOLDERS (Video/Image) ===== */
.grad-1 { background: linear-gradient(135deg, #1a1a2e, #2d1b4e); }
.grad-2 { background: linear-gradient(135deg, var(--accent), var(--pink)); }
.grad-3 { background: linear-gradient(135deg, var(--blue), var(--cyan)); }
.grad-4 { background: linear-gradient(135deg, var(--lime), #2ed573); }
.grad-5 { background: linear-gradient(135deg, #1a1a2e, var(--accent), var(--pink)); }

/* ===== IMAGE PLACEHOLDER ===== */
.img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #1a1a2e, #2a1530);
}

.img-placeholder span {
  font-size: 48px;
  opacity: 0.3;
}

.img-placeholder small {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.25);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ===== PLAY BUTTON (Video) ===== */
.play-btn {
  width: 64px;
  height: 64px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration-normal);
  backdrop-filter: blur(4px);
  background: rgba(255, 255, 255, 0.05);
}

.play-btn svg {
  margin-left: 4px;
}

.play-btn:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.1);
}

.play-btn-lg {
  width: 80px;
  height: 80px;
}

/* ===== SOCIAL ICON ===== */
.social-icon {
  width: 38px;
  height: 38px;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.4);
  transition: all var(--duration-normal);
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
}

.social-icon:nth-child(2) { clip-path: polygon(0 0, 92% 0, 100% 100%, 8% 100%); }
.social-icon:nth-child(3) { clip-path: polygon(6% 0, 100% 4%, 94% 100%, 0 96%); }
.social-icon:nth-child(4) { clip-path: polygon(0 4%, 94% 0, 100% 96%, 6% 100%); }

.social-icon:hover {
  border-color: var(--accent);
  background: rgba(255, 77, 0, 0.12);
  color: var(--accent);
  transform: translateY(-3px) skewX(-3deg);
}

/* ===== STAR RATING ===== */
.stars {
  font-size: 20px;
  color: var(--accent);
  letter-spacing: 2px;
  font-family: var(--ff-handwrite);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .btn-street {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
  }
}
