* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #ffffff;
  color: #2e4d2c;
  text-align: center;
  padding-bottom: 80px;
  overflow-x: hidden;   
}


.hero-wrapper {
  width: 100%;
  overflow: hidden;  
}

.hero-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* GALERI */
.gallery {
  padding: 0;
}

.grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;    
  gap: 0;
}

.grid img {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* CTA FIXED */
.cta-bar {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
}

.cta-bar a {
  background: #0a5a1c;
  color: white;
  padding: 14px 26px;
  border-radius: 20px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  display: inline-block;
  transition: 0.2s;
}

.cta-bar a:hover {
  background: #0c7a2a;
  transform: scale(1.04);
}

/* FOOTER */
footer {
  background: #eee;
  padding: 15px;
  font-size: 0.9rem;
}