/* style-6.css updated 07-08 */

body {
  margin: 0;
  font-family: 'Archivo Black', sans-serif;
  background-color: #000;
  color: #fff;
  line-height: 1.6;
  scroll-behavior: smooth;
}

/* Navbar */
.nav {
  display: flex;
  justify-content: center;
  padding: 20px;
  background-color: #111;
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  letter-spacing: 2px;
  transition: color 0.3s ease;
}

.nav a:hover {
  color: #39ff14;
}

/* Hero Banner */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  box-sizing: border-box;
  background-color: #000;
}


.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  background-color: transparent;
}


.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #000;
}

.hero h1 {
  font-size: 5rem;
  margin: 0;
  letter-spacing: 4px;
  color: #39ff14;
  text-shadow: 0 0 10px #39ff14, 0 0 20px #39ff14;
  -webkit-text-stroke: 1px black;
}

.hero .tagline {
  font-family: 'Black Ops One', cursive;
  font-size: 2.8rem;
  margin-top: 20px;
  color: #fff;
  opacity: 0.95;
  -webkit-text-stroke: 1.2px black;
  text-shadow:
    2px 2px 2px #000,
    -2px -2px 2px #000,
    0 0 8px rgba(0, 0, 0, 0.8);
}


.hero p {
  font-family: 'Black Ops One', sans-serif;
  font-size: 2rem;
  margin-top: 10px;
  color: #fff;
  opacity: 0.85;
  text-shadow: 0 0 4px #000;
}

.scroll-indicator {
  margin-top: 40px;
  font-size: 2rem;
  animation: bounce 1.5s infinite;
  color: #fff;
  text-shadow: 0 0 4px #000;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

/* Intro Section */
.intro {
  padding: 80px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.intro h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #39ff14;
}

/* Content Sections */
.content-section {
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  max-width: 1200px;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.section-container.reverse {
  flex-direction: row-reverse;
}

.section-image {
  flex: 1 1 45%;
  min-width: 300px;
}

.section-image img {
  width: 100%;
  border-radius: 10px;
  border: 2px solid #333;
  box-shadow: 0 0 10px #000;
}

.section-text {
  flex: 1 1 45%;
  min-width: 300px;
}

.section-text h2 {
  font-size: 2.2rem;
  color: #39ff14;
  margin-bottom: 15px;
}

.section-text p {
  margin-bottom: 15px;
  color: #ddd;
}

/* Section Animation */
.section-fade {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Footer */
footer {
  text-align: center;
  padding: 30px;
  font-size: 0.9rem;
  background-color: #111;
  color: #666;
}

/* Media Queries */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 3.5rem;
  }

  .hero p {
    font-size: 1.2rem;
  }

  .section-container {
    flex-direction: column;
  }

  .section-container.reverse {
    flex-direction: column;
  }

  .section-text h2 {
    font-size: 1.8rem;
  }

  .intro h2 {
    font-size: 2rem;
  }
}
