/* === Base === */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #f8f7f4;
  color: #000;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* === Navbar === */
.navbar {
  width: 100%;
  padding: .5rem .5rem .5rem;
  text-align: center;
}

.logo {
  font-weight: 700;
  font-size: 3rem;
  color: #004f3d;
  letter-spacing: 0.6px;
}

/* === Hero Section === */
main {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 1rem;
}

.hero {
  text-align: center;
  max-width: 720px;
  width: 100%;
  padding: 2rem;
  box-sizing: border-box;
}

.hero-image {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
  margin-bottom: 2rem;
}

.tag {
  background-color: #dff3ea;
  color: #004f3d;
  border-radius: 999px;
  padding: 0.6rem 1.4rem;
  font-size: 0.95rem;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.tag a {
  color: #004f3d;
  text-decoration: underline;
}

h1 {
  font-size: 2.6rem;
  font-weight: 800;
  margin: 0.7rem 0 1rem;
  line-height: 1.3;
  color: #000;
}

.subtitle {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* === Social === */
.social {
  margin-top: 1.5rem;
}

.social p {
  margin-bottom: 0.5rem;
  color: #444;
  font-size: 1rem;
}

.icons {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
}

.icons a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.95rem;
  text-decoration: none;
  color: #004f3d;
  font-weight: 500;
}

.icons img {
  width: 22px;
  height: 22px;
  opacity: 0.85;
  transition: opacity 0.3s;
}

.icons img:hover {
  opacity: 1;
}

/* === Footer === */
footer {
  text-align: center;
  padding: 1.5rem 1rem;
  font-size: 0.9rem;
  color: #666;
  flex-shrink: 0;
}

/* === Responsive === */
@media (max-height: 800px) {
  h1 {
    font-size: 2.2rem;
  }
  .hero {
    padding: 1rem;
  }
  .hero-image {
    margin-bottom: 1.5rem;
  }
}
