@font-face {
      font-family: 'Dilemma bold';
      src: url('../fonts/dilemma-sans-bold.otf') format('truetype');
      font-style: normal;
    }
    
@font-face {
      font-family: 'Courier';
      src: url('../fonts/Courier Prime.ttf') format('truetype');
      font-style: normal;
    }

       * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
   
}

body {
  background: #1f2b1a;
  color: #f4f1e8;
}

/* OFFER STRIP */
.offer-strip {
  width: 100%;
  height: 6vh;
  background: #d9ad2b;
  color: #000;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
  font-family: 'Dilemma bold';
}

/* HEADER */
.header {
  height: 10vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5vw;
}

.nav {
  display: flex;
  gap: 2vw;
}

.nav a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
}

.logo img {
  height: 6vh;
}

/* HERO */
.hero {
  min-height: 80vh;
  display: flex;
  padding: 0vh 2vw;
  gap: 0vw;
}

/* TEXT SECTION */
.hero-text {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 2vh;
  
}

.hero-text h1{
       font-family: 'Dilemma bold';
}

.rating {
    font-family: 'Courier';
  font-size: 1rem;
  color: #f5c542;
}

.abhi {
     font-family: 'Courier';
}

.rating span {
  color: #fff;
  margin-left: 1vw;
}

.hero-text h1 {
  font-size: 3rem;
  line-height: 1.2;
}

.hero-text ul {
  list-style: none;
}

.hero-text li {
  font-size: 1.1rem;
  margin-bottom: 1vh;
}

.btn {
  margin-top: 2vh;
  width: fit-content;
  padding: 1em 2em;
  background: #f4f1e8;
  color: #000;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Dilemma bold';
}

/* IMAGE SECTION */
.hero-image {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  height: auto;
}

/* FOOTER */
.footer {
  height: 8vh;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 0.1rem solid #3a4a35;
  background: #000;
  font-family: 'Dilemma bold';
}

.footer a {
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {    

    .offer-strip {
        height: 8vh;
    }

  .header {
    flex-direction: column;
    height: auto;
    gap: 1rem;
            padding: 7px;
  }

  .hero {
    flex-direction: column;
  }

  .hero-text,
  .hero-image {
    width: 100%;
        padding: 15px 10px;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-image img {
    max-width: 80vw;
  }
}
