/* Basic reset stuff */
body, h1, h2, p, form, input, textarea, button {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* background setup */
body {
  background-image: url("https://st2.depositphotos.com/1032808/11499/v/600/depositphotos_114994202-stock-video-cat-and-dog-look-on.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center center;
  background-color: #ffffff;
  color: #333;
  line-height: 1.6;
}

/* Header */
header {
  background: linear-gradient(135deg, #ff7e6b, #f06c64);
  color: white;
  text-align: center;
  padding: 10px;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
}

header h1 {
  font-size: 45px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

/* Hero part */
.hero {
  text-align: center;
  padding: 40px;
  background-color: #fff0eb;
  border-bottom: 5px solid #ffd9cc;
}

.hero img {
  width: 90%;
  max-width: 900px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  margin-bottom: 20px;
}

.hero h2 {
  font-size: 35px;
  margin-top: 20px;
  color: #f06c64;
  font-weight: bold;
}

.hero p {
  font-size: 18px;
  max-width: 600px;
  margin: 15px auto;
  color: #555;
}

.hero button {
  background-color: #f06c64;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0px 4px 8px rgba(240, 108, 100, 0.3);
}

.hero button:hover {
  background-color: #e04f45;
  transform: translateY(-2px);
}

/* Content section */
section {
  padding: 30px;
  background: #fff;
  max-width: 600px;
  margin: 20px auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

section h2 {
  color: #f06c64;
  font-size: 28px;
  text-align: center;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 10px;
}

section h2:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -40px;
  width: 80px;
  height: 4px;
  background: #f06c64;
  border-radius: 2px;
}

section p {
  color: #555;
  font-size: 16px;
  margin-bottom: 20px;
}

/* Form Styling */
form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

label {
  font-weight: bold;
  color: #555;
}

input[type="text"],
input[type="email"],
input[type="date"],
input[type="time"],
textarea {
  padding: 12px;
  border: 2px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

input:focus,
textarea:focus {
  border-color: #f06c64;
  outline: none;
  box-shadow: 0 0 5px rgba(240, 108, 100, 0.2);
}

button[type="submit"] {
  padding: 12px;
  background: #4caf50;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0px 4px 8px rgba(76,175,80,0.3);
}

button[type="submit"]:hover {
  background-color: #3d9c40;
  transform: translateY(-2px);
}

/* Donate part */
#donate button {
  background-color: #ff9800;
  color: white;
  padding: 14px 25px;
  border-radius: 6px;
  font-size: 16px;
  margin: 20px auto 0;
  display: block;
  box-shadow: 0px 4px 8px rgba(255, 152, 0, 0.3);
}

#donate button:hover {
  background-color: #e88c00;
  transform: translateY(-2px);
}

/* Footer section */
footer {
  background: linear-gradient(135deg, #f06c64, #ff7e6b);
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
  font-size: 16px;
}

/* Mobile style */
@media screen and (max-width: 768px) {
  header h1 {
    font-size: 32px;
  }
  .hero h2 {
    font-size: 26px;
  }
  .hero img {
    width: 100%;
  }
  section {
    padding: 20px;
  }
}
