/* Fonts and Base Styles */
body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background-color: #0f0f0f;
  color: #eaeaea;
}

h1, h2, h3 {
  font-family: 'Anton', sans-serif;
  margin-bottom: 0.5em;
}

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

section {
  padding: 60px 20px;
  text-align: center;
  max-width: 1000px;
  margin: auto;
}

/* Header */
.main-header {
  font-family: 'Bebas Neue', 'Impact', 'Arial Black', sans-serif; /* Tactical, bold font */
  font-size: 64px;            /* Big size */
  font-weight: 900;           /* Extra bold */
  letter-spacing: 2px;        /* Spread out letters */
  text-transform: uppercase;  /* ALL CAPS */
  text-align: center;
  margin-top: 50px;
  color: #ffffff;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.7);  /* Cool shadow effect */
}
header {
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo img {
  width: 150px;
  height: auto;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

nav li a {
  font-weight: 400;
  color: #f0f0f0;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.slideshow {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 1;
  background-size: cover;
  background-position: center;
  animation: slideShow 30s infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.5); /* adds contrast */
  padding: 30px;
  border-radius: 10px;
}

.hero h1 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
}

.btn {
  background-color: #e60000;
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  font-size: 18px;
}

@keyframes slideShow {
  0%   { background-image: url('images/img1.JPG'); }
  33%  { background-image: url('images/img2.jpg'); }
  66%  { background-image: url('images/img3.jpg'); }
  100% { background-image: url('images/img1.JPG'); }
}
}
#hero {
  background: url('https://images.unsplash.com/photo-1609603867351-c7f9878e0a4c') center/cover no-repeat;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: relative;
  text-align: center;
}

#hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
}

.hero-text {
  position: relative;
  z-index: 1;
}

.btn {
  background: #d40000;
  color: white;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: bold;
  display: inline-block;
  margin-top: 20px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.card {
  background: #1a1a1a;
  padding: 20px;
  border-left: 4px solid #d40000;
  flex: 1 1 280px;
  max-width: 300px;
}

.video-grid iframe {
  margin-bottom: 20px;
}

footer {
  text-align: center;
  padding: 40px 20px;
  background: #000;
  color: #666;
}

.socials .btn {
  margin: 0 10px;
}
/* Global Styles */
body, html {
  margin: 0;
  padding: 0;
  font-family: 'Bebas Neue', sans-serif;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.slideshow {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0; left: 0;
  z-index: 1;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: fade 12s infinite;
}

.slide:nth-child(1) { animation-delay: 0s; }
.slide:nth-child(2) { animation-delay: 4s; }
.slide:nth-child(3) { animation-delay: 8s; }

@keyframes fade {
  0%, 30%   { opacity: 1; }
  33%, 100% { opacity: 0; }
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 20px 40px;
  border-radius: 8px;
}

/* Heading */
.main-header {
  font-size: 6vw; /* Responsive to screen width */
  font-weight: 900;
  text-transform: uppercase;
  margin: 0 0 20px;
  color: #fff;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
  letter-spacing: 2px;
}

/* Button */
.btn {
  display: inline-block;
  background-color: #e60000;
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s;
}
.btn:hover {
  background-color: #cc0000;
}

/* Mobile-Friendly Adjustments */
@media (max-width: 768px) {
  .main-header {
    font-size: 36px;
    letter-spacing: 1px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 16px;
  }

  .hero-content {
    padding: 20px;
  }
}
