* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #f6f4f1;
  color: #333;
}

/* UTIL */
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background: #7f5539;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  transition: 0.3s;
}

.btn:hover {
  background: #a68a64;
  transform: translateY(-3px);
}

/* NAVBAR */
.navbar {
  background: white;
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  color: #7f5539;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

/* hamburger */
#menu-toggle {
  display: none;
}

.menu-icon {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, #ede0d4, #f6f4f1);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero h1 {
  font-size: 2.8rem;
  animation: fade 1s ease;
}

.hero p {
  margin: 20px 0;
  animation: fade 1.4s ease;
}

.floating-circle {
  width: 120px;
  height: 120px;
  background: rgba(127,85,57,0.2);
  border-radius: 50%;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: float 4s infinite ease-in-out;
}

/* FEATURES / ABOUT */
.features {
  padding: 80px 0;
  text-align: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
  margin-top: 40px;
}

.card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-10px);
}

/* CTA */
.cta {
  background: #414833;
  color: white;
  padding: 80px 20px;
  text-align: center;
}

/* FOOTER */
footer {
  background: #222;
  color: white;
  padding: 20px;
  text-align: center;
}

/* ANIMATIONS */
@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, -15px); }
  100% { transform: translate(-50%, 0); }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .menu-icon {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background: white;
    flex-direction: column;
    width: 200px;
    padding: 20px;
    display: none;
  }

  #menu-toggle:checked + .menu-icon + .nav-links {
    display: flex;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }
}
