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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Kufi Arabic", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: larger;
  font-weight: 500;
  color: #ffffff;
}


/* START HEADER */
header {
  background-color: black;
  text-align: center;
  padding-block: 50px;
}

header img{
  height: 120px;
}

header p {
  color: #9ca3af;
}

/* ENDS HEADER */



/* START MAIN */
main {
  
}

.hero {
  background-color: #0A0E15;
  min-height: 20vh;
  padding: 100px 20px;
}

.hero h2 {
  margin-bottom: 50px;
}

.hero h3 {
  margin-bottom: 20px;
}




.content {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  justify-content: center;
}

.box {
  flex: 1;
  min-width: 200px;
  background-color: #202531;
  padding: 1rem;
  text-align: center;
  border-radius: 8px;
  transition: background-color 0.3s;
}

.box a {
  text-decoration: none;
  color: #22c55e;
}

.box p {
  color: whitesmoke;
  font-weight: 400;
}

.box:hover {
  background-color: #080d0b;
}


.second-hero {
  background-color: #202531;
  min-height: 20vh;
}


.third-hero {
  background-color: #37404F;
  min-height: 20vh;
}

.fort-hero {
  background-color: #4E5766;
  min-height: 20vh;
}

.support-section { 
  padding: 80px 20px; 
  background: #202531; 
  color: #f1f5f3; 
} 
.support-container { 
  max-width: 850px; 
  margin: auto; 
  text-align: center; 
} 
.support-icon { 
  width: 64px; 
  height: 64px; 
  margin: 0 auto 20px; 
  display: grid; 
  place-items: center; 
  border-radius: 18px; 
  background: rgba(34, 197, 94, 0.1); 
  border: 1px solid rgba(34, 197, 94, 0.25); 
  font-size: 28px; 
} 
.support-label { 
  display: inline-block; 
  margin-bottom: 14px; 
  color: #22c55e; 
  font-size: 14px; 
  font-weight: 700; 
} 
.support-section h2 { 
  margin: 0 auto 18px; 
  max-width: 700px; 
  font-size: clamp(28px, 5vw, 44px); 
  line-height: 1.35; 
} 
.support-section > .support-container > p { 
  max-width: 620px; 
  margin: 0 auto 35px; 
  color: #9ca3af; 
  font-size: 17px; 
  line-height: 1.9; 
} 
.donation-card { 
  max-width: 680px; 
  margin: auto; 
  padding: 25px; 
  background: #0d1511; 
  border: 1px solid #1d3325; 
  border-radius: 20px; 
  text-align: right; 
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25); 
} 
.donation-header { 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  margin-bottom: 18px; 
  font-weight: 700; } 
  .network { 
    padding: 5px 10px; 
    border-radius: 8px; 
    background: rgba(34, 197, 94, 0.12); 
    color: #22c55e; font-size: 12px; 
  } 
  .wallet-box { 
    display: flex; 
    gap: 10px; 
    align-items: center; 
    padding: 8px; 
    background: #070b09; 
    border: 1px solid #203127; 
    border-radius: 12px; 
  } 
  .wallet-box span { 
    flex: 1; 
    min-width: 0; 
    padding: 10px; 
    color: #b8c7be; 
    font-family: monospace; 
    font-size: 17px; 
    direction: ltr; 
    text-align: left; 
    overflow-wrap: anywhere; 
  } 
  .wallet-box button { 
    font-family: "Noto Kufi Arabic", sans-serif;
    border: 0; 
    padding: 10px 15px; 
    border-radius: 9px; 
    background: #22c55e; 
    color: #061009; 
    font-weight: 700; 
    cursor: pointer; 
    transition: 0.2s; 
  } 
  .wallet-box button:hover { 
    background: #16a34a; 
    transform: translateY(-1px); 
  } 
  .donation-card small { 
    display: block; 
    margin-top: 15px; 
    color: #718078; 
    line-height: 1.7; 
  } 
  .donation-card strong { 
    color: #22c55e; 
  } 
  .thank-you { 
    margin-top: 28px !important; 
    color: #22c55e !important; 
    font-size: 15px !important; 
  } 
  



/* ENDS MAIN */


/* START FOOTER */
footer {
  /* background-color: #667085; */
  background-color: #080d0b;
  text-align: center;
  font-weight: 400;
  padding: 4px;
  font-size: medium;
}

/* ENDS FOOTER */





/* Responsive: for tablets and below (≤ 768px) */
/* متجاوب: للأجهزة اللوحية وما دونها (≤ 768px) */

@media (max-width: 768px) {
  body {
    font-size: medium;
  }

  header {
    padding-block: 25px;
  }

  header img{
  height: 75px;
  }

  .hero {
  padding: 50px 10px;
  }
  .hero h2 {
  text-align: center;
  margin-bottom: 25px;
  }

  .hero h3 {
  text-align: center;
  margin-bottom: 10px;
  }

  .content {
  flex-direction: column;
  align-items: center;
  }

  .box {
    width: 90%;
  }

  .support-section { 
    padding: 60px 16px; 
  } 
  .donation-card { 
    padding: 18px; 
  } 
  .wallet-box { 
    flex-direction: column; 
    align-items: stretch; 
  } 
  .wallet-box button { 
    width: 100%; 
  }

  footer {
  font-size: small;
  }


}


/* Responsive: for phones (≤ 480px) */
/* متجاوب: للهواتف (≤ 480px) */

@media (max-width: 480px) {
  .box {
  font-size: 1rem;
  padding: 1.5rem;
 }
}

