@font-face {
  font-family: 'BourbonGrotesque';
  src: url('../fonts/bourbon-grotesque.otf') format('opentype');
  font-style: normal;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: 'BourbonGrotesque';
}

/* OFFER STRIP */
.offer-strip{
    width:100%;
    background:#7b3000;
    padding:0.5rem 0;
    text-align:center;
    font-size:1rem;
    color: #fff;
    font-weight:100;
}

/* LOGO SECTION */
.logo-bar{
    width:100%;
    padding:1vh 0;
    display:flex;
    justify-content:center;
    align-items:center;
    background: #eaa918;
    border: 3px solid #7b3000;
}
.logo-bar img{
    width: 7vw;
    max-width: 250px;
}

/* MAIN SECTION */
.main-section{
    height: 90vh;
    display:flex;
    flex-direction:row;
    justify-content:space-between;
    align-items:center;
    padding: 0vh 0vw;
    gap:0vw;
}

    .prass{
        text-transform: uppercase;
        color: #7b3000;
}

/* TEXT SECTION */
.text-box{
    width:50%;
    background: #eaa918;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 3px solid #7b3000;
}

.text-box h1 {
        font-weight: bold;
        color: #7b3000;
}

.section-wrapper h1 {
  font-size: 50px;
  font-weight: 900;
  margin: 20px 0 40px;
  line-height: 1.1;
}

/* ---------- FEATURE BOXES ---------- */
.features {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.feature-box {
  width: 150px;
  border: 4px solid #552800;
  padding: 25px 10px;
  background: #ffd9a0;
  display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.feature-box img {
  width: 45px;
  margin-bottom: 15px;
}

.feature-box p {
  margin: 0;
  font-weight: bold;
  font-size: 15px;
  color: #7b3000;
}

/* ---------- BUY BUTTON ---------- */
.buy-btn {
  display: inline-block;
  background: #f15a24;
  color: #fff;
  font-size: 24px;
  padding: 18px 60px;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 6px 6px 0 #8a3b00;
}

/* ---------- GUARANTEE ---------- */
.guarantee {
  margin-top: 25px;
  font-size: 18px;
  font-weight: 600;
  color: #7b3000;
  padding: 10px;
}

.guarantee span.bold {
  font-weight: 900;
}

/* IMAGE SECTION */
.image-box{
    width:50%;
    height: 100%;
    border: 3px solid #7b3000;
}
.image-box img{
    width:100%;
    height: 100%;
    border-radius:0rem;
        object-fit: cover;
}

/* --------------------
   MOBILE RESPONSIVE
--------------------- */
@media(max-width:768px){

    .logo-bar img {
        width: 20vw;
        max-width: 250px;
    }

    .main-section{
        flex-direction:column;
        text-align:center;
        height: 150vh;
    }

    .text-box{
        width: 100%;
        padding: 20px;
        height: 100vh;
    }

    .image-box {
        width: 100%;
        height: 50vh;
    }

    .text-box h1{
        font-size: 1.7rem;
        width: 100%;
    }



    .sejal {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }

    .text-box p{
        font-size:1rem;
    }

    .feature-box {
    width: 48%;
    margin-bottom: 15px;
            height: 40%;

  }

  .buy-btn {
    width: 100%;
  }

  .features {
    margin-bottom: 0px;
}
}

/* NEW MEDIA QUERY: 375px to 768px */
@media (min-width:376px) and (max-width:768px) {

    .main-section{
        height: 125vh;
    }
    .text-box {
        width: 100%;
        padding: 20px;
        height: 75vh;
    }

}

/* Footer */
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;
}
