@font-face {
    font-family: montserratfont;
    src: url('../fonts/montserrat.ttf');
}

@font-face {
    font-family: teko;
    src: url('../fonts/teko.ttf');
}

@font-face {
    font-family: abangfashion;
    src: url('../fonts/abangfashion.otf');
  }

:root {
    --primary-color: #F9B233;
    --text-color: #FFFFFF;
    --bg-color: rgba(0, 0, 0, 0.7);
    --font-title: 'abang';
    --font-body: 'montserratfont';
    --font-button: 'teko';
    --font-b: 'abangfashion';
}

 *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
 }

body, html {
   width: 100%;
    height: 100%;
    font-family: var(--font-body);
}

.section-title {
    text-align: center;
    font-size: 3.5rem;
    font-weight: bold;
    color: #000000;
    margin-bottom: 30px;
    text-transform: uppercase;
    background-color: orange;
    margin: auto;
    display: block;
    border-radius: 20px;
    width: 40%;
    font-family: var(--font-b);
    padding: 0px 5px;
}
    .package-wrapper {
     
      padding: 20px;
     
      border-radius: 10px;
     
      margin-bottom: 20px;
    }
    /* .package-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background-color: #fef3d6;
      padding: 10px 15px;
      border-radius: 5px;
      margin-bottom: 10px;
    } */
    .package-header {
      display: flex;
      align-items: center;
      margin-bottom: 15px;
    
      background-color: #fef3d6;
      padding-bottom: 10px;
      padding-left: 20px;
      padding-right: 30px;
    }
    
    .price {
      font-size: 1.5rem;
      font-weight: bold;
      /* color: #fdb913; */
    }
    .item-list {
      list-style-type: none;
      padding: 0;
      margin: 0;
    }
    .item-list li {
      font-size: 1rem;
      line-height: 1.8;
      display: flex;
      justify-content: space-between;
    }
    .background-pattern {
        background-image: url('/assets/frontend/img/pattern.png'); /* No Blade syntax here */
      background-size: contain;
      background-repeat: repeat;
      min-height: 100vh;
    }
    @media (max-width: 768px) {
      
      .price {
        margin-top: 10px;
      }
      
      /*section title */
      .section-title {
  text-align: center;
  font-size: 0rem;
  font-weight: bold;
  color: #000000;
  margin-bottom: 30px;
  text-transform: uppercase;
  background-color: orange;
  margin: auto;
  display: block;
  border-radius: 20px;
  
  font-family: var(--font-b);
  padding: 0px 5px;
}

.background-pattern {
  background-image: url('/assets/frontend/img/pattern.png');
  background-size: contain;
  background-repeat: repeat;
  min-height: 15vh;
}

    }

    .vertical-divider {
      width: 4px;
      height: 50px;
      background-color: #080808;
      margin: 0 15px;
    }

    .package-title {
      flex: 1;
      font-size: 1.8rem;
      color: #000;
      position: relative;
    }


    .package-title .veg {
      font-size: 2rem;
      font-weight: bold;
      color: #000000;
    }

    .package-title .gold {
     font-size: 13px;
      position: absolute;
      top: 0;
      left: 80px;
      color: #000000;
    }
    
    .package-title .non-veg {
  font-size: 1rem;
  font-weight: bold;
  color: #000000;
}

    .package-title .diamond {
  font-size: 13px;
  position: absolute;
  top: 0;
  left: 75px;
  color: #000000;
}

 /* add ons css */
    .addons-section {
      padding: 20px 0;
      background-color: #fff8ec;
  }
  .addons-title {
      font-size: 1.5rem;
      font-weight: bold;
      letter-spacing: 5px;
      color: black;
      background-color: #ffefd6;
      padding: 10px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 250px;
  }
  .addons-title span {
      display: block;
  }
  .addons-title .space {
      height: 20px; /* Space between ADD and ONS */
  }
  .addons-item {
      display: flex;
      justify-content: space-between;
      margin-bottom: 10px;
      font-size: 1rem;
      color: #000;
  }
  .addons-item span:last-child {
    margin-right: 200px; /* Thoda gap price aur text ke beech */
    /* text-align: right; */
}
  @media (max-width: 768px) {
      .addons-title {
          height: auto;
          flex-direction: row;
          padding: 5px 0;
      }
      .addons-title span {
          margin-right: 10px;
      }
  }









    
    
    