
.bg-holder {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='1440' height='724' viewBox='0 0 1440 724' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cg opacity='0.3' filter='url(%23filter0_f)'%3e%3cellipse cx='-180.528' cy='188.597' rx='239.472' ry='248.432' fill='%23D5AEE4'/%3e%3c/g%3e%3cpath d='M758.307 222C717.907 153.2 741.474 13.3333 758.307 -48L1437.81 -149L1502.31 122.5L1463.81 723.5C1385.14 724.5 1209.71 717 1137.31 679C1046.81 631.5 1087.81 555 1012.81 515C937.807 475 980.807 369.5 954.807 329.5C928.807 289.5 808.807 308 758.307 222Z' fill='%23FFF1DA'/%3e%3cdefs%3e%3cfilter id='filter0_f' x='-570' y='-209.836' width='778.945' height='796.864' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3e%3cfeGaussianBlur stdDeviation='75' result='effect1_foregroundBlur'/%3e%3c/filter%3e%3c/defs%3e%3c/svg%3e ");    position: absolute;
    width: 100%;
    min-height: 100%;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    will-change: transform, opacity, filter;
    backface-visibility: hidden;
    background-repeat: no-repeat;
    z-index: 0;  
  }
  
  
  .bg-primary-gradient{
    background: #FFF7F5;
    box-shadow: 0px 20px 40px rgba(238, 77, 71, 0.1);
  }

  .front-page {
    padding-top: 100px;
  }
  
  .front-page .container {
    position: relative;
    z-index: 10;
  }

  header {
    position: relative;
    z-index: 10;
    background-color: #ffffff;
  }

  .front-page-restaurants {
    margin: 64px 0;
  }

  .front-page .hero-title {
    font-size: 64px;
    font-weight: 600;
    line-height: 0.9;
    color: var(--text-normal);
    margin-bottom: 32px;
  }


  .front-page .yellow-title {
    font-weight: 600;
    color: var(--yellow-normal);
    margin-bottom: 16px;
    font-size: 24px;
  }

  .wrapper-title-front-page-restaurants {
    text-align: center;
  }

  .wrapper-title-front-page-restaurants p {
    margin: 0;
    font-size: 20px;
    color: var(--text-seo);
    font-weight: 600;
  }

  .front-page-h2 {
    font-size: 48px;
    color: var(--text-normal);
    font-weight: 600;
  }


  .front-page-h3 {
    font-size: 38px;
    color: var(--text-normal);
    font-weight: 600;
  }


  .random-restaurants {
    margin-top: 32px;
  }



  .front-page .gray-text {
    color: var(--text-seo);
  }

  .btn.btn-yellow {
    font-weight: 600;
  }

  @media (max-width: 765px) { 
    .front-page .hero-title {
        font-size: 40px;
    }

    .front-page .yellow-title,
    .wrapper-title-front-page-restaurants p {
        font-size: 16px;
      }

      .front-page-h2 {
        font-size: 24px;
      }

      .front-page-h3 {
        font-size: 20px;
      }

}

 .promo-block {
                display: flex;
                margin: 40px auto;
                border-radius: 10px;
                overflow: hidden;
                background-color: rgb(255, 241, 218);
                padding: 25px;
                transition: box-shadow 0.3s ease;
            }

            .promo-block:hover {
                box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            }

            .promo-image {
                position: relative;
                width: 50%;
                height: 400px;
                overflow: hidden;
            }

            .promo-image img {
                position: absolute;
                width: 100%;
                height: 100%;
                object-fit: cover;
                opacity: 0;
                transition: opacity 1s ease-in-out;
                border-radius: 10px;
            }

            .promo-image img.active {
                opacity: 1;
            }

            .promo-handle {
                position: absolute;
                bottom: 20px;
                left: 20px;
                background: #000;
                color: #fff;
                padding: 6px 12px;
                border-radius: 20px;
                font-weight: bold;
                font-size: 14px;
            }

            .promo-text {
                width: 50%;
                padding: 40px;
                display: flex;
                flex-direction: column;
                justify-content: center;

            }

            .promo-text h1 {
                font-size: 36px;
                line-height: 1.2;
                margin: 0 0 20px;
            }

            .promo-text p {
                margin-bottom: 30px;
                font-size: 20px;
                color: var(--text-seo);
                font-weight: 600;
            }

            .promo-text button {
                padding: 12px 24px;
                font-size: 16px;
                background-color: #003b2a;
                color: #fff;
                border: none;
                border-radius: 30px;
                cursor: pointer;
                transition: background 0.3s ease;
            }

            .promo-text button:hover {
                background-color: #00553a;
            }

            @media (max-width: 765px) {
                .promo-block {
                    flex-direction: column-reverse;
                }

                .promo-text {
                    width: 100%;
                    padding: 5px;
                }

                .promo-image {
                    width: 100%;
                    height: 200px;
                }

                .promo-text p {
                    font-size: 16px;
                }
            }