@charset "UTF-8";
/* CSS Document */
/* ===== GLOBAL STYLES ===== */
body {
  font-family: "EB Garamond", sans-serif;
  margin: 0;
  background-color: #000000;
  color: #fff;
  scroll-behavior: smooth;
}

h1, h2, h3 {
	font-family: "EB Garamond";
  color: #F2DBF8;
}
h2 {font-size: 40px;}
h1 {font-size: 80px;}

a {
  text-decoration: none;
	color:#b57aff;
}

/* ===== NAVBAR ===== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #5D3F84;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.pic1 {align-content: center;}


.logo {
  display: flex;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links li a {
  color: #f0f0f0;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #b57aff;
}

/* ===== HAMBURGER MENU ===== */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle .bar {
  width: 25px;
  height: 3px;
  background-color: #fff;
  border-radius: 3px;
}

/* ===== HERO SECTION ===== */
.hero {
  background:  
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}


.hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}


.hero-content p {
  max-width: 100%;
  margin: 0 auto 2rem;
  color: #ffffff;
}

/* ===== BUTTONS ===== */
.btn-primary {
  background-color: #5D3F84;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  border: none;
  transition: background 0.3s;
}

.btn-primary:hover {
  background-color: #8a4fff;
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid #b57aff;
  color: #b57aff;
  padding: 0.7rem 1.4rem;
  border-radius: 25px;
  transition: all 0.3s;
}

.btn-secondary:hover {
  background-color: #b57aff;
  color: #fff;
}

/* ===== SECTIONS ===== */
section {
  padding: 4rem 2rem;
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.donation-form,
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.donation-form input,
.donation-form select,
.donation-form textarea,
.contact-form input,
.contact-form textarea {
  padding: 0.8rem;
  border-radius: 8px;
  border: none;
  background-color: #1f1f1f;
  color: #fff;
}

.donation-form select {
  background-color: #1f1f1f;
  color: #fff;
}


textarea {
  resize: none;
}

/* ===== FOOTER ===== */
footer {
  background-color: #000000;
  text-align: center;
  padding: 1rem 0;
  color: #aaa;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background-color: #1a1a1a;
    flex-direction: column;
    width: 200px;
    display: none;
    border-left: 2px solid #b57aff;
  }

  .nav-links li {
    text-align: center;
    margin: 1rem 0;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links.active {
    display: flex;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1rem;
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }

  .btn-primary, .btn-secondary {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }

  section {
    padding: 3rem 1rem;
  }
}


