@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Oswald:wght@200..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Questrial&family=Quicksand:wght@300..700&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");

* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-style: normal;
  line-height: 150%;
}

html,
body {
  overflow-x: hidden;
  background: rgb(246, 246, 246);
}
:root {
  --primary-color: #941515;
  --secondary-color: #00000095;
}

/* Loading */
#loading {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* Style for the loading image */
.loading-image {
  width: 100px; /* Adjust the size as needed */
  height: auto;
  animation: blink 1s linear infinite; /* Changed to blink animation */
}

/* Keyframes for blinking the image */
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

/* Loading end */

/* Navbar Start */

.navbar {
  z-index: 100;
   background: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 20px !important;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50px;
  width: 85%;
  margin-top: 20px;
  box-shadow: 5px 8px 10px var(--secondary-color);
  border: 1px solid;
  flex-wrap: wrap;
  
}

.navbar .logo {
  margin-left: 20px;
  flex-shrink: 0;
}

.navbar .logo img {
  width: 6em;
}

.navbar ul {
  display: flex;
  justify-content: center;
  gap: 2em;
  list-style: none;
  flex: 1;
  text-align: center;
  flex-wrap: wrap;
  transition: opacity 0.3s ease, max-height 0.3s ease;
  color: white;
}

.navbar ul.active {
  max-height: 500px;
  opacity: 1;
}

.navbar ul li {
  font-size: 1.1rem;
  cursor: pointer;
  transition: color 0.3s;
  font-weight: 300;
  color: white;
}

.navbar ul li a {
  text-decoration: none;
  color: white;
  transition: all 0.2s ease-in-out;
}

.navbar ul li a:hover {
  color: #2a2929;
}

.navbar .icons {
  display: flex;
  /* margin-top: -30%; */
  align-items: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.navbar .icons i {
  margin-left: 15px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: color 0.3s;
  border: 2px solid wheat;
  border-radius: 150em;
  padding: 10px;
}

.navbar .icons i:hover {
  color: #d3d3d3;
}

/* Rope effect */
.navbar:before,
.navbar:after {
  content: "";
  position: absolute;
  top: -40px;
  width: 9px;
  height: 40px;
  background-color: #960000;
  border-radius: 1px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.navbar:before {
  left: 3.5em;
}

.navbar:after {
  right: 3.5em;
}

.navbar .rope-holder:before,
.navbar .rope-holder:after {
  content: "";
  position: absolute;
  top: -60px;
  width: 20px;
  height: 5px;
  background-color: #363636;
  border-radius: 50%;
}

.navbar .rope-holder:before {
  left: 1.5em;
}

.navbar .rope-holder:after {
  right: 1.5em;
}

.menu-toggle {
  display: none;
}

/* Media queries for responsiveness */
@media (max-width: 992px) {
  nav {
    position: fixed;
  }

  .navbar {
    padding: 15px;
    width: 90%;
  }

  .navbar ul {
    gap: 1em;
  }

  .navbar .icons i {
    margin-left: 10px;
  }
}

@media (max-width: 768px) {
  nav {
    position: fixed;
  }

  .navbar {
    height: 4.5em;
    padding: 5px 10px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: relative;
  }

  .navbar .logo {
    margin-left: 0;
    display: flex;
    align-items: center;
    height: 100%;
  }

  .navbar .menu-toggle {
    display: block;
    cursor: pointer;
    font-size: 1.5rem;
    margin-right: 10px;
    border: 1.6px solid;
    padding: 5px 10px;
    border-radius: 4px;
  }

  .navbar ul {
    display: flex;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-bottom: 1px solid white;
    border-left: 1px solid white;
    border-right: 1px solid white;
    border-radius: 0 0 1em 1em;
    width: 90%;
    flex-direction: column;
    background-color: var(--primary-color);
    padding: 0;
    margin-top: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
  }

  .navbar ul.active {
    max-height: 500px;
    opacity: 1;
  }

  .navbar ul li {
    width: 100%;
    text-align: left;
    padding: 10px 20px;
    color: white;
  }

  .navbar .icons {
    margin-right: 10px;
    display: flex;
    align-items: center;
    height: 100%;
  }

  .navbar .icons i {
    margin-left: 10px;
  }
}

@media (max-width: 576px) {
  nav {
    position: fixed;
  }

  .navbar {
    padding: 5px;
  }

  .navbar .menu-toggle {
    font-size: 1.2rem;
    padding: 3px 8px;
  }

  .navbar ul {
    width: 100%;
    top: 100%;
    left: 0;
    transform: none;
  }

  .navbar ul li {
    padding: 8px 15px;
  }

  .navbar .icons i {
    font-size: 1rem;
    margin-left: 8px;
  }
}

@media (max-width: 331px) {
  .navbar {
    padding: 2px;
    height: 55px;
  }

  .navbar .logo {
   margin-top: -5%;
    margin-left: -20px;
    flex: 1;
  }
  .navbar .logo img {
    width: 3.5em;
    position: relative;
    left: 1em;
  }

  .navbar .menu-toggle {
    font-size: 1rem;
    margin-bottom: 13px;
    margin-right: -7px;
    padding: 3px 8px;
    border: 1px solid;
  }

  .navbar ul {
    width: 100%;
    top: 100%;
    left: 0;
    transform: none;
  }

  .navbar ul li {
    padding: 8px 10px;
  }

  .navbar .icons {
    margin-right: 10px;
    display: flex;
    margin-bottom: 13px;
    align-items: center;
    gap: 6px;
  }

  .navbar .icons i {
    font-size: 1rem;
    margin-left: 0px;
    padding: 7px;
    border: 1px solid wheat;
  }

  .header-founder .content-founder{
    width: 18em !important;
  }
}
/* Navbar end */

/* MAIN SLIDER Start*/

.slider-container {
  width: 100vw;
  height: 100vh;
  position: relative;
  top: 0;
  box-shadow: 0 0 0 2px #101010;
}

.slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.slide {
  opacity: 0;
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 1s ease-in-out;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.active {
  opacity: 1;
}

/* Split section styling */
.split-section {
  display: flex;
  width: 100vw;
  height: 100vh;
}

.left-section,
.right-section {
  width: 50%;
  height: 100%;
  position: relative;
}

.left-section img,
.right-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.text-overlay {
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  width: 80%;
}

.text-overlay h2 {
  font-size: 1.6em;
  /* margin-bottom: 10px; */
  font-weight: 300;
  text-align: left;
}
.text-overlay blockquote
{
  margin-top: -5%;
  /* margin-right: 10%; */
}
.text-overlay i{
  font-size: 30px;
}
.text-overlay h1 {
  font-size: 4.2em;
  margin-bottom: 20px;
  font-weight: 700;
  text-align: center;
}

.cta-button {
  font-size: 1.2rem;
  padding: 10px 20px;
  background-color: #fff;
  color: var(--primary-color);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 500;
  transition: background-color 0.3s ease-in-out;
  border: 1px solid white;
  z-index: 1000;
  cursor: pointer;
}

.cta-button:hover {
  background-color: #ff3636c6;
  color: white;
  border: 1px solid white;
}

/* slide 2 */

.slide2 .split-section {
  display: flex;
  width: 100vw;
  height: 100vh;
}

.slide2 .left-section,
.slide2 .right-section {
  width: 50%;
  height: 100%;
  position: relative;
}

.slide2 .left-section img,
.slide2 .right-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide2 .text-overlay {
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* align-items: center; */
  transform: translate(-50%, -50%);
  color: white;
}

.slide2 .text-overlay h2 {
  font-size: 1.5rem;
  /* margin-bottom: 10px; */
  font-weight: 300;
  text-align: left;
}

.slide2 .text-overlay h1 {
  font-size: 4.2em;
  margin-bottom: 20px;
  font-weight: 700;
  text-align: left;
}

.slide2 .cta-button {
  font-size: 1.2rem;
  padding: 10px 20px;
  background-color: #fff;
  color: var(--primary-color);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 500;
  transition: background-color 0.3s ease-in-out;
  border: 1px solid white;
  width: 10em;
}

.slide2 .cta-button:hover {
  background-color: #ff3636c6;
  color: white;
  border: 1px solid white;
}


/* Uncomment if using navigation dots or arrows */
/*
.nav-dots {
    position: absolute;
    width: 100%;
    bottom: 20px;
    display: flex;
    justify-content: center;
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.dot.active {
    background-color: #717171;
}

.nav-arrows {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    box-sizing: border-box;
}

.prev-arrow,
.next-arrow {
    cursor: pointer;
    font-size: 3rem;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    padding: 15px;
    border-radius: 50%;
    user-select: none;
}
*/

/* Responsive adjustments for the third slide */

@media (max-width: 1224px) {
  /* For tablets and small laptops */
  .slider-container {
    height: 90vh; /* Reduce height for tablets */
  }

  .navbar ul li {
    font-size: 15px;
  }
  /* .split-section {
    flex-direction: column;
  } */

  .left-section,
  .right-section {
    width: 100%;
    height: 90vh; /* Adjust height for better fit */
  }

  .text-overlay {
    /* top: 50%; */
    width: 90%;
    padding: 15px;
  }

  .text-overlay h2 {
    font-size: 1.8rem;
  }

  .text-overlay h1 {
    font-size: 3.5rem;
  }

  .cta-button {
    font-size: 1.1rem;
    padding: 8px 18px;
  }

  .slide:nth-of-type(1) .left-section img,
  .slide:nth-of-type(1) .right-section img {
    object-fit: cover;
  }
  .slide:nth-of-type(2) {
    height: 100%;
  }
  

  /* slide 2 */
  
.slide2 .split-section {
  display: flex;
  width: 100vw;
  height: 100vh;
}

  .slide2 .left-section,
  .slide2 .right-section {
    width: 50%;
    height: 90vh;
    object-fit: cover;
    position: relative;
  }

  .slide2 .left-section img,
  .slide2 .right-section img {
    /* width: 100%; */
    height: 90vh;
    object-fit: cover;
  }

  .slide2 .text-overlay {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* align-items: center; */
    transform: translate(-50%, -50%);
    color: white;
    border-radius: 10px;
    text-align: center;
    margin-top: 1em;
  }

  .slide2 .text-overlay h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-align: left;
  }

  .slide2 .cta-button {
    font-size: 1.1rem;
    padding: 10px 20px;
    background-color: #fff;
    color: var(--primary-color);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease-in-out;
    border: 1px solid white;
    width: 10em;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .slide2 .cta-button:hover {
    background-color: #ff3636c6;
    color: white;
    border: 1px solid white;
  }
}

@media (max-width: 768px) {
  /* For mobile devices */
  .slider-container {
    height: 60vh;
  }

  .split-section {
    flex-direction: row;
  }

  .left-section,
  .right-section {
    width: 100%;
    height: 60%;
  }

  .text-overlay {
    top: 50%;
    width: 95%;
    padding: 10px;
  }

  .slide2 .text-overlay {
    top: 30%;
    width: 95%;
    padding: 10px;
  }

  .text-overlay h2 {
    font-size: 1rem;
  }

  .text-overlay h1 {
    font-size: 2rem;
    text-align: center;
  }
  .blockquote
  {
   margin-left: 30%;
  }
  /* .slide3-text {
    margin-top: -3em;
    margin-left: 2.5em;
    text-align: center;
  } */
  .cta-button {
    font-size: 1rem;
    padding: 7px 15px;
  }

  .slide:nth-of-type(1) .left-section img,
  .slide:nth-of-type(1) .right-section img {
    object-fit: cover;
  }
  .slide:nth-of-type(2) img {
    object-fit: cover;
    /* background: #960000; */
  }
  /* .slide:nth-of-type(3) img {
    object-fit: cover;
  } */

  /* slide 2 */
  /* 
.slide2 .split-section {
  display: flex;
  width: 100vw;
  height: 100vh;
} */

  .slide2 .left-section,
  .slide2 .right-section {
    width: 50%;
    /* height: 80vh; */
    object-fit: cover;
  }

  .slide2 .left-section img,
  .slide2 .right-section img {
    /* width: 100%; */
    /* height: 80vh; */
    object-fit: cover;
  }

  .slide2 .text-overlay {
    flex-direction: column;
    justify-content: center;
    /* align-items: center; */
    transform: translate(-50%, -50%);
    margin: 3em;
    color: white;
    border-radius: 10px;
  }

  .slide2 .text-overlay h1 {
    font-size: 1rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-align: left;
  }

  .slide2 .cta-button {
    font-size: 0.7rem;
    padding: 10px 20px;
    background-color: #fff;
    color: var(--primary-color);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease-in-out;
   
    width: 10em;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .slide2 .cta-button:hover {
    background-color: #ff3636c6;
    color: white;
    border: 1px solid white;
  }
}

@media (max-width: 480px) {
  /* For small mobile devices */
  .slider-container {
    height: 50vh;
  }

  .split-section {
    flex-direction: column;
    margin-top: -25%;
  }

  .left-section,
  .right-section {
    width: 100%;
    height: 50%;
  }

  .slide:nth-of-type(3) {
    height: 100%;
  }

  .text-overlay {
    top: 40%;
    width: 105%;
    padding: 8px;
    margin-top: -15%;
  }

  .text-overlay h2 {
    font-size: 1rem;
  }

  .text-overlay h1 {
    font-size: 2.2rem;
  }
  .text-overlay blockquote
  {
    margin-right: 3% !important;
  }

  .cta-button {
    font-size: 0.9rem;
    padding: 5px 12px;
  }

  .slide:nth-of-type(1) .left-section img,
  .slide:nth-of-type(1) .right-section img {
    object-fit: cover;
  }
  .slide:nth-of-type(2) img {
    object-fit: contain;
    background: #960000;
  }
  .slide:nth-of-type(3) img {
    object-fit: contain;
    background: #960000;
  }

  /* slide 2 */

  .slide2 .left-section {
    display: none;
  }
  .slide2 .right-section {
    width: 100%;
    /* height: 80vh; */
    object-fit: cover;
  }

  .slide2 .left-section img,
  .slide2 .right-section img {
    /* width: 100%; */
    /* height: 80vh; */
    object-fit: cover;
  }

  .slide2 .text-overlay {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translate(-50%, -50%);
    margin: -3em auto;
    color: white;
    border-radius: 10px;
  }

  .slide2 .text-overlay h1 {
    font-size: 1.2rem;
    /* margin-bottom: 20px; */
    font-weight: 700;
    text-align: left;
  }

  .slide2 .cta-button {
    font-size: 0.7rem;
    padding: 10px 20px;
    background-color: #fff;
    color: var(--primary-color);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease-in-out;
    width: 10em;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .slide2 .cta-button:hover {
    background-color: #ff3636c6;
    color: white;
    border: 1px solid white;
  }
}

/* slide 3*/


/* For screens larger than 1200px */
@media (min-width: 1200px) {
  .slide3 .snacks-section {
    flex-direction: row;
  }

  .slide3 .snacks-content {
    margin-top: 4em;
  }

  .slide3 .snacks-content img {
    width: 150px;
    margin-right: 30%;
    margin-bottom: 18%;
  }

  .slide3 .snacks-content h2 {
    font-size: 4em;
    margin-top: -25%;
  }

  .slide3 .snacks-images {
    width: 50%;
    margin-top: 10%;
    margin-right: 10%;
  }

  .slide3 .snacks-images img {
    filter: drop-shadow(5px 5px 1px rgb(86, 86, 86));
  }
}

/* For screens between 768px and 1200px */
@media (max-width: 1200px) and (min-width: 768px) {
  .slide3 .snacks-section {
    flex-direction: row;
  }

  .slide3 .snacks-content {
    margin-top: 3em;
  }

  .slide3 .snacks-content img {
    width: 120px;
    margin-right: 20%;
    margin-bottom: 15%;
  }

  .slide3 .snacks-content h2 {
    font-size: 3em;
    margin-top: -20%;
  }

  .slide3 .snacks-images {
    width: 50%;
    margin-top: 8%;
    margin-right: 8%;
  }
}

/* For screens between 480px and 768px */
@media (max-width: 768px) and (min-width: 480px) {
  .slide3 .snacks-section {
    flex-direction: column;
  }

  .slide3 .snacks-content {
    margin-top: 2em;
    text-align: center;
  }

  .slide3 .snacks-content img {
    width: 100px;
    margin-right: 0;
    margin-bottom: 10%;
  }

  .slide3 .snacks-content h2 {
    font-size: 2.5em;
    margin-top: -15%;
  }

  .slide3 .snacks-images {
    width: 80%;
    margin: 5% auto 0 auto;
  }
}

/* For screens smaller than 480px */
@media (max-width: 480px) {
  .slide3 .snacks-section {
    flex-direction: column;
    align-items: center;
  }

  .slide3 .snacks-content {
    margin-top: 1.5em;
    text-align: center;
  }

  .slide3 .snacks-content img {
    width: 80px;
    margin-right: 0;
    margin-bottom: 8%;
  }

  .slide3 .snacks-content h2 {
    font-size: 2em;
    margin-top: -10%;
  }

  .slide3 .snacks-images {
    width: 90%;
    margin: 5% auto;
  }

  .slide3 .snacks-images img {
    width: 100%;
  }
}

/* MAIN SLIDER End*/

/* WHAT WE OFFER Start */
.what-we-offer {
  padding: 3em 2em;
  text-align: center;
  height: fit-content;
  position: relative;
}

.what-we-offer h2 {
  font-size: 2.5em;
  margin-bottom: 1em;
  color: #961a1a;
}

.offerings {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2em;
}

.offering {
  background: linear-gradient(30deg, #6c6c6c, 10%, #ffffff);
  border-radius: 10px;
  box-shadow: 0 4px 8px #c6c6c6f1;
  padding: 2em;
  width: 250px;
  transition: all 0.2s ease-in-out;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.what-we-offer .offering:hover::before {
  content: "";
  width: 1000px;
  height: 1000px;
  position: absolute;
  left: 50%;
  top: 50%;
  animation: rotating 2s infinite cubic-bezier(0.45, 0, 0.55, 1);
  transform-origin: center;
  transform: translate(-50%, -50%) rotate(0deg);
  background: conic-gradient(#c70e0e, transparent, transparent);
  z-index: 0;
}

.what-we-offer .offering::after {
  content: "";
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  position: absolute;
  left: 4px;
  top: 4px;
  background: inherit;
  border-radius: 0.8rem;
  z-index: 0;
}

@keyframes rotating {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.offering:hover {
  transform: scale(1.2);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.offering h3,
.offering p,
.offering .icon,
.offering i {
  position: relative; /* Ensure content is above pseudo-elements */
  z-index: 2;
}

.offering h3 {
  font-size: 1.5rem;
  color: #961a1a;
  padding: 10px 0;
}

.offering p {
  font-size: 1.1rem;
  font-weight: 300;
  padding: 1px 0;
  color: #333;
}

.offering .icon {
  font-size: 3em;
  color: #961a1a;
  margin-bottom: 1em;
}

.offering i {
  font-size: 2em;
}

/* Media query for responsiveness */
@media (max-width: 768px) {
  .what-we-offer {
    padding: 2em 1em;
    height: auto;
  }

  .what-we-offer h2 {
    font-size: 2em;
  }

  .offerings {
    flex-direction: column;
    align-items: center;
  }

  .offering {
    max-width: 90%;
    margin: 1em 2em;
  }

  .offering h3 {
    font-size: 1.25rem;
  }

  .offering p {
    font-size: 0.9em;
  }

  .offering .icon {
    font-size: 2.5em;
  }
}

/* Media Query for Mobile Screens */
@media (max-width: 480px) {
  .what-we-offer {
    padding: 1.5em 0.5em;
  }

  .what-we-offer h2 {
    font-size: 1.75em;
  }

  .offering {
    max-width: 100%;
    padding: 1.5em;
  }

  .offering h3 {
    font-size: 1rem;
  }

  .offering p {
    font-size: 0.85em;
  }

  .offering .icon {
    font-size: 2em;
  }
}

/* WHAT WE OFFER end */

/* Cafe-intro start */
.cafe-intro {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.83), rgba(0, 0, 0, 0.83)),
    url("./Images/wetransfer_1_1-photo-jpg_2024-08-24_1049/1_13 - Photo.jpg")
      center/cover no-repeat;
  color: white;
  overflow: hidden;
  /* border-left: 5px solid #161616;
  border-top: 2px solid var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
  border-right: 5px solid #161616; */
  padding: 1em 0;
}

.content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 80%;
  max-width: 1200px;
  position: relative;
  z-index: 2;
}

.intro-text {
  border-top: 5px solid #fff;
  border-bottom: 5px solid #fff;
  background: rgba(245, 245, 245, 0.556);
  color: #000;
  padding: 1em;
  margin: 1em 0;
  border-radius: 0 2em 0;
  font-weight: 400;
  text-align: justify;
}
.text-box {
  /* border-radius: 10px; */
  box-shadow: 0 10px 30px #00000080;
  max-width: 50%;
  animation: fadeIn 1.5s ease-out;
  transform: translateY(20px);
  opacity: 0;
  animation-fill-mode: forwards;
  position: relative;
  z-index: 3;
}

.text-box h2 {
  font-size: 3.5em;
  margin-bottom: 0.5em;
  /* border-bottom: 1px solid;  */
}

.text-box p {
  font-size: 19px;
  line-height: 1.6;
}

/* Slick Integration */

.slick-carousel {
  width: 30em;
  margin-top: 5em;
}

.slick-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1.9rem;
}

.slick-slide img {
  width: 28em;
  height: 25em;
  border-radius: 15px;
}

/* Slick Navigation Buttons Styling */
.slick-prev,
.slick-next {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  border-radius: 50%;
  z-index: 2;
}

.slick-prev {
  left: 20px;
}

.slick-next {
  right: 20px;
}

.slick-prev:before,
.slick-next:before {
  color: var(--primary-color);
  font-size: 20px;
}

.slick-prev {
  left: 20px;
}

.slick-next {
  right: 20px;
}

@keyframes fadeIn {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive */

@media (max-width: 1200px) {
  .cafe-intro {
    height: 100%;
  }

  .content {
    width: fit-content;
  }
  .cafe-sketch {
    flex-direction: column;
    align-items: center;
  }

  .text-box {
    width: fit-content;
    font-size: 1em;
    margin: 3em;
  }

  .text-box h2 {
    font-size: 2em;
  }

  .text-box p {
    font-size: 1em;
  }

  .slick-carousel {
    width: 25em;
    margin-top: 3em;
    margin-right: 3em;
  }

  .slick-slide img {
    width: 100%;
    height: auto;
    max-height: 20em;
  }
}

@media (max-width: 992px) {
  .cafe-intro {
    height: 100%;
  }

  .content {
    flex-direction: column;
    /* width: 90%; */
    /* padding: 1em 10px; */
  }

  .text-box {
    /* width: fit-content; */
    height: fit-content;
    margin-top: 8em;
    text-align: center;
    padding-top: 1em;
  }

  .text-box h2 {
    font-size: 2em;
  }

  .text-box p {
    font-size: 0.9em;
  }

  .slick-carousel {
    width: a;
    /* margin-top: 2em; */
    margin: 1em;
  }

  .slick-slide img {
    max-height: 18em;
  }
}

@media (max-width: 768px) {
  /* .cafe-intro {
    height: 60vh;
  } */

  .content {
    flex-direction: column;
    /* width: 90%; */
    /* padding: 0 5px; */
  }

  .text-box {
    max-width: 100%;
    /* margin-bottom: 1.8em; */
    position: relative;
    /* top: 1.5em; */
  }

  .text-box h2 {
    font-size: 1.8em;
  }

  .text-box p {
    font-size: 0.8em;
  }

  .slick-carousel {
    width: 15em;
    position: relative;
    bottom: 1em;
    margin-bottom: 1.5em;
  }

  .slick-slide img {
    max-height: 11em;
  }
}

@media (max-width: 480px) {
  /* .cafe-intro {
    height: 60vh;
  } */

  .content {
    flex-direction: column;
    /* width: 90%; */
    padding: 1em 0;
  }

  .text-box {
    /* max-width: 100%; */
    margin-bottom: 1em;
  }

  .text-box h2 {
    font-size: 1em;
  }

  .text-box p {
    font-size: 0.7em;
  }

  .slick-carousel {
    width: 15em;
    /* margin-top: 1em; */
  }

  .slick-slide img {
    max-height: 25em;
  }
}

/* Cafe-intro end */

/* Featured Dishes start */
.featured-dishes-grid {
  text-align: center;
  padding: 6em 3em;
  /* background:linear-gradient(#d62d2d,#666666); */
}
.featured-dishes-grid .header1 {
  color: var(--primary-color);
  font-size: 2.5em;
  padding-top: 2em;
}
.featured-dishes-grid .descr {
  color: #000000;
  font-size: 1.2rem;
  margin-bottom: 5em;
  margin-top: 1em;
  font-weight: 300;
}
.grid-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5em;
  padding: 1em 0;
}

.grid-item {
  flex: 1 1 calc(25% - 1.5em);
  max-width: calc(25% - 1.5em);
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.4s ease;
}

.grid-item:hover {
  transform: scale(1.05);
}

.grid-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  /* border-bottom: 3px solid #fff; */
}

.grid-info {
  position: absolute;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  padding: 0.5em;
  text-align: center;
  transform: translateY(0);
  transition: transform 0.1s ease;
}

.grid-item:hover .grid-info {
  transform: translateY(100%);
}

.grid-info h3 {
  margin: 0.2em 0;
  font-size: 16px;
  color: #fff;
}

.grid-info p {
  margin: 0;
  font-size: 1em;
  color: #f0f0f0;
  font-weight: 300;
}

/* Responsive */

@media (max-width: 768px) {
  .featured-dishes-grid {
    padding: 4em 2em;
  }

  .featured-dishes-grid .header1 {
    font-size: 2em;
    padding-top: 1.5em;
  }

  .featured-dishes-grid .descr {
    font-size: 1rem;
    margin-bottom: 3em;
    margin-top: 1em;
  }

  .grid-container {
    flex-direction: column;
    align-items: center;
  }

  .grid-item {
    /* flex: 1 1 100%;  */
    max-width: 20em !important;
    margin-bottom: 1.5em;
  }

  .grid-item img {
    height: 50% !important;
  }

  .grid-info h3 {
    font-size: 1.1em;
  }

  .grid-info p {
    font-size: 0.9em;
  }
}

@media (max-width: 480px) {
  .featured-dishes-grid {
    padding: 3em 1em;
  }

  .featured-dishes-grid .header1 {
    font-size: 1.8em;
    padding-top: 1em;
  }

  .featured-dishes-grid .descr {
    font-size: 0.9rem;
    margin-bottom: 2em;
  }

  .grid-item {
    /* flex: 1 1 100%;  */
    max-width: 15em !important;
    margin-bottom: 1.5em;
  }

  .grid-item img {
    height: 50% !important;
  }

  .grid-info h3 {
    font-size: 1em;
  }

  .grid-info p {
    font-size: 0.8em;
  }
}

/* Featured Dishes end */

/* LOC models start  */
@import url("https://fonts.googleapis.com/css2?family=Bungee+Tint&family=Oswald:wght@200..700&family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");

.premium-cafe {
  font-family: "Bungee Tint", sans-serif !important;
  font-size: 1.5em;
  font-weight: bolder;
}

#our-cafe {
  /* padding: 3em 0; */
  padding-bottom: 3em;
  position: relative;
  overflow: hidden;
  color: #fff;
  text-align: center;
}

.our-cafe-header {
  color: var(--primary-color);
  text-align: center;
  font-size: 2.5em;
  padding-top: 2em;
  padding-bottom: 0.5em;
}

.wave-container {
  position: absolute;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 1;
}

.waves {
  position: relative;
  width: 100%;
  height: 15vh;
  min-height: 100px;
  max-height: 150px;
}

.wave-group {
  animation: waveAnimation 10s linear infinite;
}

@keyframes waveAnimation {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-90px);
  }
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1em;
  position: relative;
  z-index: 2;
}

.row {
  display: flex;
  align-items: center;
  /* margin-bottom: 2em; */
  position: relative;
  z-index: 2;
}

.text {
  flex: 1;
  padding: 1em;
}

.text h2 {
  font-size: 2.5em;
  margin-bottom: 0.5em;
  position: relative;
  z-index: 2;
  color: var(--primary-color);
}

.text p {
  font-size: 16px;
  color: #000000;
  position: relative;
  z-index: 2;
  font-weight: 300;
}

.image {
  display: flex;
  padding: 1em;
  gap: 1em;
  z-index: 2;
}

.image img {
  width: 22em;
  height: 25em;
  position: relative;
  z-index: 2;
  object-fit: cover;
  border-radius: 2px;
  transition: all 0.5s ease;
}

.cta-button2 {
  font-size: 1rem;
  padding: 10px 20px;
  background-color: #1e1e1e;
  color: #ffffff;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 500;
  border: 1px solid #000;
  margin: 2em;
  transition: all 0.2s ease;
}

.cta-button2:hover {
  background-color: #961a1a;
  color: white;
  box-shadow: 4px 8px 15px rgba(105, 105, 105, 0.5);
}

/* For tablets and smaller screens */
@media (max-width: 768px) {
  .leave {
    width: 100%;
    height: auto;
    transform: translateY(-15%);
  }

  .leave img {
    width: 14em; /* Adjust image width */
    right: 5%; /* Adjust positioning */
  }
}

/* For mobile screens */
@media (max-width: 480px) {
  .leave {
    /* Adjust the position and size if needed */
    transform: translateY(-7em); /* Adjust translation */
    right: -1%; /* Adjust positioning */
  }

  .leave img {
    width: 3em; /* Adjust image width */
  }
}

@media (max-width: 1208px) {
  .row {
    display: flex;
    flex-direction: column;
  }

  .cta-button2 {
    margin: 1em;
  }
}

@media (max-width: 768px) {
  .row {
    display: flex;
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center items horizontally */
    text-align: center; /* Center text inside the text section */
  }

  .text {
    padding: 1em;
  }
  .our-cafe-desc {
    font-size: 1rem;
  }
  .text h2 {
    font-size: 1.3em;
  }

  .text p {
    font-size: 1rem;
  }

  .image {
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

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

  .cta-button2 {
    font-size: 1rem;
    padding: 8px 16px;
    margin-top: 1em;
  }
}

/* For screens 480px and below */
@media (max-width: 480px) {
  .row {
    flex-direction: column; /* Ensure items are stacked */
    align-items: center; /* Center items horizontally */
    text-align: center; /* Center text inside the text section */
  }

  .our-cafe-desc {
    font-size: 1rem;
  }
  .text h2 {
    font-size: 1.8em;
  }

  .text p {
    font-size: 0.9rem;
  }

  .cta-button2 {
    font-size: 0.9rem;
    padding: 6px 12px;
  }
}

/* LOC models end  */

/* flipbook start */
.flipbook {
  height: fit-content;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  background: #1e56276c;
  box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.2);
  border-radius: 18em 0;
  position: relative;
}

.flipbook-header {
  text-align: center;
  font-size: 2.5em;
  color: var(--primary-color);
}

/* Tab Buttons */
.tab-buttons {
  display: flex;
  justify-content: center;
  margin-bottom: 1em;
}

.tab-button {
  background-color: #1e1e1e;
  padding: 1em 2em;
  margin: 0 0.5em;
  cursor: pointer;
  font-size: 1em;
  color: #fff;
  transition: background-color 0.3s ease;
  border-radius: 5px;
}

.tab-button.active,
.tab-button:hover {
  background: var(--primary-color);
  color: white;
}

.flipbook-content {
  display: none;
}

.flipbook-content.active {
  display: block;
}

.flipbook iframe {
  height: 34em;
  width: 50em;
  border: none;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  max-width: 100%;
  max-height: 100%;
}

/* Responsive Styles */
@media screen and (max-width: 1424px) {
  .flipbook-container {
    margin-top: 5em;
  }
  .flipbook {
    /* flex-direction: column; */
    height: auto;
    padding: 2em 0;
    border-radius: 12em 0;
  }

  .tab-buttons {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1em;
  }

  .flipbook-header {
    font-size: 2em;
  }

  .flipbook img {
    width: 15em;
    padding: none;
    margin: none;
  }

  .flipbook iframe {
    width: 90%; /* Adjusted for larger screens */
    height: auto;
  }
}

@media screen and (max-width: 880px) {
  .flipbook-container {
    margin-top: 5em;
  }
  .flipbook {
    /* flex-direction: column; */
    height: auto;
    padding: 2em 0;
    border-radius: 12em 0;
  }

  .tab-buttons {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1em;
  }

  .flipbook-header {
    font-size: 2em;
  }

  .flipbook img {
    width: 8em;
    padding: none;
    margin: none;
  }

  .flipbook iframe {
    width: 90%; /* Adjusted for larger screens */
    height: auto;
  }
}


@media screen and (max-width: 768px) {

  .flipbook {
    flex-direction: column;
    height: auto;
    padding: 2em 0;
    border-radius: 12em 0;
  }
    .flipbook img {
    width: 10em;
  }

  .flipbook iframe {
    width: 100%;
    height: auto; /* Maintain aspect ratio */
  }
/* 
  .flipbook img {
    display: none;
  } */
  .flipbook-header {
    font-size: 1.8em;
  }
}

@media screen and (max-width: 480px) {
  .flipbook {
    padding: 1em 0;
  }
  .tab-buttons {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1em;
  }

  /* .flipbook img {
    width: 60%;
    display: none;
  } */

  .flipbook img {
    display: none;
  }

  .flipbook iframe {
    width: 100%; /* Full width for small screens */
    height: auto; /* Maintain aspect ratio */
  }
  .flipbook button {
    font-size: 1em;
  }
  .flipbook-header {
    font-size: 1.5em;
    padding: 0 1em;
  }
}

/* flipbook end */

/* PRODUCT QUOTE SECTION START  */
.product {
  height: 100%;
  padding: 3.5em 1em;
  max-width: 1200px;
  margin: 0 auto;
}

.small-box img {
  width: 50%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.big-box img {
  /* position: relative;
left: 15%; */
  width: 100%;
  height: 50%;
  object-fit: cover;
  border-radius: 5px;
}
.product-image {
  width: 100%;
  height: 50%;
  filter: drop-shadow(3px 4px 7px #3b3b3b);
}

.product-header {
  font-size: 2.5em;
  padding-top: 19px;
  color: var(--primary-color);
  text-align: center;
}

.product-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 25px;
  margin: 20px 0;
  text-align: left;
  text-transform: uppercase;
  perspective: 800px;
}

.product-column {
  display: flex;
  flex-direction: column;
  gap: 25px;
  flex: 1;
  min-width: 280px;
  max-width: 450px;
}

.product-box {
  box-shadow: 1px 3px 5px #f8f8f8;
  transition: all 0.2s ease-in-out;
  border: 1px solid rgba(255, 255, 255, 0);
  padding: 1em;
  transition: border 0.1s ease;
  background-color: #fff;
  margin: 0;
  transition: all 0.3s ease-in-out;
  border-radius: 5px;
}

.product-box:hover {
  border: 1px solid rgba(255, 255, 255, 0);
  transform: scale(1.05);
  background-color: #f7f7f7;
  box-shadow: 2px 4px 5px rgb(98, 98, 98);
}

.big-box {
  width: 100%;
  height: 450px;
  padding: 18px;
  box-shadow: 1px 3px 5px #d7d7d7;
  background: linear-gradient(#dc1414d8, white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.small-box {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

/* .small-box img {
  width: 30%;
  height: 100%;
  object-fit: cover;
}

.big-box img {
  width: 40%;
  height: 40%;
  object-fit: cover;
}

.product-image {
  filter: drop-shadow(3px 4px 7px #3b3b3b);
} */

.product-title {
  font-size: 1.5em;
  margin: 10px 0;
  color: #000000;
  font-weight: 500;
  text-align: center;
}

.product-description {
  font-size: 14px;
  margin: 10px 0;
  color: #960000;
  text-align: center;
}

.product-button {
  padding: 10px 20px;
  background-color: #151414;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border-radius: 150px;
  margin-top: 2em;
}

.product-button:hover {
  background-color: #961a1a;
}

/* Media Queries for Responsive Design */

/* For tablets and smaller screens */
@media (max-width: 1024px) {
  .product-section {
    flex-direction: column;
    align-items: center;
  }

  .product-column {
    width: 100%;
  }

  .big-box {
    height: auto;
    padding: 15px;
  }

  .small-box {
    flex-direction: column;
    align-items: center;
    height: auto;
  }

  .small-box img {
    width: 80%;
    height: auto;
  }

  .product-title {
    font-size: 1.4em;
  }

  .product-description {
    font-size: 13px;
  }

  .product-button {
    padding: 10px 20px;
  }
  .coffee-seed {
    max-width: 10em;
    margin-top: 2em;
  }

  .coffee-seed2 {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 10em;
    margin-top: 8em;
  }
}

/* For mobile screens */
@media (max-width: 768px) {
  .product-header {
    font-size: 2em;
  }

  .big-box {
    height: auto;
    padding: 10px;
  }

  .small-box img {
    width: 100%;
    height: auto;
  }

  .product {
    gap: 1em;
  }

  .product-title {
    font-size: 1.3em;
  }

  .product-description {
    font-size: 12px;
  }

  .product-button {
    padding: 8px 16px;
  }
  .coffee-seed {
    max-width: 10em;
  }

  .coffee-seed2 {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 5em;
    /* margin-top: 10em; */
  }
}

@media (max-width: 480px) {
  .product {
    padding: 0 1em;
  }
  .product-header {
    font-size: 1.5em;
  }

  .product-section {
    /* gap: 5px;  */
    padding: 0 5px;
  }

  .product-column {
    width: 100%;
    max-width: 100%;
  }

  .product-box {
    padding: 5px;
    border-width: 1px;
  }

  .big-box,
  .small-box {
    width: auto;
    height: auto;
    padding: 5px;
  }

  .small-box img,
  .big-box img {
    width: 100%;
    height: auto;
  }

  .product-title {
    font-size: 1em;
    text-align: center;
  }

  .product-description {
    font-size: 10px;
    text-align: center;
  }

  .product-button {
    padding: 5px 10px;
    font-size: 0.8em;
  }

  .coffee-seed2 {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 10em;
    /* margin-top: 5em; */
  }
  .coffee-seed {
    max-width: 5em;
  }

  .cartoon {
    padding: 1em 0;
    margin-top: 5em;
  }

  .cfe {
    opacity: 0.1;
    padding: 1em 0;
  }
}

@media (max-width: 338px) {
  .product {
    width: auto;
    padding: 0 1em;
  }
  .product-header {
    font-size: 1.2em;
  }

  .product-section {
    gap: 2px;
    padding: 0 2px;
  }

  .product-column {
    width: 100%;
    padding: 0;
  }

  .product-box {
    width: 100%;
    padding: 3px;
    border-width: 1px;
  }

  .big-box,
  .small-box {
    width: 100%;
    height: auto;
    padding: 3px;
  }

  .small-box img,
  .big-box img {
    width: 100%;
    height: auto;
  }

  .product-title {
    font-size: 0.9em;
    text-align: center;
  }

  .product-description {
    font-size: 9px;
    text-align: center;
  }

  .product-button {
    padding: 3px 8px;
    font-size: 0.7em;
  }
}
/* Media Queries for Responsive Design */

/* For tablets and smaller screens */
/* @media (max-width: 768px) {
  .product-section {
    flex-direction: column;
    align-items: center;
  }

  .coffee-seed {
    max-width: 10em;
  }

  .coffee-seed2 {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 10em;
    margin-top: 5em;
  }

  .product-column {
    width: 100%;
    padding: 1em 0;
  }

  .product-box {
    width: 90%;
  }

  .big-box {
    width: 100%;
    height: auto;
    padding: 10px;
  }

  .small-box {
    width: 100%;
    height: auto;
    flex-direction: column;
  }

  .small-box img {
    width: 100%;
    height: auto;
  }

  .product-image {
    height: auto;
  }

  .product-title {
    font-size: 1.5em;
  }

  .product-description {
    font-size: 13px;
  }

  .product-button {
    padding: 8px 16px;
  }

  .vertical-line {
    height: 50px;
  }
}


@media (max-width: 480px) {
  .product-header {
    font-size: 2em;
  }

  .product-descr {
    font-size: 14px;
  }

  .coffee-seed2 {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 10em;
    margin-top: 5em;
  }
  .coffee-seed {
    max-width: 5em;
  }
  .big-box {
    width: 100%;
    height: auto;
    padding: 8px;
  }

  .small-box {
    width: 100%;
    height: auto;
    flex-direction: column;
  }

  .small-box img {
    width: 100%;
    height: auto;
  }

  .product-image {
    height: auto;
  }

  .product-title {
    font-size: 1.2em;
  }

  .product-description {
    font-size: 12px;
  }

  .product-button {
    padding: 6px 12px;
  }

  .vertical-line {
    height: 30px;
  }
} */
/* PRODUCT QUOTE SECTION  END */

/* Tabbed Menu start  */
#cafe-menu {
  font-family: Arial, sans-serif;
  padding-bottom: 15em;
}

.cafe-menu-header {
  text-align: center;
  color: var(--primary-color);
  font-size: 2.5rem;
  padding: 2.9em 0;
}

.tab-container {
  max-width: 1200px;
  margin: 0 auto;
}

.tab-list {
  display: flex;
  justify-content: space-around;
  background-color: #9e2525;
  padding: 1em;
  list-style: none;
  border-radius: 40px;
  margin-bottom: 2em;
  flex-wrap: wrap;
}

.tab-item {
  cursor: pointer;
  color: #fff;
  font-weight: bold;
  padding: 0.5em 1em;
  border-radius: 3px;
  transition: background-color 0.3s;
  text-align: center;
  min-width: 150px;
  flex-grow: 1;
  margin: 0.2em;
  font-weight: 300;
  font-size: 1.1rem;
  border-radius: 20px;
}

.tab-item:hover,
.tab-item.active {
  background-color: #3a3a3a;
}

.tab-content-container {
  padding: 2em;
  background: url("./Images/Product Page/03.png") no-repeat cover/center;
  filter: blur(0.1);
  border-radius: 5px;
  box-shadow: 0 2px 10px #0000001a;
  overflow: hidden;
  background: #3a3a3a;
  color: white;
}

.tab-content {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  flex-wrap: wrap;
  gap: 1em;
}

.tab-content.active {
  display: flex;
  opacity: 1;
}
.tab-content h3 {
  text-align: center;
  font-style: 2em;
  font-weight: 400;
  padding: 1em;
  background: #cb202d;
}
.content-item {
  width: calc(50% - 1em);
  box-sizing: border-box;
  text-align: center;
  margin-bottom: 1em;
  transition: all 0.2s ease-in-out;
}

.content-item:hover {
  transform: scale(1.1);
}
.content-item img {
  width: 11em;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .tab-list {
    flex-direction: column;
  }

  .cafe-menu-header {
    text-align: center;
    font-size: 2em;
    top: 2em;
  }
  .content-item {
    width: 100%;
    margin-bottom: 1em;
  }
}
/* Tabbed Menu end  */

/* <!-- snacks-section start --> */

.snacks-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  height: 100vh;
}

.snacks-content {
  flex: 1;
  max-width: 50%;
}

.snacks-content h2 {
  font-size: 2em;
  margin-bottom: 10px;
}

.snacks-content p {
  font-size: 1.2em;
  margin-bottom: 20px;
}

.order-options {
  margin-top: 20px;
}

.order-link {
  display: inline-block;
  margin-right: 15px;
  padding: 10px 15px;
  /* background-color: #ff5722; */
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.order-link:hover {
  background-color: #e64a19;
}

.snacks-images {
  filter: drop-shadow(2px 4px 5px rgb(97, 97, 97));
}
.snacks-images img {
  width: 100%;
  /* margin: 10px; */
  border-radius: 10px;
  filter: contrast(1.2);
}

.snacks-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  /* background: radial-gradient(white,70%,#961a1a); */
}

.snacks-content {
  flex: 1;
  width: 60%;
  padding: 0 3em;
}

.snacks-content h2 {
  font-size: 2em;
  margin-bottom: 10px;
}

.snacks-content p {
  font-size: 1.2em;
  margin-bottom: 20px;
}

.order-options {
  margin-top: 20px;
}

.order-link {
  display: inline-block;
  margin-right: 15px;
  padding: 10px 15px;
  background-color: #ce1c1c;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.zomato {
  background-color: #ce1c1c;
}
.swiggy {
  background-color: #e64a19;
}
.order-link:hover {
  background-color: #e64a19;
}

/* <!-- snacks-section end --> */

/* menu slider start  */
.menu-slick {
  background: url("./Images/dishes/Home\ Page\ Cover\ Photo.jpg") no-repeat
    center/cover;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-attachment: fixed;
  margin-top: 1em;
}
.menu-slick .slick-slider {
  width: 75vw;
  margin: auto;
  background-color: #d5d5d56a;
  box-shadow: 4px 6px 8px rgba(0, 0, 0, 0.5);
  border-radius: 5px;
}

.menu-slick .slick-arrow {
  color: black;
}
.menu-slick img {
  width: 13em;
  height: 16em;
  object-fit: contain;
  border-radius: 8px;
  cursor: grab;
  transition: all 0.2s ease-in-out;
}
.menu-slick img:hover {
  transform: scale(1.1);
}

/* menu swiper end  */

/* gallery start */

.gallery-container {
  padding: 3em 0;
  height: 100%;
}
.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  padding: 20px;
}

.gallery-header {
  color: var(--primary-color);
  font-size: 2.5em;
  text-align: center;
  padding: 2em 0;
}

/* Gallery items */
.gallery-item {
  flex: 1 1 calc(25.5% - 20px);
  max-width: calc(25.5% - 20px);
  /* margin-bottom: 20px;  */
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.3s ease;
  height: 70%;
  object-fit: cover;
}

.gallery-item:hover {
  transform: scale(1.05);
}

/* Make the gallery responsive */
@media (max-width: 768px) {
  .gallery-header {
    margin-top: 5em;
  }
  .gallery-item {
    flex: 1 1 calc(50% - 20px); /* 2 items per row on medium screens */
    max-width: calc(50% - 20px);
  }
  .lamp {
    width: 3em;
  }
}

@media (max-width: 480px) {
  .gallery-item {
    flex: 1 1 calc(100% - 20px); /* 1 item per row on small screens */
    max-width: calc(100% - 20px);
  }
}
/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80%;
  position: relative;
  top: 10%;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#caption {
  margin: 10px 0;
  text-align: center;
  color: #ccc;
}

.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.close:hover {
  color: #bbb;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .modal-content {
    max-width: 95%;
    max-height: 70%;
  }

  .close {
    font-size: 30px;
    top: 10px;
    right: 20px;
  }
}
/* gallery end */

/* <!-- Contact Us Start --> */
.contact-us .container {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 2rem;
  /* background-color: #fafafa; */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}

.contact-us .form {
  width: 100%;
  max-width: 820px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.contact-us .contact-form {
  background-color: #bc1a1a;
  position: relative;
}

.contact-us .circle {
  border-radius: 50%;
  background: linear-gradient(135deg, transparent 20%, #921414);
  position: absolute;
}

.contact-us .circle.one {
  width: 130px;
  height: 130px;
  top: 130px;
  right: -40px;
}

.contact-us .circle.two {
  width: 80px;
  height: 80px;
  top: 10px;
  right: 30px;
}

.contact-us .contact-form:before {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  background-color: #bc1a1a;
  transform: rotate(45deg);
  top: 50px;
  left: -13px;
}

.contact-us form {
  padding: 2.3rem 2.2rem;
  z-index: 10;
  overflow: hidden;
  position: relative;
}

.contact-us .title {
  color: #fff;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 0.7rem;
}

.contact-us .input-container {
  position: relative;
  margin: 1rem 0;
}

.contact-us .input {
  width: 100%;
  outline: none;
  border: 2px solid #fafafa;
  background: none;
  padding: 0.6rem 1.2rem;
  color: #fff;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border-radius: 5px;
  transition: 0.3s;
}

.contact-us textarea.input {
  padding: 0.8rem 1.2rem;
  min-height: 150px;
  border-radius: 5px;
  resize: none;
  overflow-y: auto;
}

.contact-us .input-container label {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  padding: 0 0.4rem;
  color: #fafafa;
  font-size: 0.9rem;
  font-weight: 400;
  pointer-events: none;
  z-index: 1000;
  transition: 0.5s;
}

.contact-us .input-container.textarea label {
  top: 1rem;
  transform: translateY(0);
}

.contact-us .btn {
  padding: 0.6rem 1.3rem;
  /* background-color: #fff; */
  border: 2px solid #fafafa;
  font-size: 0.95rem;
  color: var(--primary-color);
  line-height: 1;
  border-radius: 5px;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
  margin: 0;
  width: 100%;
}

.contact-us .btn:hover {
  background-color: transparent;
  color: #fff;
}

.contact-us .input-container span {
  position: absolute;
  top: 0;
  left: 25px;
  transform: translateY(-50%);
  font-size: 0.8rem;
  padding: 0 0.4rem;
  color: transparent;
  pointer-events: none;
  z-index: 500;
}

.contact-us .input-container span:before,
.contact-us .input-container span:after {
  content: "";
  position: absolute;
  width: 10%;
  opacity: 0;
  transition: 0.3s;
  height: 5px;
  background-color: #bc1a1a;
  top: 50%;
  transform: translateY(-50%);
}

.contact-us .input-container span:before {
  left: 50%;
}

.input-container span:after {
  right: 50%;
}

.contact-us .input-container.focus label {
  top: 0;
  transform: translateY(-50%);
  left: 25px;
  font-size: 0.8rem;
}

.contact-us .input-container.focus span:before,
.contact-us .input-container.focus span:after {
  width: 50%;
  opacity: 1;
}

.contact-us .contact-info {
  padding: 2.3rem 2.2rem;
  position: relative;
}

.contact-us .contact-info .title {
  color: var(--primary-color);
}

.contact-us .text {
  color: #333;
  margin: 1.5rem 0 2rem 0;
}

.contact-us .information {
  display: flex;
  color: #555;
  margin: 0.7rem 0;
  align-items: center;
  font-size: 0.95rem;
}

.contact-us .information i {
  color: #bc1a1a;
}

.contact-us .icon {
  width: 28px;
  margin-right: 0.7rem;
}

.contact-us .social-media {
  padding: 2rem 0 0 0;
}

.contact-us .social-media p {
  color: #333;
}

.contact-us .social-icons {
  display: flex;
  margin-top: 0.5rem;
}

.contact-us .social-icons a {
  width: 35px;
  height: 35px;
  border-radius: 5px;
  background: linear-gradient(45deg, #bc1a1a, #921414);
  color: #fff;
  text-align: center;
  line-height: 35px;
  margin-right: 0.5rem;
  transition: 0.3s;
}

.contact-us .social-icons a:hover {
  /* transform: scale(1.05); */
  background: #bcbcbc;
  color: #831515;
}

.contact-us .contact-info:before {
  content: "";
  position: absolute;
  width: 110px;
  height: 100px;
  border: 22px solid #bc1a1a;
  border-radius: 50%;
  bottom: -77px;
  right: 50px;
  opacity: 0.3;
}

.contact-us .big-circle {
  position: absolute;
  /* width: 500px;
  height: 500px; */
  border-radius: 50%;
  background: linear-gradient(to bottom, #960000, #961a1a);
  bottom: 50%;
  right: 50%;
  transform: translate(-40%, 38%);
}

.contact-us .big-circle:after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  background-color: #fafafa;
  border-radius: 50%;
  top: calc(50% - 180px);
  left: calc(50% - 180px);
}

.contact-us .square {
  position: absolute;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(181%, 11%);
  opacity: 0.2;
}

@media (max-width: 850px) {
  .contact-us .form {
    grid-template-columns: 1fr;
  }

  .contact-us .contact-info:before {
    bottom: initial;
    top: -75px;
    right: 65px;
    transform: scale(0.95);
  }

  .contact-us .contact-form:before {
    top: -13px;
    left: initial;
    right: 70px;
  }

  .contact-us .square {
    transform: translate(140%, 43%);
    height: 350px;
  }

  .contact-us .big-circle {
    bottom: 75%;
    transform: scale(0.9) translate(-40%, 30%);
    right: 50%;
  }

  .contact-us .text {
    margin: 1rem 0 1.5rem 0;
  }

  .contact-us .social-media {
    padding: 1.5rem 0 0 0;
  }
}

@media (max-width: 480px) {
  .contact-us .container {
    padding: 1.5rem;
  }

  .contact-us .contact-info:before {
    display: none;
  }

  .contact-us .square,
  .contact-us .big-circle {
    display: none;
  }

  .contact-us form,
  .contact-us .contact-info {
    padding: 1.7rem 1.6rem;
  }

  .contact-us .text,
  .contact-us .information,
  .contact-us .social-media p {
    font-size: 0.8rem;
  }

  .contact-us .title {
    font-size: 1.15rem;
  }

  .contact-us .social-icons a {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }

  .contact-us .icon {
    width: 23px;
  }

  .contact-us .input {
    padding: 0.45rem 1.2rem;
  }

  .contact-us .btn {
    padding: 0.45rem 1.2rem;
  }
}

/* <!-- Contact Us End --> */

/* Footer Start */
.footer-container {
  display: flex;
  justify-content: space-between;
  padding: 40px;
  background: url("./Images/footer/footer-background.jpg") no-repeat
    center/cover;
  color: #ffffff;
  flex-wrap: wrap;
  font-weight: 300;
}

.footer-column {
  flex: 0.5;
  min-width: 200px;
  margin: 10px;
}

.footer-logo {
  width: 110px;
  margin-bottom: 20px;
  mix-blend-mode: difference;
 
}

.footer-column h4 {
  margin-bottom: 15px;
  font-size: 30px;
  color: #ffffff;
  /* text-shadow: 1px 1px 1px white; */
}

.footer-column ul {
  list-style-type: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
  font-weight: 300;
}

.footer-column ul li a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: red;
}

.social-icons a {
  color: #ffffff;
  font-size: 24px;
  margin-right: 15px;
  transition: color 0.3s;
  display: inline-block;
}

.social-icons a:hover {
  color: red !important;
}

.social-icons a:last-child {
  margin-right: 0;
}

.newsletter-form {
  margin-top: 15px;
}

.newsletter-form input {
  padding: 10px;
  margin-right: 10px;
  border: none;
  border-radius: 5px;
}

.newsletter-form button {
  padding: 10px 20px;
  background-color: #9e2525;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 10px;
}

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid #151414;
  background: #000;
  font-weight: 300;
  color: #fff;
}

.footer-bottom a {
  color: #fff;
  text-decoration: none;
  font-weight: 300;
}
.arrow-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    /* Change from right to left */
    display: flex;
    flex-direction: column;
    /* Stack buttons vertically */
    gap: 10px;
    /* Add spacing between buttons */
    z-index: 1000;
}

.back-to-top,
.WhatsApp-down {
    background-color: #920f0f;
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 10%;
    text-align: center;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    line-height: 50px;
    box-shadow: inset 0px 4px 6px #da2c2c;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.back-to-top:hover,
.WhatsApp-down:hover {
    background: #161616;
    box-shadow: inset 0px 4px 6px #5b5b5b;
    color: #ffff;
    animation: travelup 0.3s infinite ease-in-out linear;
}

@keyframes travelup {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-100%);
    }
}

@media (max-width: 768px) {
    .arrow-button {
        right: 10px;
        /* Adjust positioning for smaller screens */
    }
}
/* .back-to-top {
 
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #920f0f;
  color: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 10%;
  text-align: center;
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  line-height: 50px;
  box-shadow: inset 0px 4px 6px #da2c2c;
  transition: background-color 0.3s ease;
  cursor: pointer;
  z-index: 1000;
}

.back-to-top:hover {
  background: #161616;
  box-shadow: inset 0px 4px 6px #5b5b5b;
  color: #ffff;
  animation: travelup 0.3s infinite ease-in-out linear;
}

@keyframes travelup {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .back-to-top {
    display: block;
  }
} */

/* Footer End */

/*Floating icons start */
.floating-icons {
  position: fixed;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 100;
}

.floating-icons a {
  background-color: #333333;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 4px 6px #0000001a;
  transition: all 0.3s, color 0.3s;
  position: relative;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 1px 3px 5px #101010;
}

.floating-icons a:hover {
  transform: translateX(18%);
  background-color: #000000;
}

.floating-icons a img,
.floating-icons a i {
  width: 24px;
  height: 24px;
}

.floating-icons a::after {
  content: attr(data-hover-text);
  position: absolute;
  left: 60px; /* Position to the right of the icon */
  white-space: nowrap;
  background-color: rgba(0, 0, 0, 0.75);
  color: #ffffff;
  padding: 5px 10px;
  border-radius: 5px;
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.3s, transform 0.3s;
  font-size: 14px;
  font-weight: 500;
  pointer-events: none;
}

.floating-icons a:hover::after {
  opacity: 1;
  transform: translateX(1%);
}

.zomato-icon {
  background-color: #881313;
}

.swiggy-icon {
  background-color: #fc8019;
}

.whatsapp-icon {
  background-color: #25d366;
  color: #ffffff;
}

/* Floating icons  end */


@media (min-width: 360px) and (max-width: 1080px){
    .navbar .logo img {
    width: 6.5em;
    margin-left: -28px;
    }

    .right-section img{
        height: 70% !important;
         margin-top: -80px;
       
    }
    /* .left-section {
        overflow: hidden;
        position: relative !important;
         height: 100vh;
    }*/
    .left-section img{
         margin-top: -17px;
       
    }

    .text-overlay h1 {
        font-size: 44px;
        margin-top: -40px;
    }
    .text-overlay{
        margin-top: -90px !important;
    }
    .right_content{
        margin-top: -160px;
    }
     .footer-bottom {
        text-align: center !important;
        padding: 15px !important;
        font-size: 14px !important;
    }
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom p {
        margin: 0 auto !important;
        font-size: 14px !important;
        max-width: 90% !important;
        line-height: 1.5 !important;
        color: white;
    }

    .footer-bottom a {
        font-size: 14px !important;
        display: inline-block !important;
        margin: 5px 8px !important;
        text-decoration: none !important;
    }
   
    .text-overlay blockquote{
    padding: 0px 10px 0px 10px;
   }

    .left-section img, .right-section img {
    width: 100%;
    height: 85%;
    /* margin-top: -20px !important; */
    }
}