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

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: #fff;
  color: #000;
}

/* Header styles */
header {
  background-color: #004aad;
  color: white;
  padding: 10px 20px;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.header-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.header-logo img {
  max-height: 80px;
  height: auto;
  width: auto;
}

.light-bar {
  max-width: 150px;
  height: auto;
}

/* Navigation styles */
nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  padding: 15px 0;
  background-color: #004aad;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  padding: 8px 10px;
  transition: color 0.3s;
}

nav a:hover {
  color: #ffd700;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: white;
  cursor: pointer;
}

/* Main content */
main {
  padding: 20px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* Center images */
.center-image {
  text-align: center;
  margin: 20px 0;
}

.center-image img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}

/* PayPal donation button */
.donate-button {
  display: inline-block;
  background-color: #ffc439;
  color: #111;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s;
  margin-top: 20px;
}

.donate-button:hover {
  background-color: #e0b52f;
}

/* Responsive styles */
@media (max-width: 768px) {
  .header-top {
    flex-direction: column;
    align-items: center;
    position: relative;
  }

  .menu-toggle {
    display: block;
    align-self: flex-end;
    margin-bottom: 10px;
    font-size: 2rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
  }

  .light-bar,
  .header-logo {
    margin: 5px 0;
  }

  .light-bar {
    max-width: 120px;
  }

  nav {
    display: none;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  nav.show {
    display: flex;
  }
}
