/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== FULL PAGE BACKGROUND IMAGE ===== */
body {
  background-image: url('../Folder.Images/USMC1.png'); /* Ensure this image is in the same directory as the HTML file */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  font-family: 'Segoe UI', sans-serif;
  color: #e0e0e0;
}

/* ===== NAVIGATION BAR STYLING ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #102234;
  color: white;
  padding: 20px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0, 255, 255, 0.1);
  box-sizing: border-box;
}

.logo {
  font-size: 1.5rem;
  font-weight: 600;
  color: #00fff7;
}

.nav-links a {
  margin-left: 30px;
  text-decoration: none;
  color: #cccccc;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #00fff7;
}

/* ===== ABOUT PAGE CONTENT ===== */
.about-container {
  background-color: rgba(55, 66, 78, 0.85); /* semi-transparent dark overlay */
  padding: 60px 20px;
  max-width: 1000px;
  margin: 120px auto 0 auto;
  border-radius: 12px;
  line-height: 1.7;
}

/* Headline Section */
.about-hero h1 {
  font-size: 2.5rem;
  color: #00fff7;
  margin-bottom: 10px;
}

.about-hero p {
  font-size: 1.2rem;
  color: #cccccc;
  margin-bottom: 40px;
}

/* Section Headings */
.about-details h2 {
  font-size: 1.8rem;
  color: #00fff7;
  margin-top: 40px;
}

/* Section Text */
.about-details p,
.about-details ul {
  font-size: 1rem;
  margin-top: 10px;
  color: #dddddd;
}

/* Bullet List */
.about-details ul {
  list-style-type: disc;
  padding-left: 20px;
}

/* ===== FOOTER ===== */
.site-footer {
  background-color: #0d1b2a;
  color: #cccccc;
  text-align: center;
  padding: 20px;
  margin-top: 60px;
  border-top: 1px solid #333;
}
