* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

body {
  background: #f0fdf4;
  font-family: system-ui, sans-serif;
  color: #064e3b;
  padding-top: 55px;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 55px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  z-index: 9999;
}

.logo {
  color: white;
  font-weight: bold;
}

.menu {
  display: flex;
  gap: 20px;
}

.menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-weight: 600;
  transition: 0.25s;
}

.menu a:hover {
  color: white;
}

.menu a.active {
  color: white;
}

.menu svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  opacity: 0.85;
  transition: 0.25s;
}

.menu a:hover svg {
  opacity: 1;
  transform: scale(1.1);
}

.hamburger {
  width: 28px;
  height: 20px;
  display: none;
  position: relative;
  cursor: pointer;
  z-index: 10001;
}

.hamburger span {
  position: absolute;
  width: 100%;
  height: 4px;
  background: white;
  transition: 0.3s;
  border-radius: 3px;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 8px;
}

.hamburger span:nth-child(3) {
  bottom: 0;
}

.hamburger.active span:nth-child(1) {
  top: 8px;
  transform: rotate(45deg) scale(1.1);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  bottom: 8px;
  transform: rotate(-45deg) scale(1.1);
}

.blur-bg {
  position: fixed;
  top: 55px;
  left: 0;
  width: 100%;
  height: 100vh;
  backdrop-filter: blur(6px);
  background: rgba(0,0,0,0.2);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
}

.blur-bg.show {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 768px) {

  .hamburger {
    display: block;
  }

  .menu {
    position: fixed;
    top: 55px;
    left: 0;
    width: 100%;
    background: #16a34a;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 25px 0;
    transform: translateY(-120%);
    opacity: 0;
    transition: 0.3s;
    z-index: 10000;
    pointer-events: none;
  }

  .menu.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
}

.slider {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

@media (min-width: 768px) {
  .slider {
    height: 320px;
  }
}

@media (min-width: 1024px) {
  .slider {
    height: 420px;
  }
}

.slides {
  display: flex;
  height: 100%;
  transition: transform 0.6s ease;
  will-change: transform;
}

.slides img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
  user-select: none;
  -webkit-user-drag: none;
}

.hero-intro {
  text-align: center;
  padding: 30px;
}

.aloha {
  font-size: 32px;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta {
  padding: 40px;
  text-align: center;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: white;
}

.btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 25px;
  background: white;
  color: #16a34a;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.25s;
}

.btn:hover {
  transform: translateY(-2px);
}

.about {
  padding: 50px;
  text-align: center;
  background: white;
}

.footer {
  text-align: center;
  padding: 20px;
  background: #064e3b;
  color: #bbf7d0;
}

a, button {
  outline: none;
}

a:focus,
a:active,
button:focus,
button:active {
  outline: none;
  box-shadow: none;
}