.main-header {
  background-color: #000;
  padding: 1rem 2rem;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.logo img {
  height: 50px;
  margin-left: 0;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
}

nav ul li a:hover {
  color: #ff3b3b;
}



body {
  background-color: #000;
  color: white; 
}

/* photo-grid */
.photo-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.photo {
  width: 200px;
  height: auto;
  object-fit: cover;
  border-radius: 5px;
}

/* about section */
.about-section {
  padding: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

.red-box {
  background-color: #d20606;
  padding: .05rem;
  border-radius: 10px;
  margin: 2rem auto;
  max-width: 1300px;
  text-align: center;
  margin-bottom: 2rem;
}

.quote-box {
  background-color: #d20606;
  padding: 1.5rem 2rem;
  margin: 2rem auto;
  text-align: center;
  color: white;
  font-weight: bold;
  font-size: 1.5rem;
  max-width: 600px;
  border-radius: 10px;
  margin-bottom: 3rem;
  margin-top: 3rem;
}

.about-story-section .container,
.awards-section .container {
  text-align: center;
}


.award-text {
  text-align: center;
  margin-top: 1rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2rem;
}





/* Footer container layout */
.main-footer {
  background-color: #d20606;
  color: white;
  padding: 1.5rem 2rem;
  border-top: 3px solid black;
}

.footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

/* Left: Logo */
.footer-left img {
  height: 50px;
}

/* Center text */
.footer-center {
  flex: 1;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 500;
}

/* Right: Social Links */
.footer-right {
  display: flex;
  gap: 20px;
}

footer.main-footer a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
}

footer.main-footer a:hover {
  text-decoration: underline;
  color: #000;
}


/* Mobile Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-right {
    justify-content: center;
  }
}