/* ── HOME PAGE ── */

body { padding-top: 64px; }

/* HERO */
.hero {
  position: relative;
  width: 100%;
  height: 92vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.3) 0%,
    rgba(10,10,10,0.5) 50%,
    rgba(10,10,10,0.9) 100%
  );
  z-index: 1;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-text {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
}

.hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 700;
  color: var(--white);
  margin: 0 0 0.25rem 0;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 0.95;
}

.hero-text h4 {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.75);
  margin: 0.75rem 0 2rem 0;
  letter-spacing: 0.02em;
}

.hero-btn {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-btn a { text-decoration: none; }

.hero-btn button {
  font-family: var(--font-condensed);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
}

.hero-btn button:first-child {
  background: var(--red);
  color: var(--white);
}
.hero-btn button:first-child:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--red-glow);
}

.hero-btn button:last-child {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
}
.hero-btn button:last-child:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

/* SECTION LABEL */
.section-label {
  font-family: var(--font-condensed);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 0.75rem;
}

/* TROPHY SECTION */
.trophy-section {
  background: var(--dark2);
  padding: 6rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.trophy-section > h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  text-align: center;
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 0.5rem 0;
}

.trophy-section > p {
  text-align: center;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 3.5rem;
  line-height: 1.6;
}

.trophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5px;
  max-width: 1100px;
  margin: 0 auto 3rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
}

.trophy-card {
  background: var(--dark2);
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: background 0.25s;
  position: relative;
  overflow: hidden;
}

.trophy-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}

.trophy-card:hover { background: var(--dark3); }
.trophy-card:hover::before { transform: scaleX(1); }

.trophy-card img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin-bottom: 1rem;
  filter: brightness(0.9);
}

.trophy-card h3 {
  font-family: var(--font-condensed);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.5rem;
}

.trophy-card p {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0;
  line-height: 1;
}

.trophies-btn {
  text-align: center;
  grid-column: 1 / -1;
  background: var(--dark2);
  padding: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.trophies-btn a,
.history-btn a {
  text-decoration: none;
}

.trophies-btn button,
.history-btn button {
  font-family: var(--font-condensed);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 12px 32px;
  background: transparent;
  color: var(--light);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.25s;
}

.trophies-btn button:hover,
.history-btn button:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

/* HISTORY SECTION */
.history-section {
  background: var(--dark);
  padding: 6rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.history-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  text-align: center;
  margin: 0 0 0.5rem;
}

.history-section > h4 {
  text-align: center;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 300;
  font-style: italic;
  max-width: 650px;
  margin: 0 auto 3.5rem;
  line-height: 1.7;
}

.timeline {
  max-width: 800px;
  margin: 0 auto;
  padding-left: 2rem;
  border-left: 1px solid rgba(218,41,28,0.4);
  position: relative;
}

.timeline-item {
  margin-bottom: 2.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.1rem;
  top: 6px;
  width: 10px;
  height: 10px;
  background: var(--red);
  border-radius: 50%;
  border: 2px solid var(--dark);
  box-shadow: 0 0 8px var(--red-glow);
}

.timeline-date {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.timeline-content h3 {
  font-family: var(--font-condensed);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin: 0 0 0.4rem;
  letter-spacing: 0.03em;
}

.timeline-content p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  font-style: italic;
}

.history-btn {
  text-align: center;
  margin-top: 3rem;
}

/* LATEST NEWS */
.latest-news {
  background: var(--dark2);
  padding: 6rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.latest-news h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  text-align: center;
  margin: 0 0 3rem;
}

#news-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
}

#news-container > div {
  background: var(--dark2);
  padding: 0;
  display: flex;
  flex-direction: column;
  transition: background 0.25s;
  overflow: hidden;
}

#news-container > div:hover {
  background: var(--dark3);
}

#news-container img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}

.news-text {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

#news-container h3 {
  font-family: var(--font-condensed);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin: 0 0 0.6rem;
  line-height: 1.3;
  letter-spacing: 0.02em;
}

#news-container p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 1rem;
  flex: 1;
}

#news-container a {
  font-family: var(--font-condensed);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
  align-self: flex-start;
}

#news-container a:hover {
  border-bottom-color: var(--red);
}

/* GALLERY */
.gallery-section {
  background: var(--black);
  padding: 6rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.gallery-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  text-align: center;
  margin: 0 0 3rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  filter: grayscale(20%) brightness(0.85);
  transition: filter 0.4s, transform 0.4s;
  cursor: pointer;
}

.gallery-grid img:hover {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.02);
  position: relative;
  z-index: 2;
}

/* LIGHTBOX */
.lightbox {
  display: none;
  position: fixed;
  z-index: 2000;
  inset: 0;
  background: rgba(0,0,0,0.92);
  text-align: center;
  padding: 2rem;
}

.lightbox-image {
  max-width: 90%;
  max-height: 75vh;
  border-radius: 2px;
  margin-top: 2rem;
}

.lightbox-caption {
  color: var(--muted);
  font-family: var(--font-condensed);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 1rem 0;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  color: var(--white);
  font-size: 2rem;
  font-weight: 300;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.lightbox-close:hover { opacity: 1; }

.lightbox-controls {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.lightbox-controls button {
  font-family: var(--font-condensed);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 10px 24px;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.2s;
}

.lightbox-controls button:hover {
  background: var(--red);
  border-color: var(--red);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .trophy-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .trophy-grid { grid-template-columns: 1fr; }
}


::-webkit-scrollbar{
  display: none;
}