@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

:root {
  --primary: #ff9800;
}

/* RESET */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "League Spartan", system-ui, sans-serif;
}

/* =========================
   HERO SECTION
========================= */

.hero {
  position: relative;
  height: 100svh;                /* mobile-safe viewport */
  background: url("images/Landing-Page.jpg") center / cover no-repeat;
  overflow: hidden;              /* prevents mobile scroll */
}

/* CONTENT */
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 3.75rem 2rem 1.25rem;
}

.hero__content h1 {
  font-size: clamp(2.5rem, 5vw, 4.125rem);
  font-weight: 800;
  letter-spacing: 1px;
}

.hero__content p {
  font-size: clamp(1.7rem, 2.5vw, 3.125rem);
  margin: 0.3rem 0 2rem;
  font-weight: 600;
}

/* WHATSAPP BUTTON */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: 30px;
  text-transform: uppercase;
  background-color: #024879;
  color: #fff;
  text-decoration: none;
  padding: 10px 34px 10px 30px;
  border-radius: 50px;
  border-bottom: 5px solid #F88506;
  transition: background-color .2s ease, border-color .2s ease;
}

.btn-whatsapp:hover {
  background-color: #F88506;
  border-color: #024879;
}

/* =========================
   SINGLE IMAGE (BOTTOM)
========================= */

.hero__figure {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(920px, 96%);
  z-index: 2;
}

.hero__figure img {
  width: 100%;
  height: auto;
  max-height: 60svh;            /* 🔑 prevents scroll */
  object-fit: contain;
  display: block;
}

/* =========================
   NAME TAGS
========================= */

.name-tag {
  position: absolute;
  padding: .45rem 1.1rem;
  background: var(--primary);
  color: #fff;
  font-size: .85rem;
  font-weight: 700;
  border-radius: 4px;
  white-space: nowrap;
}

.name-tag.left {
  top: 20%;
  left: 0;
}

.name-tag.right {
  top: 60%;
  right: 0;
}

/* =========================
   MOBILE OPTIMIZATION
========================= */

@media (max-width: 768px) {

  .hero__content {
    padding: 3.25rem 1rem .5rem;
  }

  .btn-whatsapp {
    font-size: 22px;
    padding: 8px 20px;
  }

  .hero__content h1 {
    line-height: 2.2rem;
  }

  .hero__content p {
    margin: 1rem 0 1.5rem;
  }

  .name-tag {
    font-size: .75rem;
  }

  .name-tag.left,
  .name-tag.right {
    top: -10%;
  }
}

@media (max-width: 500px) {
  .name-tag.left,
  .name-tag.right {
    top: -18%;
  }
}