    @font-face {
  font-family: 'Rajdhani';
  src: url('../fonts/Rajdhani-Variable.ttf') format('truetype');
  font-style: normal;
}

:root {
      --primary-color: #000;
      --accent-color: #fff;
      --bg-color: #f9f9f9;
      --font-size-base: 1rem;
      --offer-bg: #58902f;
      --offer-text: #fff;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Rajdhani';
      background-color: var(--bg-color);
      line-height: 1.6;
      font-size: var(--font-size-base);
    }

    /* Offer Strip */
    .offer-strip {
      background-color: var(--offer-bg);
      color: var(--offer-text);
      text-align: center;
      padding: 1vh 2vw;
      font-size: 1.2rem;
    }

    @media (max-width: 768px) {
      .offer-strip {
        font-size: 0.9rem;
        padding: 1.2vh 4vw;
      }
    }

    /* Header */
    header {
            height: 12vh;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 2vh 5vw;
      position: relative;
      background-color: var(--accent-color);
    }

    .center-logo {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      width: 10.5rem;
      height: auto;
    }

    /* Hero */
    .hero {
width: 100%;
    height: 94vh;
    background-image: url(../../assets/images/deskm.webp);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    position: relative;
}

/* Mobile background image */
@media (max-width: 768px) {
  .hero {
    background-image: url("../../assets/images/deskd.webp");
  }
}


    .hero-text {
      position: absolute;
   top: 83.5%;
    left: 50%;
      transform: translateX(-50%);
      text-align: center;
      color: var(--accent-color);
      width: auto;
    }

    .hero-text h1 {
      font-size: 5vw;
      font-weight: bold;
      text-shadow: 0.1em 0.1em 0.3em rgba(0, 0, 0, 0.5);
    }

    .hero-text h2 {
      font-size: 2.5vw;
      margin-top: 1vh;
      font-style: italic;
      font-family: cursive;
    }

    .order-button {
      margin-top: 2vh;
      padding: 0.5em 1em;
      font-size: 1.75rem;
      background-color: #58902f;
      color: #fff;
      border: none;
      border-radius: 0.5em;
      cursor: pointer;
      transition: background-color 0.3s;
      font-weight: bold;
    }


   footer {
    background-color: #000;
    padding: 15px 10px;
    text-align: center;
}

footer a, footer a:hover {
    text-decoration: none;
    color: #ffffff;
    margin-bottom: 0px;
    font-size: 20px;
}

    @media (max-width: 768px) {
        
        header {
    height: 10vh;
    }
        
        .hero-text {
    top: 82%;
    left: 50%;
 }
      .hero-text h1 {
        font-size: 2.2rem;
      }

      .hero-text h2 {
        font-size: 1.2rem;
      }

      .order-button {
        font-size: 1.8rem;
        padding: 0.5em 0.5em;
        width: 28vh;
      }

      .logo,
      .center-logo {
        width: 45vw;
      }
    }