/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Tektur", sans-serif;
  background: #893518;
  color: #ffffff;
  line-height: 1.6;
}

/* NAV BUTTONS */
.nav-buttons {
  position: fixed;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 999;
}

.nav-buttons a {
  text-decoration: none;
  font-weight: 700;
  font-family: "Londrina Solid", sans-serif;
  background-color: #000;
  color: #fff;
  padding: 8px 15px;
  border-radius: 20px;
  transition: 0.3s;
}

.nav-buttons a:hover {
  background-color: #fff;
  color: #000;
}

/* HERO SECTION */
.hero {
  padding: 90px 20px;
  text-align: center;
}

/* image shared style */
.hero-image,
.section-image {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
}

.hero-image img,
.section-image img, .section-image video {
  width: 100%;
  max-width: 450px;
  border-radius: 20px;
  background: #fff;
  padding: 8px;
  border: 3px solid #ffdc18;
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-family: "Londrina Solid", cursive;
  color: #ffffff;
  -webkit-text-stroke: 4px #ffdc18;
}

.hero p {
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  margin: 10px auto;
  max-width: 600px;
}

/* CTA BUTTONS */
.cta {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.button {
  background: #ffdc18;
  color: #893518;
  padding: 14px 20px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  border: 3px solid #ffffff;
  transition: 0.2s;
}

.button:hover {
  background: #ffffff;
  color: #893518;
  border-color: #ffdc18;
  transform: translateY(-3px);
}

/* MAIN SECTIONS */
.heronomic {
  background: #ffffff;
  color: #893518;
  margin: 45px auto;
  padding: 60px 20px;
  width: 92%;
  max-width: 1100px;
  border-radius: 25px;
  border: 3px solid #ffdc18;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-family: "Londrina Solid", cursive;
  color: #ffdc18;
  -webkit-text-stroke: 2px #ffffff;
  margin-bottom: 12px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero {
    padding-top: 120px;
  }
}
