* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #f1fafb;
}

.header {
  padding: 20px;
  background-color: transparent;
}

.nav {
  background: #fff;
  padding: 20px 40px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  max-width: 1200px;
  margin: 0 auto;
}

.logo img {
  height: 45px;
  display: block;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 3000;
  padding: 10px;
}

.hamburger span {
  width: 30px;
  height: 2px;
  background-color: #39a0a7;
  border-radius: 2px;
  transition: 0.3s ease;
}

.dashboard {
  position: fixed;
  top: 0;
  right: -350px;
  width: 320px;
  height: 100vh;
  background: #fff;
  z-index: 2500;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
  padding-top: 80px;
}

.dashboard.active {
  transform: translateX(-350px);
}

.dashboard-content {
  display: flex;
  flex-direction: column;
}

.dashboard-content a {
  padding: 18px 30px;
  text-decoration: none;
  color: #5a3d5c;
  font-size: 18px;
  font-weight: 600;
  border-bottom: 1px solid #f5f5f5;
  transition: 0.3s;
}

.dashboard-content a.active {
  background-color: #6b4765;
  color: #fff;
}

.dashboard-content a:hover:not(.active) {
  background-color: #6b4765;
  color: white;
  padding-left: 40px;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  display: none;
  z-index: 2000;
}

.overlay.active {
  display: block;
}

.close-btn {
  position: absolute;
  top: 25px;
  right: 25px;
  font-size: 32px;
  color: #5a3d5c;
  cursor: pointer;
  font-weight: bold;
}

body.menu-open {
  overflow: hidden;
}

.hero {
  margin: 20px;
  height: 720px;
  background: #39a0a7;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
}

.hero-text {
  position: absolute;
  font-size: 135px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 6px;
  font-family: "Tagesschrift", system-ui;
}

.hero-text.back {
  top: 200px;
  left: 290px;
  z-index: 1;
  opacity: 0.95;
}

.hero-text.front {
  left: 75%;
  bottom: 230px;
  transform: translateX(-50%);
  z-index: 3;
}

.hero-text span {
  display: block;
}

.cone {
  position: absolute;
  bottom: 0px;
  left: 40%;
  transform: translateX(-0%);
  z-index: 2;
}

.cone img {
  width: 500px;
}

.cone-wrap {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
}

.cone-wrap img {
  width: 310px;
  animation: float 4s ease-in-out infinite;
}

.scoop {
  position: absolute;
  z-index: 3;
  animation: float 5s infinite ease-in-out;
}

.scoop-left {
  width: 90px;
  left: 60px;
  top: 80px;
}

.scoop-right {
  width: 100px;
  right: 80px;
  top: 120px;
}

/* INFO */
.info-box {
  position: absolute;
  left: 60px;
  bottom: 90px;
  width: 320px;
  color: #fff;
  z-index: 5;
}
/* INFO TEXT FIX */
.info-box h3 {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  font-family: "Tagesschrift", system-ui;
}

.info-box p {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 10px;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

.menu-btn {
  position: relative;
  overflow: hidden;
  background: #ff7aa0;
  border: none;
  padding: 10px 26px;
  border-radius: 24px;
  color: white;
  cursor: pointer;
}

.menu-btn::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: #b0209f;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  color: white;
}

.menu-btn:hover::before {
  animation: rippleWave 0.5s ease-in;
}

@keyframes rippleWave {
  0% {
    transform: translate(-50%, -50%) scale(0);
  }
  70% {
    transform: translate(-50%, -50%) scale(6);
  }
  100% {
    transform: translate(-50%, -50%) scale(9);
  }
}

.rating {
  margin-top: 12px;
  font-size: 14px;
}

.slider {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  z-index: 5;
}

.slider span {
  margin: 0 12px;
}

.slider .active {
  color: #ff7aa0;
}

@keyframes float {
  0% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, -15px);
  }
  100% {
    transform: translate(-50%, 0);
  }
}

.decor-top-left {
  top: 10px;
  left: 80px;
  width: 120px;
  animation: zoomPulse 3s ease-in-out infinite;
}

@keyframes zoomPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}

.decor-bottom-right {
  bottom: 80px;
  right: 70px;
  width: 120px;
  animation: floatSoft 2s ease-in-out infinite;
}

.hero-text {
  z-index: 3;
}
.cone {
  z-index: 2;
}
.info-box {
  z-index: 5;
}

@keyframes floatSoft {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

.decor {
  position: absolute;
  z-index: 2;
}

.decor-top-right {
  top: -90px;
  right: -0px;
}

.cone-ulti {
  width: 140px;
  transform: rotate(45deg) scaleY(-1);
}

.hero-decor {
  position: absolute;
  z-index: 4;
  filter: invert(1);
  opacity: 0.95;
}

@keyframes subtleLRShake {
  0% {
    transform: translateX(0);
  }
  15% {
    transform: translateX(-4px);
  }
  30% {
    transform: translateX(4px);
  }
  45% {
    transform: translateX(-3px);
  }
  60% {
    transform: translateX(3px);
  }
  75% {
    transform: translateX(-2px);
  }
  100% {
    transform: translateX(0);
  }
}
.icon-top-left {
  position: absolute;
  top: 170px;
  left: 110px;
  width: 90px;
  animation: subtleLRShake 2.2s ease-in-out infinite;
  animation-delay: 1s;
}
.icon-bottom-right {
  position: absolute;
  bottom: 100px;
  right: 200px;
  width: 100px;
  animation: subtleLRShake 2.6s ease-in-out infinite;
  animation-delay: 2s;
}

.hero-slider-nav {
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 44;
  background: #ffffff;
  padding: 20px 62px;
  border-radius: 40px;

  display: flex;
  align-items: center;
  gap: 22px;

  font-size: 22px;
  font-weight: 500;
  color: #5a3956;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  z-index: 10;
}

.hero-slider-nav span {
  cursor: pointer;
}

/* section2 */

.trending-wrapper {
  background: #bfbce6;
  padding: 60px 0;
  display: flex;
  justify-content: center;
  margin: 20px;
  border-radius: 30px;
  margin-top: 30px;
}

.trending-card {
  background: #fff;
  width: 90%;
  padding: 60px;
  border-radius: 40p;
  position: relative;
}

.trending-card::before {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 45px;
  background: radial-gradient(circle at 15px 15px, #fff 14px, transparent 15px);
  background-size: 30px 30px;
  z-index: -1;
}

.trending-title {
  text-align: center;
  font-size: 28px;
  color: #7a5c7d;
  margin-bottom: 40px;
}

.trending-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.trending-card::before {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 45px;
  background: radial-gradient(circle at 15px 15px, #fff 14px, transparent 15px);
  background-size: 30px 30px;
  z-index: -1;
}

.trending-title {
  text-align: center;
  font-size: 28px;
  color: #7a5c7d;
  margin-bottom: 40px;
}

.trending-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.item {
  text-align: center;
  position: relative;
  overflow: hidden;
  display: inline-block;
  border-radius: 20px;
  cursor: pointer;
}

.item img {
  width: 480px;
  height: 370px;
  object-fit: cover;
  border-radius: 20px;
  border: 6px solid #39a0a7;
  display: block;
}

.item::after {
  content: "";
  position: absolute;
  top: 6px;
  left: -150%;
  width: 150%;
  height: calc(100% - 12px);
  border-radius: 14px;

  background: linear-gradient(
    115deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0) 100%
  );

  pointer-events: none;
  z-index: 2;

  transition: left 0s;
}

.item:hover::after {
  left: 150%;
  transition: left 0.7s ease-in-out;
}

.item::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  border-radius: 14px;
  background: linear-gradient(
    115deg,
    rgba(255, 255, 255, 0.25) 0%,
    rgba(255, 255, 255, 0.05) 45%,
    transparent 46%
  );
  z-index: 1;
  pointer-events: none;
}

.view-btn {
  display: block;
  margin: 40px auto 0;
  background: #6b4765;
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 20px;
  cursor: pointer;
}

.decor {
  position: absolute;
}

.decor.tl {
  top: -90px;
  left: -90px;
  width: 200px;
}

.decor.tr {
  top: -80px;
  right: -60px;
  width: 200px;
}

.decor.br {
  bottom: -60px;
  right: -40px;
  width: 200px;
}

/* Section 3*/
.explore-section {
  position: relative;
  padding: 60px;
}

.section-title {
  color: #b56576;
  font-weight: 700;
  margin-bottom: 50px;
}

.decor-left {
  position: absolute;

  left: 40px;
  top: 20px;
  width: 180px;
  z-index: 1;
  pointer-events: none;
  animation: rotateStrawberry 8s ease-in-out infinite alternate,
    floatStrawberry 4s ease-in-out infinite;
}

@keyframes rotateStrawberry {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(270deg);
  }
}

.feature-item {
  position: relative;
  z-index: 2;
}

.feature-item h6 {
  font-weight: 700;
  font-size: 0.95rem;
  color: #333;
}

.feature-item p {
  font-size: 0.8rem;
  color: #666;
  line-height: 1.6;
}

.icon-box {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.video-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.central-video {
  width: 150%;
  height: 100%;

  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.1));
}

.btn-know-more1 {
  background-color: #ff85a2;
  color: white;
  border: none;
  border-radius: 50px;
  padding: 10px 30px;
  font-size: 0.85rem;
  font-weight: 600;
  position: absolute;
  bottom: -20px;
  box-shadow: 0 4px 15px rgba(255, 133, 162, 0.4);
  transition: 0.3s;
}

.btn-know-more1:hover {
  background-color: #f76c8e;
  transform: scale(1.05);
  color: white;
}

/* SECTION 3 */
.special-section {
  padding: 40px 15px;
}

.teal-card {
  background-color: #3a9a9a;
  border-radius: 30px;
  padding: 60px 30px;
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.heading {
  color: white;
  font-family: "Tagesschrift", system-ui;
  font-weight: 600;
  font-size: 50px;
  margin-bottom: 40px;
}

.special-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.flavor-col {
  flex: 1;
  text-align: left;
}

.flavor-list {
  list-style: none;
}

.flavor-list li {
  font-size: 1.2rem;
  padding: 15px 0;
  border-bottom: 5px dashed #5a3956;
  cursor: pointer;
  color: #5a3956;
  font-weight: 700;
  transition: 0.3s;
}

.flavor-list li:hover {
  color: #fff;
}

.flavor-list li.active {
  color: #fff;
  font-size: 1.4rem;
}

.image-col {
  flex: 1;
  display: flex;
  justify-content: center;
}

.flavor-image-wrapper {
  width: 280px;
  height: 380px;
  border-radius: 150px;
  border: 10px solid #5a3956;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.flavor-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .special-content {
    flex-direction: column;
  }

  .flavor-col {
    text-align: center;
  }

  .heading {
    font-size: 40px;
  }
}

@media (max-width: 480px) {
  .heading {
    font-size: 32px;
  }

  .flavor-image-wrapper {
    width: 240px;
    height: 330px;
  }
}

/* section5 */
.working-section {
  padding: 40px 15px;
}

.working-hours-card {
  background-color: #fce4ec;
  border-radius: 30px;
  padding: 50px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cone-container {
  position: relative;
  min-width: 300px;
}

.cone-bg-circle {
  position: absolute;
  width: 320px;
  height: 320px;
  background: #d81b60;
  border-radius: 50%;
  opacity: 0.2;
  left: -60px;
  top: 50%;
  transform: translateY(-50%);
  animation: colorWheel 8s linear infinite,
    pulseSize 4s ease-in-out infinite alternate;
}

.cone-pink-img {
  width: 300px;
  position: relative;
  z-index: 2;
}

.hours-info {
  max-width: 420px;
  font-family: "Tagesschrift", system-ui;
  color: #000;
}

.hours-info h3 {
  color: #d81b60;
  font-size: 2.4rem;
  margin-bottom: 15px;
}

.hours-info p {
  margin-bottom: 25px;
  line-height: 1.8;
}

.hours-info ul {
  list-style: none;
  padding: 0;
}

.hours-info li {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid #f3b6c8;
}

.hours-info li.closed {
  color: #000;
  font-weight: bold;
}

.choco-container {
  position: relative;
  width: 220px;
  align-self: flex-end;
}

.scoop-chocolate {
  width: 100%;
}
.para-hr {
  color: #e83778;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.falling-flakes {
  position: absolute;
  top: -160px;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  animation: sprinkleDrop 2.8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes sprinkleDrop {
  0% {
    transform: translate(-50%, -35px) scale(0.95);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  45% {
    transform: translate(-50%, 0) scale(1);
  }
  65% {
    transform: translate(-50%, 0) scale(1);
  }
  100% {
    transform: translate(-50%, -35px) scale(0.95);
    opacity: 0;
  }
}

@keyframes colorWheel {
  from {
    filter: hue-rotate(0deg);
    transform: translateY(-50%) rotate(0deg);
  }
  to {
    filter: hue-rotate(360deg);
    transform: translateY(-50%) rotate(360deg);
  }
}

@keyframes pulseSize {
  from {
    scale: 1;
  }
  to {
    scale: 1.1;
  }
}

@media (max-width: 992px) {
  .working-hours-card {
    flex-direction: column;
    text-align: center;
  }

  .cone-container,
  .choco-container {
    display: none;
  }

  .hours-info {
    max-width: 100%;
  }
}

.insta-section {
  padding: 40px 20px;
}
.insta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.insta-box {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
}
.insta-box img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.insta-hover {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.4s ease;
}
.insta-box:hover .insta-hover {
  opacity: 1;
}
.insta-box:hover img {
  transform: scale(1.1);
}

.footer {
  background: #3aa3a3;
  color: #fff;
  padding: 80px;
  position: relative;
  border-radius: 30px;

  margin: 20px;
  /* font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif; */
}
.footer-top {
  text-align: center;
  margin-bottom: 50px;
}
.footer-logo {
  max-width: 240px;
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px;
}
.social-icon {
  position: relative;
  width: 45px;
  height: 45px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.4s ease;
  z-index: 1;
}
.social-icon i {
  color: #383838;
  font-size: 20px;
  transition: color 0.4s ease;
  z-index: 2;
}

.social-icon.instagram:hover {
  background: #5a3956;
}
.social-icon.facebook:hover {
  background: #5a3956;
}
.social-icon:hover i {
  color: #fff;
}

.social-icon::before,
.social-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
}
.social-icon.instagram::before,
.social-icon.instagram::after {
  background: #5a3956;
}
.social-icon.facebook::before,
.social-icon.facebook::after {
  background: #5a3956;
}

.social-icon:hover::before {
  animation: ripple 1.2s infinite;
}
.social-icon:hover::after {
  animation: ripple 1.2s infinite 0.4s;
}

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-col h4 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #fff;
}
.footer-col ul {
  list-style: none;
}
.footer-col li {
  margin-bottom: 12px;
  font-size: 15px;
  opacity: 0.9;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.contact-list i {
  margin-top: 4px;
  font-size: 16px;
}

.footer-icecream {
  position: absolute;
  right: 20px;
  bottom: 10px;
  width: 150px;
}

@media (max-width: 900px) {
  .insta-grid,
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer {
    padding: 40px 20px;
  }
}
@media (max-width: 500px) {
  .insta-grid,
  .footer-content {
    grid-template-columns: 1fr;
  }
  .footer-icecream {
    display: none;
  }
}
/* aboutus */

.wave-hero {
  --size: 60px;
  --m: 0.5;
  --p: calc(var(--m) * var(--size));
  --R: calc(var(--size) * sqrt(var(--m) * var(--m) + 1));
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #39a0a7;
  mask: radial-gradient(
        var(--R) at 50% calc(100% - (var(--size) + var(--p))),
        #000 99%,
        #0000 101%
      )
      calc(50% - 2 * var(--size)) 0 / calc(4 * var(--size)) 100%,
    radial-gradient(var(--R) at 50% calc(100% + var(--p)), #0000 99%, #000 101%)
      50% calc(100% - var(--size)) / calc(4 * var(--size)) 100% repeat-x;
  -webkit-mask: radial-gradient(
        var(--R) at 50% calc(100% - (var(--size) + var(--p))),
        #000 99%,
        #0000 101%
      )
      calc(50% - 2 * var(--size)) 0 / calc(4 * var(--size)) 100%,
    radial-gradient(var(--R) at 50% calc(100% + var(--p)), #0000 99%, #000 101%)
      50% calc(100% - var(--size)) / calc(4 * var(--size)) 100% repeat-x;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.wave-hero::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 120px;

  border-top-left-radius: 100% 60px;
  border-top-right-radius: 100% 60px;
}

.sprinkles-overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#ff6b6b 15%, transparent 16%),
    radial-gradient(#feca57 15%, transparent 16%),
    radial-gradient(#fff 15%, transparent 16%);
  background-size: 60px 60px;
  background-position: 0 0, 30px 30px, 15px 45px;
  opacity: 0.3;
  z-index: 1;
}

.about-title {
  color: white;
  font-size: 52px;
  font-weight: 900;
  z-index: 10;

  text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.1);
  font-family: "Tagesschrift", system-ui;
}

.about-main {
  text-align: center;
  position: relative;
}

.about-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.scoop {
  position: absolute;
  width: 200px;
  z-index: 10;
  pointer-events: none;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
}

.scoop.left {
  top: -220px;
  left: -180px;
  animation: scoopSwing 6.8s ease-in-out infinite;
}
.scoop.right {
  top: -220px;
  right: -180px;
  animation: scoopSwing 6.8s ease-in-out infinite;
}
@keyframes scoopSwing {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-15px) rotate(3deg);
  }
  50% {
    transform: translateY(0) rotate(0deg);
  }
  75% {
    transform: translateY(-12px) rotate(-3deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

.welcome-text {
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: #6b4765;
  line-height: 1.2;
  margin-bottom: 40px;
}

.animate-words span {
  opacity: 0;
  transform: translateY(25px);
  display: inline-block;
  animation: wordReveal 0.7s ease forwards;
}

@keyframes wordReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.intro-text {
  font-size: 16px;
  line-height: 1.3;
  color: #444;
  max-width: 950px;
  margin: auto;
}

.container.vertical {
  display: flex;
  justify-content: center;
  padding: 100px 0;
}

.box.three {
  width: 100%;
  max-width: 1400px;
  min-height: 700px;
  background: #39a0a7;
  position: relative;
  --mask: linear-gradient(0deg, #0000 50px, #000 0) 0 25px,
    radial-gradient(25px, #000 98%, #0000) 50%/46.25px 50px repeat space;
  -webkit-mask: var(--mask);
  mask: var(--mask);
  display: flex;
  align-items: center;
  padding: 100px 80px;
  box-sizing: border-box;
}

.teal-box-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  z-index: 5;
  color: white;
}

.video-wrapper {
  width: 100%;

  overflow: hidden;

  background: #fff;
  aspect-ratio: 10 / 16;
  max-width: 360px;
  margin: 0 auto;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: pointer;
}

.teal-text-side {
  position: relative;
  text-align: left;
}

.svg-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
  fill: white;
  display: block;
}

.teal-text-side h2 {
  font-size: 48px;
  margin: 0 0 20px 0;
  font-weight: 800;
}

.teal-text-side p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 35px;
  opacity: 0.95;
}

.view-menu-btn {
  display: inline-block;
  padding: 14px 40px;
  background: white;
  color: #39a0a7;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 16px;
  transition: all 0.3s ease;
}

.view-menu-btn:hover {
  background: #f0f0f0;
  transform: translateY(-3px);
}

@media (max-width: 1024px) {
  .teal-box-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .teal-text-side {
    text-align: center;
  }
  .svg-icon {
    margin: 0 auto 20px;
  }
  .box.three {
    padding: 100px 20px;
  }
}

/* franchise */

.floating-scoop {
  position: absolute;
  width: 280px;
  z-index: 5;
  pointer-events: none;
}

.left-scoop {
  left: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.right-scoop {
  right: 8%;
  top: 55%;
  transform: translateY(-50%);
}

@keyframes float {
  0% {
    transform: translateY(-50%) translateX(0px);
  }
  50% {
    transform: translateY(-53%) translateX(5px);
  }
  100% {
    transform: translateY(-50%) translateX(0px);
  }
}

.floating-scoop {
  animation: float 4s ease-in-out infinite;
}

/* Content Area */
.franchise-content {
  padding: 60px 5%;
  text-align: center;
}

.intro-text h2 {
  color: #6b4765;
  font-size: 2.5rem;
  font-family: "Fredoka", sans-serif;
  margin-bottom: 15px;
}

.intro-text p {
  max-width: 800px;
  margin: 0 auto 60px;
  color: #666;
  line-height: 1.6;
}

.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.f-card {
  position: relative;
  padding-top: 40px;
}

.card-inner {
  position: relative;
  border-radius: 20px;
  padding: 40px 25px 30px;
  color: white;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  z-index: 1;

  border: none;
}
.card-inner::after {
  content: "";
  position: absolute;

  top: 10px;
  bottom: 10px;
  left: 10px;
  right: 10px;

  background-image: repeating-linear-gradient(
      0deg,
      #fff,
      #fff 10px,
      transparent 10px,
      transparent 20px
    ),
    repeating-linear-gradient(
      90deg,
      #fff,
      #fff 10px,
      transparent 10px,
      transparent 20px
    ),
    repeating-linear-gradient(
      180deg,
      #fff,
      #fff 10px,
      transparent 10px,
      transparent 20px
    ),
    repeating-linear-gradient(
      270deg,
      #fff,
      #fff 10px,
      transparent 10px,
      transparent 20px
    );

  background-size: 2px 100%, 100% 2px, 2px 100%, 100% 2px;
  background-position: 0 0, 0 0, 100% 0, 0 100%;
  background-repeat: no-repeat;

  animation: boxBorderAnimation 1s infinite linear;
  animation-play-state: running;

  pointer-events: none;
  z-index: 1;
  border-radius: 15px;
  opacity: 0.7;
}

@keyframes boxBorderAnimation {
  0% {
    background-position: 0 0, 0 0, 100% 0, 0 100%;
  }
  100% {
    background-position: 0 -20px, 20px 0, 100% 20px, -20px 100%;
  }
}

.card-inner h3,
.card-inner p,
.card-inner .arrow-btn {
  position: relative;
  z-index: 2;
}

.red .card-inner {
  background-color: #e66b61;
}
.pink .card-inner {
  background-color: #f089b0;
}
.purple .card-inner {
  background-color: #9c99c9;
}
.yellow .card-inner {
  background-color: #e8c872;
}

.icon-circle {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.red .icon-circle {
  color: white;
  background-color: #e66b61;
}
.pink .icon-circle {
  color: white;
  background: #f089b0;
}
.purple .icon-circle {
  color: white;
  background-color: #9c99c9;
}
.yellow .icon-circle {
  color: white;
  background-color: #e8c872;
}

.f-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.f-card p {
  font-size: 0.95rem;
  margin-bottom: 20px;
  opacity: 0.95;
}

.arrow-btn {
  width: 40px;
  height: 40px;
  background: rgb(255, 255, 255);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.arrow-btn i {
  font-size: 0.9rem;
}
.red .arrow-btn {
  color: #e66b61;
}
.pink .arrow-btn {
  color: #f089b0;
}
.purple .arrow-btn {
  color: #9c99c9;
}
.yellow .arrow-btn {
  color: #e8c872;
}

.arrow-btn:hover {
  transform: scale(1.1);
}

.card-inner {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.card-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.f-card:hover .card-inner::before {
  opacity: 0.3;
}

.red .card-inner::before {
  background-image: url("../assets/peshawari.png");
}
.pink .card-inner::before {
  background-image: url("../assets/peshawari.png");
}
.purple .card-inner::before {
  background-image: url("../assets/peshawari.png");
}
.yellow .card-inner::before {
  background-image: url("../assets/peshawari.png");
}

.f-card:hover .card-inner {
  background-color: rgba(0, 0, 0, 0.2) !important;
}
.hero-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img {
  position: absolute;
  width: 250px;
  z-index: 5;
}

.left-scoop {
  left: 10%;
  top: 20%;
}

.right-scoop {
  right: 10%;
  bottom: 10%;
}
/* Offer Section */
.offer-section {
  padding: 80px 10%;
  background-color: #fdf0f0;
}

.offer-container {
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.offer-image img {
  height: 90%;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.offer-text h2 {
  font-family: "Fredoka", sans-serif;
  color: #6b4765;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.check-list li {
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: #444;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.check-list i {
  color: #333;
  margin-top: 3px;
}

.about-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #6b4765;
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
}

/* Get Start*/
.get-started {
  background-color: #73c8bd;
  position: relative;
  padding: 100px 5% 60px;
}

.form-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  gap: 50px;
  align-items: flex-start;
}

.contact-card {
  flex: 1;
  position: relative;
  border-radius: 30px;
  overflow: hidden;
}

.contact-card img {
  width: 100%;
  display: block;
}

.direct-call {
  position: absolute;
  bottom: 90px;
  left: 50px;
  right: 20px;

  padding: 15px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  color: rgb(255, 255, 255);
  gap: 15px;
}

.form-wrapper {
  flex: 1.5;
  color: white;
}

.form-wrapper h2 {
  font-family: "Fredoka", sans-serif;
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.form-wrapper input,
.form-wrapper textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 15px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: white;
  font-family: inherit;
}

.form-wrapper input::placeholder,
.form-wrapper textarea::placeholder {
  color: rgba(0, 0, 0, 0.8);
}

.input-row {
  display: flex;
  gap: 15px;
}

.submit-btn1 {
  background-color: #2f8889;
  color: white;
  border: none;
  padding: 12px 40px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
}
#ft {
  padding: 30px;

  color: rgb(11, 11, 11);
  text-align: center;
  font-size: 0.9rem;
  font-weight: 500;
  width: 100%;
  overflow: hidden;

  animation: slideInLeft 1.2s ease-out forwards;

  position: relative;
  overflow: hidden;
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.contact-hero {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero-img {
  position: absolute;
  width: 180px;
}

.hero-img.left {
  left: 8%;
  bottom: 75px;
  animation: scoopSwing 6.8s ease-in-out infinite;
}

.hero-img.right {
  right: 8%;
  bottom: 85px;
  animation: scoopSwing 6.8s ease-in-out infinite;
}

.contact-area {
  background: #f2fbfb;
  padding: 120px 60px;
}

.contact-inner {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.contact-info1 h2 {
  font-size: 42px;
  color: #ef5350;
  margin-bottom: 20px;
}

.contact-info1 p {
  max-width: 520px;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 50px;
  color: #444;
}

.info1-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
}

.info1-box {
  display: flex;
  gap: 16px;
}

.info1-box i {
  font-size: 26px;
  color: #3aa0a6;
}

.info1-box h4 {
  margin: 0 0 6px;
  font-weight: 700;
}

.info1-box span {
  font-size: 14px;
  color: #555;
}

.contact-map {
  background: #fff;
  padding: 18px;
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.contact-map iframe {
  width: 100%;
  height: 420px;
  border-radius: 14px;
  border: 0;
}

@media (max-width: 1000px) {
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .info1-grid {
    grid-template-columns: 1fr;
  }

  .hero-img {
    display: none;
  }

  .contact-area {
    padding: 80px 25px;
  }

  .about-title {
    font-size: 42px;
  }
}
/* blog */

.blog-section {
  background-color: #fff1f3;
  padding: 80px 20px;
  position: relative;
  font-family: "Inter", sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.blog-card {
  border-radius: 30px;
  border: 2px solid #008080; /* Teal border */
  overflow: hidden;
  display: flex;
  flex-direction: column;

  cursor: pointer;
  text-decoration: none;
}

.card-image-box {
  position: relative;
  height: 230px;
  margin: 10px;
  border-radius: 20px;
  overflow: hidden;
}

.card-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.card-image-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.12);

  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 2;
}

.card-image-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 120%;
  height: 100%;
  background: linear-gradient(
    110deg,
    transparent 0%,
    rgba(255, 255, 255, 0.35) 50%,
    transparent 100%
  );
  transition: left 0.7s ease;
  z-index: 3;
}

.blog-card:hover .card-image-box::before {
  opacity: 1;
}

.blog-card:hover .card-image-box::after {
  left: 120%;
}

.card-body {
  padding: 0 25px 30px 25px;
}

.date {
  font-size: 0.85rem;
  font-weight: 600;
  color: #444;
  margin-bottom: 10px;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin: 10px 0 15px 0;
  color: #2c2c2c;
  font-family: "Tagesschrift", system-ui;
}

.excerpt {
  color: #666;
  font-size: 0.75rem;
  line-height: 1.2;
  margin: 0;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}

.blog-card:hover {
  border-color: #ef5350 !important;
}

.blog-card:hover .card-title {
  color: #ef5350 !important;
}

.pagination-wrapper {
  display: flex;
  justify-content: center;
  margin: 80px 0 40px;
}

.pagination {
  display: flex;
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pagination li a,
.pagination li span {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid #ddd;
  background: #fff;
  color: #333;
  transition: all 0.3s ease;
}

/* ACTIVE */
.pagination li.active span {
  background: #ef5350;
  color: #fff;
  border-color: #ef5350;
}

.pagination li a:hover {
  background: #ef5350;
  color: #fff;
  border-color: #ef5350;
}

.pagination li.dots {
  display: flex;
  align-items: center;
  font-weight: 600;
  color: #777;
  padding: 0 6px;
}

.pagination li.arrow a {
  background: #39a0a7;
  color: #fff;
  border-color: #39a0a7;
}

.pagination li.arrow a:hover {
  background: #2c8d93;
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #4db6ac;
  color: white;
  width: 45px;
  height: 45px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 1000;
}

.back-to-top:hover {
  background-color: #3d968d;
  transform: translateY(-3px);
}

.back-to-top svg {
  display: block;
}
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  display: none;
  z-index: 2000;
}

.overlay.active {
  display: block;
}

.wave-hero {
  --size: 60px;
  --m: 0.5;
  --p: calc(var(--m) * var(--size));
  --R: calc(var(--size) * sqrt(var(--m) * var(--m) + 1));

  height: 420px;
  background: #3ba7a8;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;

  mask: radial-gradient(
        var(--R) at 50% calc(100% - (var(--size) + var(--p))),
        #000 99%,
        #0000 101%
      )
      calc(50% - 2 * var(--size)) 0 / calc(4 * var(--size)) 100%,
    radial-gradient(var(--R) at 50% calc(100% + var(--p)), #0000 99%, #000 101%)
      50% calc(100% - var(--size)) / calc(4 * var(--size)) 100% repeat-x;

  -webkit-mask: radial-gradient(
        var(--R) at 50% calc(100% - (var(--size) + var(--p))),
        #000 99%,
        #0000 101%
      )
      calc(50% - 2 * var(--size)) 0 / calc(4 * var(--size)) 100%,
    radial-gradient(var(--R) at 50% calc(100% + var(--p)), #0000 99%, #000 101%)
      50% calc(100% - var(--size)) / calc(4 * var(--size)) 100% repeat-x;
}

.sprinkles-overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#990f8d 15%, transparent 16%),
    radial-gradient(#4bb61d 15%, transparent 16%),
    radial-gradient(#f7d00e 15%, transparent 16%);
  background-size: 60px 60px;
  background-position: 0 0, 30px 30px, 15px 45px;
  opacity: 0.3;
  z-index: 1;
}

.about-title {
  color: white;
  font-size: 52px;
  font-weight: 900;
  z-index: 5;
  font-family: "Tagesschrift", system-ui;
  text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.15);
}

.category-nav-wrapper {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #3ba7a8;
  padding: 12px 0;
}

.category-nav {
  display: flex;
  justify-content: center;
  gap: 15px;
  overflow-x: auto;
  padding: 0 20px;
  scrollbar-width: none;
}

.category-nav::-webkit-scrollbar {
  display: none;
}

.cat-link {
  color: white;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 15px;
  white-space: nowrap;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.cat-link:hover {
  background: white;
  color: #3ba7a8;
}

.cat-link.active {
  background-color: white;
  color: #3ba7a8;
}

.menu-section {
  padding: 70px 5%;
  background-color: #eadee3;
  text-align: center;
}

.section-heading {
  color: #e66b61;
  font-family: "Fredoka", sans-serif;
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.menu-item {
  position: relative;
}

/* Image wrapper */
.item-image-wrapper {
  border: 5px solid #3ba7a8;
  border-radius: 40px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  margin-bottom: 15px;
  background-color: white;
}

.item-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.menu-item:hover img {
  transform: scale(1.1);
}

/* Item name */
.item-name {
  color: #e66b61;
  font-family: "Fredoka", sans-serif;
  font-size: 1.1rem;
  margin: 0;
}

/* Price */
.item-price {
  font-weight: 700;
  font-size: 1.2rem;
  margin-top: 6px;
  color: #333;
}
/* shop */

.product-container {
  padding: 90px;
  background-color: #ffedf0;
  width: 100%;
}

.product-grid {
  display: flex;
  gap: 90px;
}

.product-image img {
  width: 400px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-info h2 {
  color: #e15354;
  font-size: 3rem;
  font-family: "Tagesschrift", system-ui;
}

.price {
  font-weight: bold;
  font-size: 1.2rem;
}

.reviews {
  margin-top: 60px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: flex-start;
}

.tabs {
  padding: 30px;
  color: #e15354;
  font-size: 22px;
  text-align: center;
}

.para3 {
  margin-top: 15px;
  color: #000;
  font-size: 16px;
  text-align: left;
}

.review-box {
  background: #fff;
  padding: 40px;
  border-radius: 15px;
}

.review-box h3 {
  color: #e15354;
  font-family: "Tagesschrift", system-ui;
  font-size: 32px;
  margin-bottom: 10px;
}

.input-group {
  display: flex;
  gap: 15px;
  margin: 15px 0;
}

.input-group input {
  flex: 1;
}

input,
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
}

textarea {
  height: 110px;
  margin-bottom: 15px;
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  margin: 15px 0;
}

.checkbox input {
  width: auto;
  margin: 0;
}

.submit-btn {
  background: #e15354;
  color: #fff;
  border: none;
  padding: 10px 32px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
}
.stars {
  color: #9ca7a8;
}

.hero1 {
  margin: 20px;
  height: 720px;
  background: #fcd34d;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
}

.hero1-text {
  position: absolute;
  font-size: 135px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 6px;
  font-family: "Tagesschrift", system-ui;
}

.hero1-text.back {
  top: 120px;
  left: 280px;
  z-index: 1;
  opacity: 0.95;
}

.hero1-text.front {
  left: 75%;
  bottom: 230px;
  transform: translateX(-50%);
  z-index: 3;
}

.hero1-text span {
  display: block;
}
.prev,
.next {
  cursor: pointer;
  padding: 8px 14px;

  color: rgb(142, 13, 13);
  border-radius: 20px;
  user-select: none;
  transition: background 0.3s;
}

.hero1 {
  display: none;
}
.hero{
  display: block;
}
.hero,
.hero1 {
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
