:root {
  --bs-body-bg: bisque;
}

@font-face {
  font-family: 'Satisfy';
  src: url('../fonts/Satisfy-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

html {
    height: auto;
    min-height: 100%;
    width: 100%;
    overflow-x: hidden;
}

body {
    height: auto;
    min-height: 100%;
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    background-color: bisque;
    background-size: cover;
    background-position: center;
    overflow-y: auto;
}


code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', monospace;
}


#head {
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
}

#navbar, #head {
  display: flex;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  align-items: center;
  background-color: rgba(1, 16, 34, 0.829);
  color: rgb(252, 250, 168);
  padding: 10px 20px;
  box-sizing: border-box;
}

#head-logo-wrapper,
#head-menu-wrapper,
#head-none-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
}

#head-logo-wrapper {
    height: 100px;
}

#head-menu-wrapper {
    justify-content: space-between;
    padding-left: 5px;
}

.head-menu-btn-wrap {
    text-align: center;
    font-size: 30px;
    font-family: "satisfy";
    border-radius: 30px;
    padding: 5px;
    margin: 10px;
}

.head-menu-btn-wrap a {
    font-family: "satisfy";
}

.head-menu-btn-wrap:hover {
    background-color: rgba(247, 245, 148, 0.664);
}

.head-menu-btn-wrap a {
    color: azure;
    text-decoration: none;
}

.nav-btn {
  display: flex;
  background-color: rgba(229, 255, 0, 0.055);
  border-radius: 20%;
  font-size: 30px;
  color: rgba(247, 252, 0, 0.692);
  font-family: 'satisfy';
  padding: 8px 16px;
  text-align: center;
}

.nav-btn:hover {
  background-color: rgba(224, 48, 16, 0.74);
  color: rgb(250, 250, 248);
  font-size: 32px;
  font-style: bold;
}

.nav-btn a {  
  text-decoration: none;
  color: inherit;
}



main {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 10%;
    margin-right: 10%;
    padding: 0 20px;
    box-sizing: border-box;
}

.section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 100px;
    width: 100%;
    border-radius: 20px;
    padding: 20px;
    box-sizing: border-box;
}

.section-title {
    color: rgba(77, 4, 1, 0.705);
    margin-top: 10px;
    font-size: 50px;
    font-family: "satisfy";
    text-align: center;
}



#index-contacts-container {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
}

.contacts-panel-main {
  background-color: rgba(51, 30, 2, 0.507);
  color: rgb(255, 217, 0);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 520px;
  gap: 10px;
  border-radius: 20px;
  padding: 30px;
  margin: 12px auto;
  box-sizing: border-box;
  margin-top: 20px;
}

.contacts-panel-main-icons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-icon {
    box-shadow: 0 0 15px #f1facc;
    transition: box-shadow 0.3s ease;
    border-radius: 50px;
    text-decoration: none;
    border-bottom: 10px;
}

.contacts-panel-main-loc {
    display: flex;
    flex-direction: row;
    padding-bottom: 10px;
    text-decoration: none;
}

#city-contacts {
    color: #f0f7f0;
    font-size: 10px;
}

.company-info-location {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: rgb(255, 255, 254);
    font-size: 1.2em;
    text-align: center;
}



#index-carousel-container {
  margin-top: 105px;
  width: 100%;
}

.carousel-main-img {
  width: 70%;
  border-radius: 7%;
  max-width: 100%;
  height: auto;
}



.menu-cats-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 20px;
  background-color: #dad4d433;
}

#menu-buttons-ÃƒÆ’Ã¢â‚¬ËœÃƒâ€šÃ‚Âategories {
    width: 100%;
    max-width: 600px;
    border-radius: 20px;
    padding: 0 20px;
    box-sizing: border-box;
}

#menu-cat-btns-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 13px;
    flex-wrap: wrap;
}

.menu-cat-btn {
    border-style: solid;
    border-color: bisque;
    border-radius: 20px;
    font-family: 'satisfy';
    font-size: 30px;
    padding: 10px 15px;
    box-shadow: 0 7px 7px 2px #531502e8;
    cursor: pointer;
    transition: all 0.3s ease;
}

#food-btn {
    background-color: rgba(61, 128, 65, 0.897);
    color: coral;
}

#drinks-btn {
    background-color: rgb(58, 33, 2);
    color: rgb(250, 225, 191);
}

#food-btn:hover {
    background-color: rgba(98, 223, 67, 0.836);
    color: rgba(34, 3, 3, 0.541);
}

#drinks-btn:hover {
    background-color: rgba(0, 174, 255, 0.747);
    color: rgb(255, 251, 0);
}


#drinks {
    display: none;
}



.product-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(165, 142, 42, 0.726);
    margin: 25px 0;
    width: 100%;
    max-width: 800px;
    border-color: rgba(100, 17, 11, 0.37);
    border-style: dotted;
    border-radius: 10%;
    box-shadow: 0 7px 7px 2px #531502e8;
    padding: 20px;
    box-sizing: border-box;
}

.product-card-title {
    margin: 10px 0 15px;
    display: flex;
    justify-content: center !important;
    align-items: center !important;
    color: rgba(51, 30, 2, 0.925);
    font-size: 45px;
    font-family: "satisfy";
    text-align: center;
    gap: 20px;
}


.product-card-category-wrap {
    border-radius: 20px;
    background-color: rgba(121, 121, 121, 0.397);
    color: rgba(255, 255, 0, 0.651);
    padding: 10px 15px;
    align-self: flex-start;
    margin-left: 20px;
    margin-top: 12px;
    align-items: start;
    justify-content: start;
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
}

.product-card-category-wrap:hover  {
    background-color: rgb(243, 235, 235);
    color: rgb(7, 7, 7);

}

.product-card-img-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 600px;
}

.product-card-img-wrapper img {
    width: 100%;
    max-width: 600px;
    border-radius: 20px;
    height: auto;
}

.product-image img {
  width: 100%;
  height: auto;
}

.product-card-description-wrapper {
    display: flex;
    margin: 40px;
    font-size: 23px;
    font-family: 'Courier New', Courier, monospace;
    padding: 0 10px;
    text-align: left;
    text-indent: 1.5em;
    width: 100%;
    max-width: 90%;
}

.product-card-price-wrapper {
    margin: 10px 0 15px;
    font-size: 40px;
    font-family: 'Courier New', Courier, monospace;
    font-weight: 500;
    text-align: center;
}



#info-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
    background-color: #ebe5e191;
    border-radius: 15px;
}

#info-card .carousel-main {
    width: 100%;
    max-width: 900px;
    margin: 20px auto;
}

#info-card .carousel-main-img-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

#info-card .carousel-main-img {
    width: 80%;
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    margin: 0 auto;
}

.company-description-wrapper {
    text-align: center;
    max-width: 800px;
    margin: 20px auto;
    padding: 0 20px;
    box-sizing: border-box;
}

#company-contacts {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 600px;
    margin: 20px auto;
    padding: 0 20px;
    box-sizing: border-box;
}

#company-info-block-title {
    margin: 10px 0 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(51, 30, 2, 0.925);
    font-size: 35px;
    font-family: "satisfy";
    text-align: center;
}

#minuature-end {
    margin-top: 20px;
}

#minuature-end img {
    max-width: 100%;
    width: 100px;
    height: auto;
}



#youtube-info-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 30px;
  margin: 40px auto;
  padding: 20px;
  box-sizing: border-box;
}

.youtube-video-wrapper {
  position: relative;
  width: 90%;
  max-width: 800px;
  padding-bottom: 50.625%;
  height: 0;
  overflow: hidden;
  margin: 0 auto;
}

.youtube-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.youtube-mobile-link {
    display: none;
    background-color: rgba(51, 30, 2, 0.8);
    color: rgb(255, 217, 0);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
    font-family: 'satisfy';
    font-size: 18px;
    margin: 20px auto;
    max-width: 300px;
    transition: all 0.3s ease;
}

.youtube-mobile-link:hover {
    background-color: rgba(51, 30, 2, 1);
    transform: scale(1.05);
}



footer {
    display: flex;
    flex-direction: column;
    color: white;
    background-color: rgba(15, 0, 0, 0.075);
    width: 100%;
    margin-top: 5px;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

footer a {
  text-decoration: none;
  color: white;
}

#bws-logo img {
    margin-top: 10px;
    width: 100px;
    max-width: 100%;
    height: auto;
}

#year-prod {
    font-size: 20px;
    text-align: center;
}

* {
    box-sizing: border-box;
}

@media (max-width: 768px) {
    html, body {
        min-height: 100vh;
        height: auto;
        overflow-x: hidden;
        background-color: bisque !important;
    }
    
    main {
        margin-left: 0;
        margin-right: 0;
        padding: 0 10px;
        width: 100%;
        min-height: calc(100vh - 80px);
        margin-top: 80px;
        display: flex;
        flex-direction: column;
        background-color: bisque;
    }
    

    .section {
        margin-top: 20px;
        padding: 15px;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        background-color: bisque;
        min-height: 200px;
    }
    

    .section-title {
        font-size: 32px;
        margin-bottom: 20px;
        color: rgba(77, 4, 1, 0.705);
        text-align: center;
        width: 100%;
    }
    

    #index-carousel-container {
        margin-top: 20px;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .carousel-main-img {
        width: 95%;
        border-radius: 7%;
        max-width: 100%;
        height: auto;
    }
    
    #info-card .carousel-main-img {
        width: 95%;
        max-width: 100%;
        height: auto;
        border-radius: 15px;
        margin: 0 auto;
    }
    
    #index-contacts-container {
        width: 100%;
        padding: 0 10px;
        display: flex;
        justify-content: center;
    }
    
    .contacts-panel-main {
        width: 100%;
        max-width: 100%;
        padding: 20px 15px;
        margin: 10px 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .menu-cats-section {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    #menu-buttons-ÃƒÆ’Ã¢â‚¬ËœÃƒâ€šÃ‚Âategories {
        width: 100%;
        padding: 0 10px;
    }
    
    /* ÃƒÆ’Ã‚ÂÃƒâ€¦Ã‚Â¸ÃƒÆ’Ã¢â‚¬ËœÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚ÂÃƒâ€šÃ‚Â¾ÃƒÆ’Ã‚ÂÃƒâ€šÃ‚Â´ÃƒÆ’Ã¢â‚¬ËœÃƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚ÂÃƒâ€šÃ‚ÂºÃƒÆ’Ã¢â‚¬ËœÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬ËœÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ */
    .product-card {
        width: 100%;
        margin: 20px 0;
        padding: 15px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    #youtube-info-wrapper {
        gap: 20px;
        margin: 20px auto;
        padding: 15px;
    }
    
    .youtube-video-wrapper {
        width: 100%;
        padding-bottom: 56.25%;
    }
    
    .youtube-mobile-link {
        display: block;
    }
    
    .youtube-video-wrapper.error {
        display: none;
    }

    .product-card-description-wrapper {
        font-size: 16px;
        line-height: 1.5;
    }

    #minuature-end img {
        max-width: 100%;
        width: 200px;
        height: auto;
    }

    #head-logo-wrapper {
        height: 60px;
    }
}

@media (max-width: 480px) {

    .carousel-main-img {
        width: 96%;
        border-radius: 5%;
    }
    
    #info-card .carousel-main-img {
        width: 96%;
    }
    
    /* ...existing code... */
    }

@media (max-width: 414px) {
    /* ...existing code... */
    
    .carousel-main-img {
        width: 98%;
        border-radius: 5%;
    }
    
    #info-card .carousel-main-img {
        width: 98%;
        border-radius: 10px;
    }

    #index-banner-wrapper {
        width: 95%;
    }

    #minuature-end img {
        max-width: 100%;
        width: 170px;
        height: auto;
    }
    
}


@media (max-width: 768px) and (orientation: landscape) {
    
    .carousel-main-img {
        width: 85%;
    }
    
    #info-card .carousel-main-img {
        width: 85%;
    }
    
    .head-menu-btn-wrap {
        text-align: center;
        font-size: 20px;
        font-family: "satisfy";
        border-radius: 30px;
        padding: 5px;
        margin: 10px;
    }
}


#about {

    background-color: #ebe5e191;
    margin-top: 10%;
}

#index-main-wrap {
    margin-top: 5%;
}


#index-banner-wrapper {
    margin-top: 135px;
    width: 55%;
    max-width: 900px;
}

#index-banner-img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 10px;

}

#info {
    margin-top: 110px;
}

#company-photos-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 600px;
    margin: 20px auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.photo-comp-wrapper {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    margin-top: 10px;
}


.photo-comp-wrapper img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}

.company-description-wrapper {
    display: flex;
    margin-top: 20px;
    font-size: 16px;
    font-family: 'Courier New', Courier, monospace;
    padding: 0 10px;
    text-indent: 1.5em;
    text-align: justify;
    width: 100%;
    max-width: 90%;
}

.photo-comp-description {
    text-align: start;
    font-style: italic;
    margin-top: 20px;
}


.categories-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; 
    background-color: rgba(88, 40, 6, 0.171);
    border-radius: 14px;
    padding: 10px;
    margin: 10px auto;
    gap: 8px;
    width: 97%;
}

.category-tag {
    border-radius: 14px;
    border: 1px solid #411414b9;
    background-color: whitesmoke;
    color: rgba(0, 0, 0, 0.808);
    padding: 4px 10px;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.2s ease;
}

.category-tag:hover {
    background-color: rgba(255, 250, 240, 0.9);
    transform: scale(1.05);
}

@media (max-width: 768px) {
  #index-banner-wrapper {
      width: 90%;
      max-width: 100%;
      margin-top: 80px;
  }

  #index-banner-img {
      width: 100%;
      height: auto;
  }

  .categories-wrap {
        border-radius: 14px;
        padding: 10px;
        margin: 10px auto;
        gap: 8px;
        width: 80%;
    }
    .category-tag {
        font-size: large;
        
    }

    .product-card-price-wrapper {
    margin: 10px 0 15px;
    font-size: 60px;
    font-family: 'Courier New', Courier, monospace;
    font-weight: 500;
    text-align: center;
    }
}

@media (max-width: 480px) {
  #index-banner-wrapper {
      width: 100%;
      margin-top: 70px;
  }

    .head-menu-btn-wrap {
        text-align: center;
        font-size: 20px;
        font-family: "satisfy";
        border-radius: 20px;
        padding: 5px;
        margin: 10px;
    }

    .categories-wrap {
        border-radius: 14px;
        padding: 10px;
        margin: 10px auto;
        gap: 8px;
        width: 80%;
    }
}


#to_start_btn_wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

#to_start_btn {
    width: 90px;
    cursor: pointer;
}


#index-schedule {
    font-family: 'Satisfy';
    font-size: 20px;
    text-align: center;
    color: #993300;
}


#promoactions-wrapper {
    margin-top: 10px;
}


#promoactions-cards-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
    background-color: #ebe5e136;
    border-radius: 20px;
}

#promoactions-wrapper-title {
    margin: 10px 0 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(51, 30, 2, 0.925);
    font-size: 35px;
    font-family: "satisfy";
    text-align: center;
}


.promo-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(165, 142, 42, 0.726);
    margin: 14px 0;
    width: 70%;
    max-width: 800px;
    border-color: rgb(50 4 4);
    border-style: dotted;
    border-radius: 10%;
    box-shadow: 0 7px 7px 2px #531502e8;
    padding: 10px;
    box-sizing: border-box;
}

.promo-card-title {
    margin: 10px 0 15px;
    display: flex;
    justify-content: center !important;
    align-items: center !important;
    color: rgb(118 8 8);
    font-size: 40px;
    font-family: "satisfy";
    text-align: center;
    gap: 20px;
}

.promo-card-description-wrapper {
    display: flex;
    margin: 40px;
    font-size: 20px;
    font-family: 'Courier New', Courier, monospace;
    padding: 0 10px;
    text-align: left;
    text-indent: 1.5em;
    width: 100%;
    max-width: 90%;
    color:#0b0b01;
}

.promo-card-image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 600px;
}

.promo-card-image-wrapper img {
    width: 100%;
    max-width: 600px;
    border-radius: 20px;
    height: auto;
}

@media (max-width: 768px) {
    .promo-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(165, 142, 42, 0.726);
    margin: 10px 0;
    width: 100%;
    max-width: 800px;
    border-color: rgb(50 4 4);
    border-style: dotted;
    border-radius: 10%;
    box-shadow: 0 7px 7px 2px #531502e8;
    padding: 10px;
    box-sizing: border-box;
    }
    
    .promo-card-title {
    font-size:25px;
    gap: 20px;
    }

    .promo-card-description-wrapper {
    display: flex;
    margin: 5px;
    font-size: 13px;
    font-family: 'Courier New', Courier, monospace;
    padding: 0 10px;
    text-align: left;
    text-indent: 1.0em;
    width: 100%;
    max-width: 100%;
    color:#0b0b01;
    }
}

@media (max-width: 480px) {
    .promo-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(165, 142, 42, 0.726);
    margin: 10px 0;
    width: 100%;
    max-width: 800px;
    border-color: rgb(50 4 4);
    border-style: dotted;
    border-radius: 10%;
    box-shadow: 0 7px 7px 2px #531502e8;
    padding: 10px;
    box-sizing: border-box;
    }
    .promo-card-title {
    font-size:23px;
    gap: 10px;
    }
    
    .promo-card-description-wrapper {
    display: flex;
    margin: 5px;
    font-size: 12px;
    font-family: 'Courier New', Courier, monospace;
    padding: 0 10px;
    text-align: left;
    text-indent: 0.5em;
    width: 100%;
    max-width: 100%;
    color:#0b0b01;
    }
}