* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: Arial, sans-serif;
  background: #5a5a5a;
  color: #333;
  line-height: 1.6;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: #000000;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 10;
}

#navigation{
	margin: 0 auto;
	background-color:rgb(0, 0, 0);
}

.nav{
	display:inline;
    text-align: center;
}

.nav a{
    text-decoration: none;
    font-size:x-large;
	color:rgb(0, 0, 0);
	padding:5px;
    background-color:rgb(191, 248, 141) ;
}

.nav a:hover{
	background-color:#ffffff;
}

/* Logo */
.logo img {
  height: 100px;
}

.logo a {
  display: inline-block;
  text-decoration: none;
}

/* Form on top-right */
.signup-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.signup-form label {
  font-size: 0.85rem;
}

.signup-form input {
  padding: 0.4rem;
  font-size: 0.9rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 200px;
}

main {
    background: #fff;
    padding: 2rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    margin: 2rem auto;
    max-width: 1000px;
}

  .donate-title {
    text-align: center;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.donate-subtitle {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    text-align: center;
    color: rgb(97, 250, 97);
    font-weight: bold;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.section-title {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 1.25rem;
    font-weight: bold;
    margin: 1.5rem 0 0.5rem;
}

.section-text {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.4;
}

  /* Donation Blocks */
.donation-section {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.donation-block {
    flex: 1;
    padding: 1rem;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.donation-block.grey { background: #686868; }
.donation-block.green { background: #daffaa; }
.donation-block h3 {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.donation-block p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

  /* Options (radio) */
.options label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    cursor: pointer;
}

.options input {
    margin-left: 1rem;
}

  /* Details form */
.details-label {
    font-size: 0.85rem;
    font-weight: bold;
    margin: 1rem 0 0.5rem;
}

.details-table {
    width: 100%;
    border-collapse: collapse;
}

.details-table td {
    padding: 0.3rem;
    vertical-align: top;
}

.details-table input,
.details-table textarea,
.details-table select {
    width: 100%;
    padding: 0.4rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 0.9rem;
}

.details-table textarea {
    resize: vertical;
    height: 4rem;
}

  /* Proceed button */
.proceed-btn {
    float: right;
    margin-top: 1rem;
    padding: 0.6rem 1.2rem;
    background: #000000;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
}

.donation-block::after {
    content: "";
    display: block;
    clear: both;
}

  /* Responsive */
  @media (max-width: 800px) {
    .donation-section { flex-direction: column; }
}

  @media (max-width: 600px) {
    header { flex-direction: column; align-items: flex-start; }
    .signup-form input, .signup-form button { width: 100%; }
}

.options-multiple {
    margin-bottom: 1rem;
}

.options-multiple .option-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.4rem 0;
    border-bottom: 1px solid #ddd;
}

.options-multiple .option-label {
    flex: 2;
    font-size: 0.95rem;
}

.options-multiple .option-row label {
    flex: 1;
    text-align: center;
    font-size: 0.9rem;
}

.options-multiple .option-row label input {
    margin-right: 0.3rem;
}

.site-footer {
    background: #000;
    color: #fff;
    padding: 2rem 0;
}

.footer-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.footer-item {
    text-align: center;
    line-height: 1.5;
    font-size: 0.9rem;
}

.site-footer a {
    color: #fff;
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}