/* ===== CSS Variables ===== */
:root {
  --paprika-red:    #DC2626;
  --paprika-orange: #EA580C;
  --paprika-yellow: #F59E0B;
  --spice-gradient: linear-gradient(135deg, #DC2626 0%, #EA580C 50%, #F59E0B 100%);
}

/* ===== Base ===== */
*, *::before, *::after { box-sizing: border-box; }

body {
  background-color: #000;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

/* ===== Utility: Spice Gradient Text ===== */
.spice-text {
  background: var(--spice-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== Utility: Paprika Glow ===== */
.paprika-glow {
  box-shadow: 0 0 40px rgba(220, 38, 38, 0.35);
}

/* ===== Navbar ===== */
.site-nav {
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(234, 88, 12, 0.25);
}

.nav-brand-text {
  font-family: 'Anton', sans-serif;
  font-size: 1.75rem;
  background: var(--spice-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar-toggler {
  border-color: rgba(234, 88, 12, 0.6);
}

.nav-link {
  color: #d1d5db !important;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--paprika-orange) !important;
}

/* ===== Buttons ===== */
.btn-spice {
  background: var(--spice-gradient);
  border: none;
  color: #fff !important;
  font-weight: 700;
  border-radius: 50px;
  transition: transform 0.25s ease, filter 0.25s ease, box-shadow 0.25s ease;
  animation: pulseGlow 2.5s ease-in-out infinite alternate;
}

.btn-spice:hover,
.btn-spice:focus {
  transform: scale(1.05);
  filter: brightness(1.1);
  color: #fff !important;
}

.btn-outline-spice {
  border: 2px solid var(--paprika-orange);
  color: var(--paprika-orange) !important;
  background: transparent;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.25s ease;
}

.btn-outline-spice:hover {
  background: var(--spice-gradient);
  border-color: transparent;
  color: #fff !important;
}

/* ===== Animations ===== */
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-22px) rotate(180deg); }
}

@keyframes pulseGlow {
  0%   { box-shadow: 0 0 18px rgba(220, 38, 38, 0.4); }
  100% { box-shadow: 0 0 42px rgba(220, 38, 38, 0.85); }
}

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

.floating-spice {
  position: absolute;
  pointer-events: none;
  user-select: none;
  animation: float 6s ease-in-out infinite;
}

/* ===== Scroll Fade-In ===== */
.fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Hero ===== */
.hero-section {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 6rem 1rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(4.5rem, 18vw, 9rem);
  line-height: 1;
  letter-spacing: 0.02em;
  transform: rotate(-3deg);
  display: inline-block;
}

.hero-img {
  width: 100%;
  max-width: 700px;
  border-radius: 1.75rem;
}

/* ===== Spice Badges ===== */
.spice-badge {
  display: inline-block;
  background: rgba(220, 38, 38, 0.12);
  border: 1px solid rgba(220, 38, 38, 0.45);
  border-radius: 50px;
  padding: 0.35rem 1.1rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #fca5a5;
}

/* ===== Support Cards ===== */
.support-card {
  border: 2px solid rgba(249, 115, 22, 0.28);
  border-radius: 1.5rem;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.support-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(220, 38, 38, 0.2);
}

.support-card.level-free {
  background: linear-gradient(135deg, rgba(127,29,29,0.35), rgba(124,45,18,0.35));
}

.support-card.level-group {
  background: linear-gradient(135deg, rgba(124,45,18,0.35), rgba(113,63,18,0.35));
}

.support-card.level-individual {
  background: linear-gradient(135deg, rgba(113,63,18,0.35), rgba(127,29,29,0.35));
}

.card-icon {
  font-size: 1.6rem;
  color: var(--paprika-orange);
  flex-shrink: 0;
}

/* ===== Divider ===== */
.spice-divider {
  height: 2px;
  background: var(--spice-gradient);
  border: none;
  opacity: 0.4;
  margin: 0;
}

/* ===== About Section ===== */
.about-section {
  background: linear-gradient(180deg, rgba(30,0,0,0.6) 0%, rgba(0,0,0,0) 100%);
}

/* ===== Keywords Banner ===== */
.keywords-banner {
  background: rgba(220, 38, 38, 0.08);
  border-top: 1px solid rgba(220, 38, 38, 0.2);
  border-bottom: 1px solid rgba(220, 38, 38, 0.2);
  padding: 2.5rem 1rem;
  overflow: hidden;
}

.keyword-item {
  font-family: 'Anton', sans-serif;
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

/* ===== CTA Section ===== */
.cta-section {
  background: linear-gradient(135deg,
    rgba(69,10,10,0.55) 0%,
    rgba(124,45,18,0.35) 50%,
    rgba(67,20,7,0.55) 100%
  );
}

/* ===== Contact links ===== */
a.spice-link {
  color: var(--paprika-orange);
  text-decoration: none;
  transition: color 0.2s;
}

a.spice-link:hover {
  color: var(--paprika-yellow);
  text-decoration: underline;
}

/* ===== Footer ===== */
.site-footer {
  border-top: 1px solid rgba(234, 88, 12, 0.2);
}

/* ===== Responsive tweaks ===== */
@media (max-width: 575px) {
  .hero-section { padding-top: 5rem; }
  .support-card { padding: 1.5rem; }
}
