
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fffdf7;
  color: #333;
  line-height: 1.6;
}


header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f9f871;
  padding: 10px 20px;
  border-bottom: 3px solid #f4d03f;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.menu-logo {
  height: 60px;
}
nav {
  position: sticky;
  top: 0;
  width: 100%;
  background: linear-gradient(90deg, #f9f871, #ffe76a, #f4c23f);
  padding: 1rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 3px solid rgba(0,0,0,0.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 1000;
}
nav a {
  position: relative;
  text-decoration: none;
  color: #276b46;
  margin: 0 20px;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  padding-bottom: 5px;
  transition: color 0.3s ease;
}
nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 3px;
  background: #27ae60;
  border-radius: 3px;
  transition: width 0.3s ease-in-out;
}

nav a:hover,
nav a.active {
  color: #27ae60;
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}
nav a:hover {
  text-shadow: 0 0 8px rgba(39,174,96,0.6);
}

@media (max-width: 768px) {
  nav {
    flex-direction: column;
    padding: 1rem;
  }

  nav a {
    margin: 10px 0;
    font-size: 1.2rem;
  }
}

main {
  text-align: center;
  padding: 40px 20px;
}

main h1 {
  font-size: 2.5rem;
  color: #27ae60;
  margin-bottom: 15px;
  animation: fadeIn 1.2s ease-in;
}

main p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 20px auto;
}
.hero {
  width: 100%;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  margin: 20px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
footer {
  margin-top: 40px;
  padding: 2.5rem 1rem 1rem;
  width: 100%;
  text-align: center;
  color: #174d34;
  position: relative;
  background: linear-gradient(135deg, #f9f871, #ffd93d, #f9a825);
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  box-shadow: 0 -6px 20px rgba(0,0,0,0.15);
  overflow: hidden;
}
footer::before, footer::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
}
footer::before {
  background: #fff176;
  top: -80px;
  left: -60px;
}
footer::after {
  background: #ffb347;
  right: -70px;
  bottom: -60px;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  position: relative;
  z-index: 2;
}

.footer-brand h2 {
  font-size: 1.8rem;
  margin: 0;
  color: #276b46;
  font-weight: 900;
  letter-spacing: 1px;
}

.footer-brand p {
  margin: 5px 0;
  font-size: 1rem;
  font-weight: 600;
  color: #3a4e2f;
}

.footer-links {
  display: flex;
  gap: 1.8rem;
  margin: 0.8rem 0;
  flex-wrap: wrap;
}

.footer-links a {
  text-decoration: none;
  color: #174d34;
  font-weight: 600;
  transition: color 0.3s, transform 0.3s;
}

.footer-links a:hover {
  color: #fff;
  transform: scale(1.1);
  text-shadow: 0 0 12px rgba(255,255,255,0.8);
}

.footer-socials {
  display: flex;
  gap: 1.4rem;
  font-size: 1.6rem;
}

.footer-socials a {
  text-decoration: none;
  color: #276b46;
  transition: transform 0.3s ease, color 0.3s;
}

.footer-socials a:hover {
  color: #fff;
  transform: scale(1.3) rotate(10deg);
  text-shadow: 0 0 15px rgba(255,255,255,0.9);
}

.footer-quote {
  font-size: 1rem;
  font-style: italic;
  color: #37492e;
  opacity: 0.9;
}
.footer-bottom {
  font-size: 0.9rem;
  margin-top: 1rem;
  color: #264a2e;
  font-weight: 500;
}
hr {
  border: none;
  height: 2px;
  background: linear-gradient(to right, #f9f871, #27ae60);
  margin: 30px 0;
  opacity: 0.5;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  nav {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  nav a {
    margin: 10px 0;
  }

  main h1 {
    font-size: 2rem;
  }

  .menu-logo {
    height: 50px;
  }
}
