﻿:root {
  --red: #c00000;
  --black: #0b0b0b;
  --dark: #141414;
  --gray: #2b2b2b;
  --light: #f3f3f3;
  --text: #d9d9d9;
  --accent: #ff3b3b;
  --radius: 18px;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", "Oswald", sans-serif;
  background: radial-gradient(circle at top, #151515 0%, #0b0b0b 60%);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* Intro emoji + confetti */
.intro-animation {
  position: fixed;
  inset: 0;
  background: rgba(6, 6, 6, 0.92);
  display: grid;
  place-items: center;
  z-index: 9999;
  pointer-events: none;
  animation: intro-fade 1.1s ease forwards;
  animation-delay: 1.6s;
}

.intro-emoji {
  font-size: clamp(64px, 12vw, 140px);
  filter: drop-shadow(0 20px 40px rgba(192, 0, 0, 0.35));
  animation: emoji-zoom 1.4s ease forwards;
  transform-origin: center;
}

.confetti-layer {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.confetti {
  position: absolute;
  width: 10px;
  height: 16px;
  background: var(--red);
  opacity: 0;
  transform: translate(-50%, -50%);
  animation: confetti-pop 1.6s ease forwards;
}

.confetti.circle {
  border-radius: 50%;
  width: 12px;
  height: 12px;
}

@keyframes emoji-zoom {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }
  65% {
    transform: scale(1.25);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes confetti-pop {
  0% {
    opacity: 0;
    transform: translate(var(--x0), var(--y0)) scale(0.2);
  }
  20% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(var(--x1), var(--y1)) rotate(var(--r)) scale(1);
  }
}

@keyframes intro-fade {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

@media (prefers-reduced-motion: reduce) {
  .intro-animation {
    display: none;
  }
}
/* Global layout helpers */
.container {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
}

/* Header + navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 11, 11, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Oswald", sans-serif;
  font-size: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--red);
  background: #000;
}

.brand-text {
  color: #fff;
}

.main-nav {
  display: flex;
  gap: 18px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.main-nav a {
  padding: 6px 0;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a:focus::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  box-shadow: 0 10px 25px rgba(192, 0, 0, 0.3);
}

.btn:hover,
.btn:focus {
  background: var(--accent);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border-color: var(--red);
  color: #fff;
  box-shadow: none;
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  box-shadow: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
}

/* Hero */
.hero {
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  align-items: center;
}

.kicker {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  font-weight: 600;
}

.hero h1 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  text-transform: uppercase;
  color: #fff;
  margin: 12px 0;
}

.lead {
  font-size: 1.1rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.hero-actions .btn {
  min-width: 180px;
  justify-content: center;
}

.hero-highlights {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding: 0;
  list-style: none;
  color: #fff;
  font-weight: 600;
}

.hero-highlights li {
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-media {
  position: relative;
  border-radius: var(--radius);
  background: linear-gradient(145deg, #1f1f1f, #0b0b0b);
  padding: 24px;
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: auto;
}

.hero-glow {
  position: absolute;
  width: 520px;
  height: 520px;
  right: -200px;
  top: -120px;
  background: radial-gradient(circle, rgba(192, 0, 0, 0.45), transparent 70%);
  filter: blur(30px);
  z-index: -1;
}

/* Sections */
.section {
  padding: 90px 0;
}

.section.alt {
  background: #101010;
}

.section-title {
  margin-bottom: 34px;
}

.section-title h2 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  margin: 12px 0 0;
  color: #fff;
  text-transform: uppercase;
}

.club-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.values {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

/* Cards and grids */
.value-card {
  background: #151515;
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.3s ease, border 0.3s ease;
}

.value-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.2);
}

.value-icon {
  font-size: 24px;
}

.split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
}

.card {
  background: #151515;
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.card.highlight {
  background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
  border-color: rgba(192, 0, 0, 0.4);
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.adhesion-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.checklist {
  list-style: none;
  padding: 0;
}

.checklist li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
}

.checklist li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.adhesion-note {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
  color: #cfcfcf;
}

.adhesion-note strong {
  color: #fff;
}

.adhesion-note p {
  margin: 8px 0;
}

.facebook-card {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 24px;
  background: #151515;
  border-radius: var(--radius);
  padding: 28px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.facebook-badge {
  text-transform: uppercase;
  text-align: center;
  background: #0b0b0b;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px;
  border-radius: var(--radius);
  color: #fff;
}

.facebook-badge span {
  font-family: "Oswald", sans-serif;
  font-size: 24px;
  display: block;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
}

.contact-centered {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}

.contact-card {
  width: min(100%, 520px);
}

.contact-card p {
  margin: 10px 0;
}

.contact-card strong {
  color: #fff;
}

.contact-info a {
  color: var(--accent);
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
}

input,
textarea {
  background: #0f0f0f;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 12px 14px;
  border-radius: 12px;
  color: #fff;
  font-family: inherit;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(192, 0, 0, 0.6);
}

/* Footer */
.site-footer {
  background: #080808;
  padding: 60px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.footer-grid h3 {
  margin-top: 0;
  color: #fff;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-grid li {
  margin-bottom: 8px;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #151515;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.3s ease, transform 0.3s ease;
}

.socials a:hover {
  background: var(--red);
  transform: translateY(-2px);
}

.footer-bottom {
  margin-top: 32px;
  text-align: center;
  font-size: 14px;
  color: #888;
}

/* Scroll reveal animation */
.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.js .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-grid,
  .club-grid,
  .split,
  .community-grid,
  .adhesion-grid,
  .facebook-card,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 100px;
  }

  .main-nav {
    position: absolute;
    top: 70px;
    right: 16px;
    background: #111;
    padding: 16px 20px;
    border-radius: 16px;
    flex-direction: column;
    gap: 12px;
    box-shadow: var(--shadow);
    display: none;
  }

  .main-nav.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }
}

@media (max-width: 640px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    justify-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
    min-width: 0;
    padding: 12px 16px;
    font-size: 0.95rem;
  }

  .hero-highlights {
    flex-direction: column;
    align-items: flex-start;
  }
}



