body{
    background-image:url("/Image_about/yellow_background.png");
    background-size: cover;
    background-position: center;
}

#adopt_form{
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    background-color: wheat;

    height: 110vh;
    width: 50vw;

    margin: 30px auto;
    padding: 30px;
}

@media (max-width:768px) {
    #adopt_form{
        width: 90vw;
        height: 140vh;
        margin: 10px auto;
        padding: 10px;
    }
}

        label{
            display:block;
            color:#5a4428;
            margin-bottom: 8px;
            font-weight: bold;
        }

        input[type="text"],input[type="email"],textarea{
            width: 90%;
            margin-bottom:10px;
            padding: 10px 14px;
            border-radius: solid 5px #ccc;
            border-radius: 8px;
            background-color: #fffef9;
            transition: all 0.3s;

        }

        input:hover,
        textarea:hover {
            outline: none;
            border-color: #c89b3c;
            background-color: beige; /* 聚焦时高亮为金色 */
        }

        button{
            display: block;
            margin: auto;
            padding: 20px;
            border-radius: 6px;
            font-size: 16px;
            width: 40%;
            background-color: white;
            color: black;
            transition: all 0.3s ease-in-out;
        }

        button:hover{
            transform: scale(1.05);
            background-color: #c89b3c;
            color: greenyellow;
            cursor: pointer;
            
        }

        button:focus{
            background-color: #c89b3c;
            color: greenyellow;
            transform: scale(1.05,1.05);
        }

#notification{
    border-radius: 12px;
    
    text-align: center;

    padding: 30px;
    margin: 20px auto;

    display: none;

    width: 30vw; /*30% of the screen weidth*/
    height: 10vh;
}


/* ====== Donation Intro（捐款区块） ====== */
#donation_intro{
  max-width: 960px;
  margin: 24px auto 48px;
  padding: 0 16px;
}

.donation-card{
  background: linear-gradient(to bottom right, #fff7e0, #ffe6bd);
  border: 1px solid rgba(200,155,60,0.25);
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  padding: 28px;
}

.donation-card h2{
  color: #5a4428;
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: .5px;
}

.donation-card p{
  color: #4a3a22;
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 18px;
}

.donation-actions{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* 主按钮：捐款 */
.donate-button{
  display: inline-block;
  padding: 14px 22px;
  border-radius: 10px;
  background-color: #c89b3c;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
  box-shadow: 0 6px 14px rgba(200,155,60,0.35);
}

.donate-button:hover{
  background-color: #b5852d;
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(200,155,60,0.4);
}

/* 次按钮：返回认养表单 */
.adopt-cta{
  display: inline-block;
  padding: 14px 22px;
  border-radius: 10px;
  background-color: #fff;
  color: #5a4428;
  text-decoration: none;
  font-weight: 700;
  border: 2px solid #c89b3c;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
}

.adopt-cta:hover{
  background-color: #fff7e0;
  color: #4a3a22;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.08);
}

/* 移动端适配：表单高度别太高，捐款卡片内边距略减 */
@media (max-width: 768px){
  #adopt_form{
    height: auto; /* 不强制 140vh，避免小屏挤压 */
  }
  .donation-card{
    padding: 20px;
  }
}


footer {
            text-align: center;
            margin-top: 30px;
            color: black;
            font-size: 14px;
            margin-bottom:30px;
        }


