/* style.css */
body {
  background-color: #7a646c;
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
  color: #553d2a;
}

.container {
  width: 80%;
  max-width: 1200px;
  margin: 24px auto 0;
}

/* Banner Section */
.banner {
  background-color: #ede9e7;
  padding: 20px;
  text-align: left;
}

.banner img {
  max-width: 100%;
  height: auto;
}

/* Navigation Section */
.nav {
  background-color: #694545;
  padding: 12px 24px;
}

h2 {
  line-height: 130%;
}

.nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 30px;
  justify-content: flex-start;
}

.nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
}

/* Main Content Section */
.main-content {
  background-color: #e9d5ca;
  background-size: cover;
  background-position: center;
  padding: 20px 50px;
}

.content-columns {
  display: flex;
  gap: 40px;
}

.column {
  flex: 1;
  min-width: 0;
}

.text {
  text-align: justify;
  font-size: 1.2em;
  line-height: 1.5;
}

.quote {
  color: #663333;
  font-style: italic;
}

/* Image Styling */
.content-image {
  max-width: 100%;
  height: auto;
  margin: 20px 0;
}

/* Copyright Section */
.copyright {
  background-color: #e9d5ca;
  text-align: center;
  padding: 15px;
}

.copyright a {
  color: #694545;
  text-decoration: none;
  margin: 0 10px;
  font-size: 1.1em;
}

.spacer {
  margin: 40px 0;
}

.contributors {
  list-style: none;
  padding-left: 0;
  font-size: 1.2rem;
  line-height: 120%;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.center {
  align-items: center;
}

.center .column img {
  margin: 0 auto;
  display: block;
}

a {
  transition: 0.2s;
}

a:hover {
  opacity: 0.7;
}

a:active {
  opacity: 0.75;
}

a.text,
.text a {
  color: #cd4c6d;
}

.donate_button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  background: linear-gradient(135deg, #e28db5 0%, #f27f81 100%);
  border: none;
  border-radius: 32px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-top: 1.5rem;
  box-shadow: 0 4px 15px rgba(242, 127, 129, 0.3);
  text-decoration: none;
  transform: scale(1);
  margin: 24px auto 0;
  display: block;
  text-align: center;
  width: fit-content;
}

.donate_button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(242, 127, 129, 0.4);
  letter-spacing: 1.2px;
  opacity: 1;
  transform: scale(1.05) !important;
}

.donate_button:active {
  transform: translateY(1px);
  box-shadow: 0 3px 10px rgba(242, 127, 129, 0.2);
}

.donate_button::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s;
}

.donate_button:hover::after {
  left: 100%;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.donate_button.pulse {
  animation: pulse 4s infinite;
}
h3,
h2 {
  color: #694545;
  font-size: 2rem;
  border-bottom: 3px solid #e38db6;
  display: inline-block;
  margin-bottom: 0;
}

h3 {
  font-size: 1.4rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    width: 95%;
  }

  .nav ul {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .main-content {
    padding: 20px;
    margin: 0;
  }

  .content-columns {
    flex-direction: column;
    gap: 30px;
  }

  .text {
    font-size: 1.1em;
  }
}
