/*
Theme Name: Filma Shqip
Theme URI: https://filmashqip.com
Author: Filma Shqip
Description: Faqe e thjeshtë me tre karta lidhje për filma dhe ndeshje live shqip. Dizajn modern me ngjyra neon dhe efekte qelqi.
Version: 1.0
Requires at least: 5.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: filma-shqip
*/

/* ── Reset ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ── Base ── */
html, body {
  min-height: 100%;
  background: #09090b;
  font-family: 'Manrope', sans-serif;
  overflow-x: hidden;
}

/* ── Wrapper ── */
.fs-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* ── Background ── */
.fs-bg-img {
  position: fixed;
  inset: 0;
  background-image: url('https://static.prod-images.emergentagent.com/jobs/e1f10fd5-6b58-427a-b8eb-4bf368a0392e/images/1d5d14293c90e56bfc8155af770f801b57dc7f2f34994ab87ab21b26211d2af9.png');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.fs-bg-dark {
  position: fixed;
  inset: 0;
  background: rgba(9, 9, 11, 0.78);
  z-index: 1;
}

/* ── Main Content ── */
.fs-main {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1120px;
  padding: 60px 24px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ── Entry Animation ── */
.fs-heading,
.fs-sub,
.fs-card,
.fs-footer-note {
  opacity: 0;
  transform: translateY(28px);
  animation: fsSlideUp 0.65s ease forwards;
}

@keyframes fsSlideUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Header ── */
.fs-header-group {
  text-align: center;
  margin-bottom: 48px;
}

.fs-heading {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.8rem, 9vw, 5.5rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.025em;
  line-height: 1.05;
  text-shadow: 0 0 80px rgba(6, 182, 212, 0.25);
  margin-bottom: 12px;
  animation-delay: 0ms;
}

.fs-sub {
  font-family: 'Manrope', sans-serif;
  font-size: 1.1rem;
  color: #a1a1aa;
  animation-delay: 100ms;
}

/* ── Grid ── */
.fs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  width: 100%;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .fs-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

/* ── Card ── */
.fs-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 44px 28px 36px;
  border-radius: 24px;
  background: rgba(0, 0, 0, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  text-align: center;
  min-height: 320px;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.4s ease,
              border-color 0.4s ease;
}

.fs-card:hover {
  transform: translateY(-14px);
  text-decoration: none;
}

.fs-card-cyan { animation-delay: 200ms; }
.fs-card-pink { animation-delay: 350ms; }
.fs-card-lime { animation-delay: 500ms; }

.fs-card-cyan:hover {
  border-color: rgba(6, 182, 212, 0.45);
  box-shadow: 0 24px 64px rgba(6, 182, 212, 0.18);
}
.fs-card-pink:hover {
  border-color: rgba(236, 72, 153, 0.45);
  box-shadow: 0 24px 64px rgba(236, 72, 153, 0.18);
}
.fs-card-lime:hover {
  border-color: rgba(163, 230, 53, 0.45);
  box-shadow: 0 24px 64px rgba(163, 230, 53, 0.18);
}

/* ── Icon ── */
.fs-icon {
  margin-bottom: 20px;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.fs-card:hover .fs-icon {
  transform: scale(1.18);
}

.fs-icon-cyan { color: #06b6d4; }
.fs-icon-pink { color: #ec4899; }
.fs-icon-lime { color: #a3e635; }

/* ── Card Title ── */
.fs-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #f4f4f5;
  margin-bottom: 10px;
  transition: color 0.3s ease;
  line-height: 1.3;
}
.fs-card-cyan:hover .fs-card-title { color: #06b6d4; }
.fs-card-pink:hover .fs-card-title { color: #ec4899; }
.fs-card-lime:hover .fs-card-title { color: #a3e635; }

/* ── Card Desc ── */
.fs-card-desc {
  font-size: 0.9rem;
  color: #71717a;
  line-height: 1.65;
  margin-bottom: 20px;
}

/* ── CTA ── */
.fs-cta {
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.fs-card:hover .fs-cta {
  opacity: 1;
  transform: translateY(0);
}
.fs-cta-cyan { color: #06b6d4; }
.fs-cta-pink { color: #ec4899; }
.fs-cta-lime { color: #a3e635; }

/* ── Footer Note ── */
.fs-footer-note {
  font-size: 0.78rem;
  color: #52525b;
  text-align: center;
  max-width: 480px;
  line-height: 1.5;
  animation-delay: 600ms;
  margin-top: 16px;
}
