:root { --brown: #6b3e26; --cream: #f7f1ea; }
body { background: #fff; color: #333; }
.brand { font-family: Georgia, 'Times New Roman', serif; font-weight: 600; color: var(--brown); }
.img_logo{ max-height: 60px; width: auto;}
.brand-logo { background: var(--brown); color: #fff; width:44px; height:44px; display:flex; align-items:center; justify-content:center; border-radius:50%; }
.hero { background: linear-gradient(rgba(107,62,38,0.15), rgba(107,62,38,0.15)), url('/images/banner_cake2.jpg') center/cover no-repeat; color: #fff; padding: 5rem 0; }
.section-title { color: var(--brown); }
.card .price { color: var(--brown); font-weight:700; }
.footer { background: var(--cream); }
.btn-accent { background: var(--brown); color: #fff; border-color: var(--brown); }


.navbar {
  background-color: #ffffff;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.navbar-brand img {
  max-height: 60px;
  width: auto;
}

.navbar-toggler {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
}

.navbar-toggler .bar {
  height: 3px;
  width: 100%;
  background-color: var(--brown);
  border-radius: 3px;
}

.navbar-menu ul {
  display: flex;
  gap: 25px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar-menu ul li a {
  text-decoration: none;
  color: var(--brown);
  font-weight: 600;
}
/* Hamburger Menu */
.navbar-toggler {
  display: none; /* default hidden for desktop */
  flex-direction: column;
  justify-content: space-between;
  width: 30px;       /* make it bigger */
  height: 22px;      /* adjust height */
  background: none;
  border: none;
  cursor: pointer;
  z-index: 9999;     /* make sure it's on top */
}

.navbar-toggler .bar {
  height: 3px;
  width: 100%;
  background-color: var(--brown); /* visible color */
  border-radius: 3px;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .navbar-toggler {
    display: flex;  /* now shows on mobile */
  }
}


/* Mobile Styles */
@media (max-width: 768px) {
  .navbar-toggler {
    display: flex;
  }

  .navbar-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background: var(--cream);
    position: absolute;
    top: 100%;
    left: 0;
    border-top: 1px solid var(--brown);
  }

  .navbar-menu.active {
    display: flex;
  }

  .navbar-menu ul {
    flex-direction: column;
    gap: 10px;
    padding: 10px 0;
  }
}



/*  flash message start  */
/* Ticker Container */
.ticker-wrap {
  width: 100%;
  overflow: hidden;
  background: linear-gradient(90deg, #e63946, #f1faee, #a8dadc);
  padding: 12px 0;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  border-radius: 8px;
  position: relative;
}

/* Scrolling Ticker */
.ticker {
  display: inline-block;
  white-space: nowrap;
  padding-left: 100%;
  animation: ticker 20s linear infinite;
  font-size: 16px;
  font-weight: 700;
  color: #1d3557;
}

.ticker:hover {
  animation-play-state: paused;
}

/* Flashing Emojis */
.flash-emoji {
  display: inline-block;
  animation: flash 1s ease-in-out infinite;
}

@keyframes flash {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.3); }
}

/* Scrolling Animation */
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* Snowflakes Container */
.snowflakes {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Snowflake Style */
.snowflake {
  position: absolute;
  top: -2em;
  font-size: 16px;
  color: white;
  opacity: 0.8;
  user-select: none;
  animation-name: fall;
  animation-duration: 10s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

/* Generate random positions and delays */
.snowflake:nth-child(1) { left: 5%; animation-delay: 0s; animation-duration: 8s; font-size: 12px; }
.snowflake:nth-child(2) { left: 15%; animation-delay: 2s; animation-duration: 12s; font-size: 16px; }
.snowflake:nth-child(3) { left: 25%; animation-delay: 4s; animation-duration: 10s; font-size: 14px; }
.snowflake:nth-child(4) { left: 35%; animation-delay: 1s; animation-duration: 11s; font-size: 18px; }
.snowflake:nth-child(5) { left: 45%; animation-delay: 3s; animation-duration: 9s; font-size: 13px; }
.snowflake:nth-child(6) { left: 55%; animation-delay: 2.5s; animation-duration: 12s; font-size: 17px; }
.snowflake:nth-child(7) { left: 65%; animation-delay: 0.5s; animation-duration: 10s; font-size: 14px; }
.snowflake:nth-child(8) { left: 75%; animation-delay: 1.5s; animation-duration: 11s; font-size: 16px; }
.snowflake:nth-child(9) { left: 85%; animation-delay: 3s; animation-duration: 9s; font-size: 15px; }
.snowflake:nth-child(10){ left: 95%; animation-delay: 0s; animation-duration: 10s; font-size: 13px; }

/* Snowfall animation */
@keyframes fall {
  0% { transform: translateY(0) rotate(0deg); opacity: 0.8; }
  100% { transform: translateY(100px) rotate(360deg); opacity: 0; }
}

/* Optional: Music Styling (hidden) */
#audio {
  display: none;
}


/* flash message end  */

/* for small card of product  */

/* small tweaks*/
.product-img { height:220px; object-fit:cover; } 
.card-img-top{
    height:352px;
}

.product-card {
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/*.price-section {
  background: #fffbea;
  border-radius: 10px;
  padding: 8px 0;
  box-shadow: inset 0 0 6px rgba(255, 200, 0, 0.2);
}*/

.badge {
  font-size: 0.8rem;
}

 .about-section {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 60px 10%;
      background-color: #fffaf4;
    }

    .about-content {
      flex: 1;
      padding: 20px;
    }

    .about-content h2 {
      font-size: 2.2rem;
      color: #6b2c00;
      margin-bottom: 15px;
    }

    .about-content p {
      font-size: 1rem;
      line-height: 1.7;
      color: #444;
      margin-bottom: 10px;
    }

    .about-img {
      flex: 1;
      text-align: center;
    }

    .about-img img {
      width: 80%;
      max-width: 400px;
      border-radius: 20px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }
.product-section {
      padding: 60px 8%;
      background-color: #fffaf4;
    }

    .product-section h2 {
      text-align: center;
      color: #6b2c00;
      font-size: 2.2rem;
      margin-bottom: 40px;
    }

    .product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
    }

    .product-card {
      background: #fff;
      border-radius: 20px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      position: relative;
    }

    .product-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    }

    .product-card img {
      width: 100%;
      height: 230px;
      object-fit: cover;
    }

    .product-info {
      padding: 20px;
    }

    .product-info h3 {
      color: #5a2400;
      font-size: 1.2rem;
      margin-bottom: 10px;
    }

    .product-info p {
      color: #666;
      font-size: 0.95rem;
      margin-bottom: 10px;
      line-height: 1.5;
    }

    .price {
      color: #b22222;
      font-weight: bold;
      margin-bottom: 15px;
      font-size: 1.1rem;
    }

    .btn {
      background-color: #6b2c00;
      color: #fff;
      padding: 10px 20px;
      border: none;
      border-radius: 25px;
      cursor: pointer;
      transition: background-color 0.3s;
      text-decoration: none;
      display: inline-block;
    }

    .btn:hover {
      background-color: #8a3e00;
    } 
    .product-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    }

    .product-image {
      position: relative;
      overflow: hidden;
    }

    .product-image img {
      width: 100%;
      height: 230px;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .product-card:hover img {
      transform: scale(1.1);
    }
    /* Hover Button */
    .hover-btn {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background-color: rgba(107, 44, 0, 0.9);
      color: #fff;
      padding: 10px 20px;
      border-radius: 25px;
      text-decoration: none;
      opacity: 0;
      transition: opacity 0.3s ease, bottom 0.3s ease;
    }
 .product-image:hover .hover-btn {
      opacity: 1;
      bottom: 30px;
    }
    .details-table {
      width: 100%;
      border-collapse: collapse;
      margin-bottom: 25px;
    }

    .details-table td {
      padding: 8px 10px;
      border-bottom: 1px solid #ddd;
      font-size: 0.95rem;
    }

    .details-table td:first-child {
      font-weight: 600;
      color: #5a2400;
      width: 40%;
    }

    .description {
      line-height: 1.7;
      font-size: 1rem;
      margin-bottom: 20px;
      color: #444;
    }

    .features {
      margin-bottom: 25px;
    }

    .features h3 {
      color: #5a2400;
      font-size: 1.2rem;
      margin-bottom: 10px;
    }

    .features ul {
      list-style: disc;
      margin-left: 20px;
      color: #444;
    }

 /****************contact start*********************/
.contact-section {
  padding: 60px 20px;
  text-align: center;
  background: #fff8f3;
}

.contact-container {
  max-width: 900px;
  margin: auto;
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.contact-container h2 {
  color: #b5651d;
  font-size: 2em;
  margin-bottom: 10px;
}

.intro {
  color: #555;
  margin-bottom: 40px;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-bottom: 40px;
}

.info-box {
  background-color: #fef2e4;
  border-radius: 10px;
  padding: 20px;
  width: 250px;
  margin: 10px;
  transition: all 0.3s ease;
}

.info-box:hover {
  background-color: #ffe3c4;
  transform: translateY(-5px);
}

.info-box h3 {
  color: #8b4513;
  margin-bottom: 8px;
}

.map-container iframe {
  border-radius: 10px;
  width: 100%;
  height: 350px;
}
/****************contact end*********************/
/****************whatsapp start*********************/
/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 25px;
  right: 25px;
  background-color: #25d366;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
}

.whatsapp-float:hover {
  background-color: #20ba5a;
  transform: scale(1.1);
}


/****************whatsapp end*********************/

