/* Global */
* { box-sizing: border-box; margin:0; padding:0; }
body { font-family: 'Segoe UI', sans-serif; line-height:1.5; color:#333; background:#fff; }
a { text-decoration:none; color:inherit; }

/* Layout helpers */
.container { width:90%; max-width:1200px; margin:0 auto; }

/* Header */
header { background:#000; color:#fff; padding:10px 0; }
.header-container { display:flex; align-items:center; justify-content:space-between; }
header .logo img { height:50px; margin-right:10px; }
header nav a { margin:0 10px; color:#fff; font-weight:500; }
.btn-franchise {
  background:#FF6200; padding:8px 15px; color:#fff;
  border-radius:4px; font-weight:bold;
}

/* Hero */
.hero { padding:50px 0; display:flex; background:#080808; color:#fff; }
.hero-content { flex:1; padding-right:20px; }
.hero-content h1 { font-size:2.8rem; }
.hero-content p { margin-top:15px; font-size:1rem; color:#ccc;}
.hero-img {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.hero-img img {
  max-width: 48%;
  border-radius: 8px;
  object-fit: contain;
}


/* Menu */
/*
.menu { padding:50px 0; text-align:center; }
.menu .subtitle { color:#555; margin-bottom:20px;}
.menu-items { display:flex; gap:20px; justify-content:center; flex-wrap:wrap;}
.menu-items div { width:220px; background:#fff; border-radius:8px; overflow:hidden; box-shadow:0 2px 8px rgba(0,0,0,0.1); }
.menu-items img { width:100%; height:241px;  }
.menu-items span { display:block; padding:10px 0; font-weight:600; }
.btn-view-more {
  display:inline-block; margin-top:20px; padding:10px 20px;
  border:2px solid #FF6200; color:#FF6200; border-radius:20px;
} */
 /* Menu Section */
.menu-slider-section {
  padding: 60px 20px;
  background: #fafafa;
  text-align: center;
}

.menu-slider-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
}

.menu-slider-section .subtitle {
  color: #666;
  margin-bottom: 40px;
  font-size: 1rem;
  font-weight: 500;
}

/* Menu Item Card */
.menu-item {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
}

.menu-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.menu-item .menu-img {
  width: 140px;
  height: 140px;
  /*object-fit: contain;*/
  /*border-radius: 50%;*/
  /*margin: 0 auto 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);*/
}

.menu-item h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 10px 0 8px;
  color: #333;
}

.menu-item .ingredients {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 8px;
}

.menu-item .price {
  font-size: 1rem;
  font-weight: 700;
  color: #FF6200;
}

.btn-view-more {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 28px;
  background: #FFD700; /* Yellow */
  color: #000; /* Black text for contrast */
  font-weight: 600;
  font-size: 1rem;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-view-more:hover {
  background: #FFC300; /* Darker yellow on hover */
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}


/* Reviews */
.reviews {
  background: #090909;
  color: #fff;
  padding: 40px 0;
}
.reviews .container {
  text-align: center;
}
.review-card {
  padding: 10px;
  border-radius: 8px;
}
.review-card img {
  width: 100%;
  height: 284px;
  border-radius: 10%;
  
  transition: transform 0.3s ease-in-out;
}
.review-card img:hover {
  transform: scale(1.05);
}

/* Instagram Feed Grid */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 16px;
  margin-top: 20px;
}
.insta-post {
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  background: #f9f9f9;
}
.insta-post img,
.insta-post video {
  width: 100%;
  display: block;
}
.insta-caption {
  padding: 8px;
  font-size: 14px;
  color: #333;
}



/* Special */
.special { padding:50px 0; }
.special .coming { color:#777; margin-bottom:10px;}
.special-item {
  display:flex; align-items:center; gap:20px; margin-top:20px;
}
.special-item img {
  width:250px; border-radius:8px; object-fit:cover;
}
.special-item-branches img{
   width:60%; border-radius:8px; object-fit:cover;
}

.special-item-branches {
  display: flex;
  flex-direction: column;
  align-items: center;      /* Center horizontally */
  justify-content: center;  /* Optional: center vertically if parent has height */
  text-align: center;       /* Center any inline text */
  margin: 0 auto;           /* Center the block if it has fixed or % width */
  width: fit-content;       /* Keeps it tight to content, optional */
}
.special-branches{
background-color: black;
}
.progress-bar {
  width:100px; height:8px; background:#ddd; border-radius:4px;
  margin:5px 0;
}
.progress-bar .filled {
  width:60%; height:100%; background:#4CAF50; border-radius:4px;
}

/* Cakes */
.cakes { background:#FAD7A0; padding:40px 0; }
.cakes-container {
  display:flex; align-items:center; gap:20px;
}
.cakes-container img {
  width:40%; border-radius:8px; object-fit:cover;
}
.cakes-content h2 { font-size:2rem; margin-bottom:10px;}
.available-on span { font-weight:bold; }

/* Tea Types */
.tea-types { padding:50px 0; text-align:center; }
.tea-types .subtitle { color:#555; margin-bottom:20px;}
.tea-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(150px,1fr)); gap:20px; }
.tea-grid div {
  background:#000; color:#fff; padding:20px;
  border-radius:8px;
}
.tea-grid img { width:100%; height:100px; object-fit:contain; margin-bottom:10px; }

/* Footer */
footer { background:#151515; color:#ccc; padding:50px 0; }
.footer-container { display:flex; gap:20px; flex-wrap:wrap; }
.footer-about, .footer-links, .footer-contact { flex:1; min-width:200px;}
.footer-links a { display:block; margin:5px 0; color:#ccc; }
.footer-bottom { text-align:center; margin-top:20px; color:#777;}

.slider-container {
  position: relative;
  width: 80%;
  margin: auto;
  overflow: hidden;
  border: 2px solid #ccc;
  border-radius: 10px;
}

.slider {
  display: flex;
  transition: transform 0.4s ease;
  scroll-behavior: smooth;
}

.slide {
  min-width: 300px;
  height: 200px;
  margin: 10px;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  text-align: center;
  line-height: 200px;
  font-size: 24px;
  border-radius: 8px;
  flex-shrink: 0;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #000000a0;
  color: white;
  border: none;
  padding: 12px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
}

.arrow.left {
  left: 10px;
}

.arrow.right {
  right: 10px;
}

.arrow:hover {
  background-color: #000;
}

/* Responsive Design */

/* For tablets and below (≤ 991px) */
@media (max-width: 991px) {
  .header-container,
  .hero,
  .cakes-container,
  .special-item,
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-content {
    padding-right: 0;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .cakes-container img {
    width: 80%;
  }

  .special-item img {
    width: 80%;
  }

  .menu-items div {
    width: 45%;
  }

  .review-list {
    flex-wrap: nowrap;
    overflow-x: scroll;
  }
}

/* For small devices (≤ 767px) */
@media (max-width: 767px) {
  .container {
    width: 95%;
  }

  header nav a {
    display: block;
    margin: 10px 0;
  }

  .header-container {
    flex-direction: column;
    gap: 10px;
  }

  .hero {
    flex-direction: column;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-img img,
  .cakes-container img,
  .special-item img {
    width: 100%;
  }

  .menu-items div {
    width: 100%;
  }

  .review-card {
    min-width: 200px;
  }

  .tea-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }

  .cakes-content h2 {
    font-size: 1.5rem;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
  }
}
 .menu-slider-section .swiper-slide {
  text-align: center;
}

.menu-slider-section img {
  width: 120px;
  height: auto;
  margin: 0 auto;
}

.menu-slider-section span {
  display: block;
  margin-top: 10px;
  font-size: 16px;
  color: #333;
  font-weight: 500;
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery {
  overflow: hidden;
}

.gallery .swiper-wrapper {
  height: auto;
  padding: 30px 0;
}

.gallery .swiper-slide {
  transition: transform 0.4s ease, box-shadow 0.3s ease;
}

.gallery .swiper-slide img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.3s ease-in-out;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  position: relative;
}

/* Hover lift effect */
.gallery .swiper-slide:hover {
  transform: translateY(-10px);
}

/* Active slide effect */
.gallery .swiper-slide-active {
  transform: scale(1.15) rotate(-1deg);
  z-index: 2;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

/* Gradient overlay */
.gallery .swiper-slide img::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  border-radius: 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

/* Pagination bullets with glassmorphism */
.gallery .swiper-pagination .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  width: 14px;
  height: 14px;
  margin: 0 6px !important;
  opacity: 1;
  transition: all 0.3s ease;
}

.gallery .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--accent-color);
  border: 2px solid #fff;
  transform: scale(1.3);
}
.gallery .swiper-wrapper {
  transition-timing-function: linear !important; /* No easing */
}
/* ================= FRANCHISE PROCESS ================= */
    .franchise-process {
      background: #fff;
      padding: 70px 0;
    }

    .process-title {
      font-size: 2.6rem;
      font-weight: 700;
      color: #6b2f1a;
      margin-bottom: 60px;
      text-align: center;
    }

    .process-line {
      height: 2px;
      background: #e6e6e6;
      margin-bottom: 60px;
    }

    .process-step {
      text-align: center;
      position: relative;
    }

    .step-icon {
      width: 55px;
      height: 55px;
      background: #6b2f1a;
      color: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: auto;
      font-size: 22px;
      z-index: 2;
      position: relative;
    }

    .step-card {
      background: #fff;
      padding: 25px 20px;
      border-radius: 6px;
      margin-top: 20px;
      box-shadow: 0 8px 25px rgba(0,0,0,0.08);
      transition: all 0.3s ease;
      position: relative;
      min-height: 160px;
    }

    .step-card::before {
      content: "";
      position: absolute;
      top: -10px;
      left: 50%;
      transform: translateX(-50%);
      border-left: 10px solid transparent;
      border-right: 10px solid transparent;
      border-bottom: 10px solid #fff;
    }

    .step-card h5 {
      font-weight: 700;
      margin-bottom: 10px;
      color: #333;
    }

    .step-card p {
      font-size: 0.9rem;
      color: #555;
      line-height: 1.6;
    }

    .process-step:hover .step-card {
      transform: translateY(-6px);
      box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    }

    /* ================= ARROWS ================= */
    .process-arrow {
      width: 45px;
      height: 45px;
      background: #6b2f1a;
      color: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
    }

    /* ================= MOBILE ================= */
    @media (max-width: 768px) {
      .process-line {
        display: none;
      }
    }
.stats-section {
  padding: 60px 20px;
    text-align: center;
    background-color: #821D26;
    color: white;
    font-family: 'Arial', sans-serif;
}

.stats-section h2 {
  font-size: 32px;
  margin-bottom: 40px;
  font-weight: bold;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.stat-item {
  flex: 1 1 200px;
  max-width: 220px;
  text-align: center;
}

.stat-item .stat-icon {
  width: 60px;
  margin-bottom: 15px;
}

.stat-item h3 {
  font-size: 28px;
  margin: 10px 0 5px;
  font-weight: bold;
}

.stat-item p {
  font-size: 16px;
  margin: 0;
}
@media (max-width: 768px) {
  .stats-grid {
    gap: 20px;
  }
  .stat-item h3 {
    font-size: 24px;
  }
  .stat-item p {
    font-size: 14px;
  }
}
.tea-hero-slider{
  width:100%;
  aspect-ratio: 16 / 7;     /* keeps image proportion */
  max-height: 500px;
  overflow:hidden;
  position:relative;
}

.tea-slider-track{
  display:flex;
  width:100%;
  height:100%;
  transition:transform 0.7s ease;
}

.tea-slider-track img{
  min-width:100%;
  height:100%;
  object-fit:cover;
  object-fit: contain;
}

@media(max-width:768px){
  .tea-hero-slider{
    height:40vh;
  }
}

@media(max-width:480px){
  .tea-hero-slider{
    height:30vh;
  }
}

.about-section {
  padding: 80px 5%;
  background: #fff;
}

/* Layout */
.about-container {
  max-width: 1300px;
  margin: auto;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 60px;
}

/* Text */
.about-text {
  flex: 0 0 40%;
}

.about-text h6 {
  color: #9b3f00;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 10px;
}

.about-text h3 {
  font-size: 42px;
  color: #3b1d00;
  margin-bottom: 25px;
  line-height: 1.2;
}

.about-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 18px;
}

.about-text .highlight {
  font-weight: 600;
  color: #000;
}

/* Button */
.btn-view-more {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 34px;
  background: #000;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-view-more:hover {
  background: #c45a00;
}

/* Image */
.about-image {
  flex: 0 0 60%;
}

.about-image img {
  width: 100%;
  height: 100%;
  max-height: 650px;
  object-fit: cover;
  display: block;
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

/* Responsive / Zoom Safe */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    gap: 40px;
  }

  .about-text,
  .about-image {
    flex: 100%;
    text-align: center;
  }

  .about-text h3 {
    font-size: 32px;
  }

  .about-image img {
    max-height: 420px;
  }
}

.why-modern{
  background:#fff7f0;
  padding:80px 6%;
  text-align:center;
}

.why-modern h2{
  font-size:42px;
  margin-bottom:10px;
  color:#3b1d00;
}

.why-modern h2 span{
  color:#c55a11;
}

.subtitle{
  font-size:16px;
  margin-bottom:50px;
  color:#666;
  text-align: center;
}

.why-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.why-card{
  background:white;
  padding:40px 25px;
  border-radius:18px;
  box-shadow:0 15px 30px rgba(0,0,0,0.1);
  transition:0.3s;
}

.why-card:hover{
  transform:translateY(-10px);
  box-shadow:0 20px 40px rgba(0,0,0,0.2);
}

.why-card i{
  font-size:40px;
  color:#c55a11;
  margin-bottom:20px;
}

.why-card h3{
  font-size:22px;
  margin-bottom:12px;
  color:#3b1d00;
}

.why-card p{
  font-size:15px;
  line-height:1.6;
  color:#555;
}

@media(max-width:900px){
  .why-grid{
    grid-template-columns:1fr;
  }
  
}
.tea-slide{
  position:relative;
  min-width:100%;
  height:100%;
}

.hero-overlay{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  color:#fff;
  background:rgba(0,0,0,0.35);
}

.hero-btn{
  background:#c79a2b;
  color:#fff;
  padding:12px 28px;
  border-radius:30px;
  text-decoration:none;
  font-weight:600;
}
/*----bill free and 9 week*/

.news-section {
  background: #821D26;
  padding: 5vw 0;
  text-align: center;
}

.section-title {
  color: #fff;
  font-size: clamp(22px, 3vw, 36px);
  margin-bottom: 3vw;
}

.slider {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
  padding: 0 3vw;
}

.slider-track {
  display: flex;
  gap: 2vw;
  animation: scroll 22s linear infinite;
  will-change: transform;
}

.card {
  flex: 0 0 30%;
  background: #fff;
  border-radius: 18px;
  padding: 1vw;
}

.card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  object-fit: cover;
}

/* Auto scroll animation */
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Tablet / zoom in */
@media (max-width: 1024px) {
  .card {
    flex: 0 0 45%;
  }
}

/* Mobile / heavy zoom */
@media (max-width: 600px) {
  .card {
    flex: 0 0 90%;
  }
}

/* Pause on hover (desktop UX) */
.slider-track:hover {
  animation-play-state: paused;
}




