:root {
  --white: #ffffff;
  --porcelain: #fffefc;
  --black: #000000;
  --nav: #333;

  --rougue: #f26b8a;
  --punch: #f25278;
}

@font-face {
  font-family: "NexaHeavy";
  src: url("fonts/Nexa-Heavy.ttf") format("truetype");
  font-weight: 900;
}
@font-face {
  font-family: "NexaLight";
  src: url("fonts/Nexa-ExtraLight.ttf") format("truetype");
  font-weight: 200;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Times New Roman", serif;
}

body.index {
  .hero {
    height: 420px;
    background: url("hero.jpg") center/cover no-repeat;
    background-position: center 70%; /* ← Moves image DOWN */
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-box {
    background: rgba(255, 255, 255, 0.8);
    padding: 30px 60px;
    font-size: 24px;
    letter-spacing: 3px;
  }

  /* PRODUCTS */
  .section {
    max-width: 1200px;
    margin: 60px auto;
  }

  .section-title {
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 2px;
  }

  .products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }

  .product {
    background: var(--white);
    padding: 10px;
    text-align: center;
  }

  .product img {
    width: 100%;
    height: 230px;
    object-fit: cover;
  }

  .product h3 {
    margin: 10px 0;
    font-size: 18px;
  }

  .product p {
    color: #a67c52;
  }

  .product button {
    margin-top: 10px;
    padding: 8px 18px;
    border: none;
    background: #a67c52;
    color: white;
    cursor: pointer;
  }
}

/* ========== NAVIGATION ========== */
.navbar {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;

  .logo {
    color: var(--nav);
    font-family: "NexaHeavy", Arial !important;
    font-size: 30px !important;
  }

  .nav-links a {
    color: var(--nav);
    margin: 0 15px;
    text-decoration: none !important;
    font-family: "NexaLight", Arial !important;
    font-size: 16px !important;
  }
  .nav-links a:hover {
    color: var(--punch);
  }
}

footer {
  background-color: transparent;
  color: var(--nav);
  text-align: center;
  padding: 28px;
  font-size: 12px;
  margin-top: auto;
}
