/* BASE */
@font-face {
  font-family: 'HemiHead';
  src: url('../fonts/hemi-head-bd-it.otf') format('opentype');
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #111;
  color: #fff;
}

a {
  color: #fff;
}

h1,
h2,
h3 {
  margin-top: 0;
}

h2 {
  color: #ff4d4d;
}

/* NAVIGATION */
nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .75rem;
  padding: 1rem;
  background: rgba(17, 17, 17, .92);
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .25);
}

nav a {
  text-decoration: none;
  padding: .6rem 1rem;
  border-radius: 10px;
  background: #2a2a2a;
  transition: .2s ease;
}

nav a:hover {
  background: #cc0000;
  transform: translateY(-2px);
}

/* HEADER */
header {
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, #8b0000, #cc0000);
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 6vw, 5rem);
  font-family: 'HemiHead', Arial, sans-serif;
  letter-spacing: 2px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, .45);
}

.patch {
  height: clamp(120px, 12vw, 240px);
  width: auto;
  filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, .45));
}

/* LAYOUT */
main {
  max-width: 1100px;
  margin: auto;
  padding: 3rem 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

section {
  background: #1d1d1d;
  padding: 1.5rem;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .25);
  transition: .2s ease;
  scroll-margin-top: 90px;
}

section:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, .35);
}

/* NEWS */
.news-grid {
  display: grid;
  gap: 16px;
}

.news-card {
  background: #2a2a2a;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .25);
  transition: .2s ease;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, .35);
}

.news-card img,
.gallery img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.news-card img {
  height: 240px;
}

.news-content {
  padding: 1rem;
}

.news-date {
  color: #ff4d4d;
  font-size: .9rem;
  margin-bottom: .5rem;
}

/* EVENTS */
.events {
  display: grid;
  gap: 12px;
}

.event-card {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 12px;
  background: #2a2a2a;
  border-left: 4px solid #cc0000;
}

.event-date {
  min-width: 70px;
  text-align: center;
  font-weight: bold;
  color: #ff4d4d;
}

.event-info {
  line-height: 1.4;
}

/* GALLERY */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.gallery img {
  height: 220px;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .25);
  transition: .25s ease;
}

.gallery img:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 24px rgba(0, 0, 0, .35);
}

/* CONTACT / SOCIAL */
.contact-link {
  text-decoration: none;
}

.contact-link:hover {
  color: #ff4d4d;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: .5rem;
}

.social-link {
  padding: .55rem 1rem;
  border-radius: 10px;
  background: #2a2a2a;
  text-decoration: none;
  transition: .2s ease;
}

.social-link:hover {
  background: #cc0000;
  transform: translateY(-2px);
}

/* LIGHTBOX */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 5000;
  padding: 2rem;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, .92);
  cursor: pointer;
}

.lightbox img {
  max-width: 95%;
  max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(0, 0, 0, .6);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  font-weight: bold;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 1.5rem;
  color: #bbb;
}