html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f8e3b5;
  color: #333;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

header {
  background-color: #d28f1a;
  color: white;
  padding: 20px;
  text-align: center;
  animation: fadeIn 1s ease-in;
}

header img {
  width: 100px;
  margin-bottom: 10px;
}

nav {
  background: #bf7f11;
  padding: 10px;
  text-align: center;
  animation: fadeIn 1s ease-in 0.3s;
  animation-fill-mode: both;
}

nav a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: color 0.3s, transform 0.3s;
}

nav a:hover {
  color: #ffe8c1;
  transform: scale(1.05);
}

.hero {
  padding: 60px 20px;
  background: #fff0d9;
  text-align: center;
  animation: fadeIn 1s ease-in 0.6s;
  animation-fill-mode: both;
}

.hero h2 {
  font-size: 2.5em;
}

.hero p {
  font-size: 1.2em;
}

.button {
  background-color: #d28f1a;
  color: white;
  border: none;
  padding: 12px 24px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 1em;
  font-weight: bold;
  margin: 10px 5px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.button:hover {
  background-color: #bf7f11;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

main {
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
  animation: fadeIn 1s ease-in 0.9s;
  animation-fill-mode: both;
}

#backToTop {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: #d28f1a;
  color: white;
  cursor: pointer;
  padding: 12px 16px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: background-color 0.3s, transform 0.3s;
}

#backToTop:hover {
  background-color: #bf7f11;
  transform: translateY(-2px);
}

footer {
  background: #d28f1a;
  color: white;
  text-align: center;
  padding: 15px;
  position: relative;
  bottom: 0;
  width: 100%;
  animation: fadeIn 1s ease-in 1.2s;
  animation-fill-mode: both;
}

@media (max-width: 768px) {
  header img {
    width: 80px;
  }

  nav a {
    display: block;
    margin: 10px 0;
  }

  .hero h2 {
    font-size: 2em;
  }

  .hero p {
    font-size: 1em;
  }

  main {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  header img {
    width: 60px;
  }

  .hero h2 {
    font-size: 1.5em;
  }

  .hero p {
    font-size: 0.95em;
  }
}