/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f4f4f4;
  color: #333;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header Section */
header.cover {
  position: relative;
  width: 100%;
  height: 300px;
}

header .cover-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
}

header .cover-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 1;
}

header h1 {
  font-size: 3rem;
  font-weight: bold;
  text-transform: uppercase;
}

header h2 {
  font-size: 1.5rem;
  font-weight: 300;
}

header .btn-contact {
  padding: 12px 25px;
  background-color: #0056b3;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
}

header .btn-contact:hover {
  background-color: #004085;
}

/* Main Content */
main {
  flex-grow: 1;
  padding: 20px;
}

main .main-container {
  max-width: 1200px;
  margin: 20px auto;
  text-align: left;
}

main h1, main h3 {
  margin-bottom: 15px;
  color: #333;
}

main p, main ul li {
  margin-bottom: 10px;
  color: #555;
  font-size: 1rem;
}

/* Introduction Section */
.introduction {
  max-width: 700px;
  margin: 0 auto;
  padding: 20px;
  border: 1px solid #ddd;
  background-color: #f9f9f9;
  border-radius: 8px;
  text-align: left;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.introduction h2 {
  font-size: 1.8rem;
}

.introduction-paragraph {
  margin-bottom: 15px;
  line-height: 1.6;
}

/* Officers Section */
.officers-info {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.officers-info h1 {
  text-align: center;
  margin-bottom: 20px;
}

.officers-content {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.officers-text {
  flex: 1;
  margin-bottom: 5px;
}

.officers-text ul {
  padding-left: 50px;
}

.officers-text ul li {
  margin-bottom: 2px;
}

.officers-image img {
  max-width: 100%;
  height: auto;
  flex: 0 0 auto;
  margin-top: 20px;
}

.officers-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

/* Tier List */
.tier-descriptions {
  padding: 30px;
  border: 2px solid #ddd;
  border-radius: 10px;
  background-color: #f9f9f9;
  margin-bottom: 30px;
}

.tier-list {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.tier-list > div {
  flex: 1;
  text-align: center;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.tier-list img {
  max-width: 80%;
  border-radius: 8px;
  margin-top: 20px;
}

.tier-item h3 {
  margin-top: 0;
}

.tier-item p {
  margin-bottom: 20px;
}

/* Footer */
.footer {
  background-color: #333;
  color: #fff;
  padding: 20px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-address p, .footer-copyright {
  font-size: 0.9rem;
}

/* Contact Page */
.contact-section {
  max-width: 800px; /* Adjusted to single column */
  margin: 40px auto;
  padding: 20px;
}

.contact-content {
  display: block; /* Single column */
}

.contact-blurb {
  margin-bottom: 20px;
}

.contact-form {
  margin-bottom: 20px;
}

.contact-form h2, .contact-blurb h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.contact-form .form-group {
  margin-bottom: 15px;
}

.contact-form label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}

.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-form select {
  width: 100%;
  padding: 12px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #f9f9f9;
}

.contact-form button {
  padding: 12px 25px;
  background-color: #007BFF;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #0056b3;
}

@media (max-width: 768px) {
  .contact-content {
      display: block;
      width: 100%;
  }

  .contact-blurb, .contact-form {
      max-width: 100%;
      margin-bottom: 20px;
  }
}


/* General Navbar Styling */
.navbar {
  background-color: #333;
  display: flex;
  align-items: center;
  padding: 10px 20px;
  justify-content: space-between;
}

/* Navbar Logo */
.navbar-logo {
  height: 50px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
}

/* Navbar Menu */
.navbar-menu {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.navbar-menu li {
  margin-left: 20px;
}

.navbar-link {
  text-decoration: none;
  color: white;
  font-size: 16px;
  font-weight: bold;
  transition: color 0.3s;
}

.navbar-link:hover {
  color: #f0a500;
}

@media (max-width: 768px) {
  .navbar {
      flex-direction: column;
      align-items: flex-start;
  }
  
  .navbar-menu {
      flex-direction: column;
      width: 100%;
  }

  .navbar-menu li {
      margin: 10px 0;
  }
}
