/* Global Box-Sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Base Styles */
body {
  background: linear-gradient(180deg, #0a0a0a, #004d00);
  color: white;
  font-family: 'Courier New', monospace;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  text-align: center;
}

/* Headings */
h1, h2 {
  text-shadow: 0 0 5px white;
  margin-bottom: 20px;
}

/* Navigation */
nav ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}
nav ul li {
  /* Gap handles spacing */
}
nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: text-shadow 0.3s ease;
}
nav a:hover {
  text-shadow: 0 0 10px white;
}

/* Email Link */
.email-link {
  color: white;
  text-decoration: none;
}
.email-link:hover {
  text-shadow: 0 0 10px white;
}

/* Background Static Scanline Overlay */
.background-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.1) 0px,
    rgba(255, 255, 255, 0.05) 2px,
    transparent 4px
  );
  z-index: -1;
  pointer-events: none;
  /* Animation removed to keep background static */
}

/* Section Container */
section {
  width: 90%;
  max-width: 800px;
  margin: 50px auto;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
  min-height: 150px;
}

/* Footer */
footer {
  margin-top: 60px;
  padding: 20px 0;
}
footer img {
  display: block;
  margin: 10px auto;
  max-width: 100px;
}

/* Services Buttons */
.services-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.service-btn {
  display: inline-block;
  padding: 15px 25px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  color: #00ff00;
  border: 2px solid #00ff00;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
  min-width: 220px;
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease;
  max-width: 100%;
  overflow: hidden;
}
.service-btn:hover {
  background: #00ff00;
  color: black;
  box-shadow: 0 0 20px #00ff00;
  transform: scale(1.1);
}

/* Highlights Section */
.highlights-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
}
.highlights-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 300px;
  padding: 20px;
  text-decoration: none;
  color: #00ff00;
  font-size: 18px;
  font-weight: bold;
  border: 2px solid #00ff00;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
  transition: transform 0.3s ease, background 0.3s ease;
  text-align: center;
}
.highlights-btn:hover {
  background: #00ff00;
  color: black;
  box-shadow: 0 0 20px #00ff00;
  transform: scale(1.05);
}
.highlights-btn img {
  display: block;
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 10px;
}
.highlights-btn span {
  display: block;
  margin-top: 5px;
  font-size: 16px;
  color: white;
}

/* Responsive Tweaks */
@media (max-width: 600px) {
  nav ul {
    gap: 10px;
  }
  .service-btn {
    min-width: auto;
    width: 100%;
    font-size: 16px;
  }
  .highlights-btn {
    width: 90%;
    margin: 0 auto;
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

