<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* body styling */
html, .container-fluid {
    background: #171717;
    overflow-x: hidden;
}

/* fonts start */
@font-face {
    font-family: 'Granny';
    src: url('fonts/GrannyRegular-ALYgg.ttf');
}

.granny {
    font-family: 'Granny';
}

@font-face {
    font-family: 'guarantee';
    src: url('fonts/Guarantee-qZOGr.otf');
}

.guarantee {
    font-family: 'guarantee';
}
/* fonts end */

/* navbar start */
  .navbar {
      justify-content: space-between;
      align-items: center;
      background-color: #000;
      position: relative;
  }

  .nav-link {
    color: whitesmoke;
  }

  .nav-link:hover {
    color: #F84AA0;
  }

  .navbar-left {
      display: flex;
      align-items: center;
      gap: 3rem;
  }

  .navbar-center {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
  }

  #delivery {
    background-color: #F84AA0;
    border-radius: 30px;
    border: none;
  }

  #delivery:hover {
    background-color: whitesmoke;
    color: #F84AA0;
  }

   .navbar-center img {
       max-height: 80px;
       width: auto;
   }

  @media (max-width: 768px) {
      .navbar-center img {
          max-height: 60px;
      }
  }

  @media (max-width: 576px) {
      .navbar-center {
          position: static;
          transform: none;
          text-align: center;
          margin-top: 0.5rem;
          margin-bottom: 0.5rem;
      }

      .navbar-center img {
        max-height: 50px;
      }

      .navbar {
        flex-wrap: wrap;
      }
  }
/* navbar end */

/* hero start */ 
.hero-container {
    position: relative;
    display: flex;
    justify-content: center;  
    align-items: center;
    height: calc(100vh - 80px);
    /* Full screen height */
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: rgba(0, 0, 0, 0.4);
    /* Optional dark overlay for readability */
    color: white;
    padding: 2rem;
    border-radius: 20px;
}

.hero-overlay h1 {
    font-size: 5rem;
    margin-bottom: 1rem;
    -webkit-text-stroke-width: 1.2px;
    -webkit-text-stroke-color: #F84AA0;
}

.hero-overlay .btn {
    font-size: 1.2rem;
    padding: 0.75rem 2rem;
}


 #menu {
     background-color: #F84AA0;
     border-radius: 30px;
     border: none;
     color: white;
 }

 #menu:hover {
     background-color: whitesmoke;
     color: #F84AA0;
 }
/* hero end */

/* top favorites carousel start */
.carousel-wrapper {
    overflow: hidden;
    position: relative;
}

#carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
}

.carousel-card {
    min-width: 33.33%;
    box-sizing: border-box;
    padding: 0 10px;
}

.card-content {
    background-color: #171717;
    color: white;
    border: 2px solid #F84AA0;
    border-radius: 16px;
    padding: 16px;
    height: 100%;
    text-align: center;
}

.carousel-btn {
    background-color: #000;
    border: 2px solid #000;
    color: white
}

.carousel-btn:hover {
    background-color: #F84AA0;
    border: 2px solid #F84AA0;
    color:white;
}

/* top favorites carousel end */

/* delivery 3 buttons start */
.deliv {
    background-color: #000;
    border: #F84AA0 5px solid;
    border-radius: 60px;
}

.circle-btn {
    width: 200px;
    height: 200px;
    background-color: transparent;
    border-radius: 50%;
    border: 2px solid #F84AA0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
    margin: 0 1rem;
}

.circle-btn:hover {
    transform: scale(1.1);
}

.circle-btn-img {
        width: 80%;
        height: 80%;
        object-fit: contain;
 }
    /* Ensures the image maintains aspect ratio */

/* Add responsive media queries for smaller screens */
@media (max-width: 767px) {
    .circle-btn {
            width: 70px;
            height: 70px;
        }
}
/* delivery 3 buttons end */

/* menu hero start */
.menu-img {
    width: 100%;
    height: 55vh;
    /* or try 70% of parent if using % */
    object-fit: cover;
    object-position: center;
    /* optional: keeps center focus */
}
.menu-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    /* or black depending on image */
    font-size: 4rem;
    font-weight: bold;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
    letter-spacing: 5px;
}
/* menu hero end */

/* instagram widget start */
.es-header-user-full-name {
    font-family: 'Granny';
}

.es-header-user-username,
.eapps-instagram-feed-header-stats-item-value, .eapps-instagram-feed-header-stats-item-label {
    font-family: 'guarantee';
}

.eapps-instagram-feed-header-follow-button, .es-header-follow-button {
    font-family: 'guarantee';
}

/* instagram end */

/* footer start */
.foot {
    background-color: #000;
}

footer .guarantee {
    font-size: clamp(0.75rem, 1.2vw, 1rem);
    line-height: 1.4;
}

.foot-btn {
    color: white;
    text-decoration: none;
}

.foot-btn:hover {
    color: #F84AA0;
}

.social-btn {
    background-color: black;
    border: 2px solid #F84AA0;
    border-radius: 50%;
    padding: 6px;
    transition: background-color 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-btn img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.social-btn:hover {
    background-color: #F84AA0;
}

.social-link {
    display: inline-block;
}


.social-btn img {
    width: 90%;
    /* Adjust as needed */
    height: auto;
}

.fo {
    color: #F84AA0;
}

.fo:hover {
    color: white;
}

/* Default footy styles */
.footy {
    font-size: 1.5vw !important;
    font-family: 'guarantee';
    /* or whatever your default size is */
}
/* footer end */

/* menu navbar start */
.menu-nav-btn {
    background-color: #000;
    border: 2px solid #F84AA0;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    padding: 10px;
    transition: transform 0.3s;
    margin: 0 auto;
}

.menu-nav-btn:hover {
    transform: scale(1.05);
}

.menu-nav-btn img {
    max-width: 50%;
    height: auto;
}

.menu-nav-btn h4 {
    font-size: 0.90rem;
    margin-top: 5px;
    color: white;
    text-align: center;
    line-height: 1.1;
    font-weight: 600;
}

@media (max-width: 768px) {
    .menu-nav-btn {
        width: 80px;
        height: 80px;
    }

    .menu-nav-btn h4 {
        font-size: 0.5rem;
    }
}

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

a#crepe-btn {
    text-decoration: none;
}
/* menu navbar end */

/* menu start */
.menu-div {
    border-radius: 33px;
    border: 2px solid #F84AA0;
    background-color: #171717;
}
/* menu end */

/* ice cream start */
.carousel-card.ice-cream {
    min-width: calc(100% / 5);
    padding: 0 10px;
    display: flex;
}

.carousel-card.ice-cream .card-content {
    background-color: #171717;
    color: white;
    border: 2px solid #F84AA0;
    border-radius: 16px;
    padding: 8px;
    text-align: center;
    width: 100%;
}

.icecream-title {
    font-size: clamp(0.8rem, 1.5vw, 1rem);
    margin-bottom: 0.4rem;
}

.carousel-card.ice-cream img {
    max-height: 130px;
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 0;
    /* no extra margin */
}
/* ice cream end */
</pre></body></html>