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

body, html {
  height: 100%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  overflow-x: hidden;
  overflow-y: auto;
}

/* BACKGROUND IMAGE WITH FALLBACK AND ANIMATION */
body {
  background: url('overview1.png') no-repeat center center fixed, linear-gradient(to bottom, #000000, #1a1a1a);
  background-size: cover;
  position: relative;
  animation: sunrise 20s infinite linear;
}

@keyframes sunrise {
  0% { background-color: rgba(0, 0, 0, 0.6); }
  50% { background-color: rgba(26, 26, 26, 0.6); }
  100% { background-color: rgba(0, 0, 0, 0.6); }
}

/* HEADER MENU */
.site-header {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
}

.menu {
  position: relative;
  display: inline-block;
}

.menu-button {
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  padding: 12px 18px;
  font-size: 18px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.menu-button:hover {
  background-color: rgba(0, 0, 0, 0.9);
}

.menu-content {
  display: none;
  position: absolute;
  top: 45px;
  right: 0;
  background-color: rgba(0, 0, 0, 0.95);
  flex-direction: column;
  border-radius: 5px;
  min-width: 200px;
  z-index: 1001;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.menu-content a {
  padding: 12px 18px;
  color: white;
  text-decoration: none;
  display: block;
  white-space: nowrap;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.menu-content a:hover {
  background-color: #ffd700;
  color: #1a1a1a;
}

/* HERO SECTION */
.hero {
  position: relative;
  width: 100%;
  text-align: center;
  color: white;
  padding: 100px 20px;
  z-index: 1;
}

.content-container {
  display: inline-block;
  padding: 30px 50px;
  max-width: 800px;
  position: relative;
  z-index: 2;
}

.gradient-title {
  font-size: 4em;
  font-weight: bold;
  font-family: 'Cinzel', 'Segoe UI', sans-serif;
  color: #000000; /* Changed to black */
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.7); /* White shadow for contrast */
  position: relative;
  z-index: 2;
}

.hero-text {
  font-size: 1.4em;
  color: #000000; /* Changed to black */
  margin: 20px 0;
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.7); /* White shadow for contrast */
  line-height: 1.6;
}

/* ABOUT US SECTION */
.about-us {
  max-width: 800px; /* Constrain text width */
  margin: 0 auto; /* Equal margins on both sides */
  padding: 40px 20px; /* Vertical and horizontal padding */
  text-align: center; /* Center text within the constrained width */
}

.about-text {
  font-size: 1.2em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #000000; /* Changed to black */
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.7); /* White shadow for contrast */
}

/* DONATE SECTION */
.donate {
  max-width: 800px; /* Match about-us width for alignment */
  margin: 0 auto; /* Center the section */
  display: flex; /* Use Flexbox to center the button */
  justify-content: center; /* Horizontally center */
  align-items: center; /* Vertically center */
  padding: 20px; /* Add padding for spacing */
}

.cta-button {
  padding: 15px 30px;
  background-color: #ffd700;
  color: #1a1a1a;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  pointer-events: auto;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #e6c200;
  transform: scale(1.05);
}

/* LOGO */
.peace-logo {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 100px;
  height: auto;
  z-index: 2;
}

/* FOOTER */
.site-footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  text-align: center;
  color: white;
  font-size: 0.9em;
  padding: 10px 0;
  z-index: 1;
}

.site-footer p {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .gradient-title {
    font-size: 2.8em;
  }
  .hero-text {
    font-size: 1.2em;
  }
  .about-text {
    font-size: 1em;
  }
  .cta-button {
    padding: 12px 25px;
    font-size: 16px;
  }
  .content-container {
    padding: 20px;
  }
  .about-us {
    padding: 20px;
  }
  .donate {
    padding: 20px;
  }
}