/* importing google fonts*/
@import url('https://fonts.googleapis.com/css2?family=Miniver&family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* stops any sideways scroll */
  width: 100%;
  font-family: "Poppins", sans-serif;
}

:root{
    
    

    /* Colors */
    --white-color: #fff;
    --dark-color: #252525;
    --primary-color: #3b141c;
    --secondary-color: #f3961c;
    --light-pink-color: #faf4f5;
    --medium-gray-color: #ccc;

    /* Font size */
    --font-size-s: 0.9rem;
    --font-size-n: 1rem;
    --font-size-m: 1.12rem;
    --font-size-l: 1.5rem;
    --font-size-xl: 2rem;
    --font-size-xxl: 2.3rem;

    /* Font weight */
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;

    /* Border radius */
    --border-radius-s: 8px;
    --border-radius-m: 30px;
    --border-radius-circle: 50%;

    /* Site max width */
    --site-max-width: 1300px;
}
/* Styling of whole site */

ul{
    list-style: none;
}
a{
    text-decoration: none;
}
button{
    cursor: pointer;
    border: none;
    background: none;

}
img{
    width: 100%;
}
.section-content{
    margin: 0 auto;
    padding: 0 20px;
    max-width: var(--site-max-width);

}
.section-title{
  text-align: center;
  padding:60px 0 100px;
  text-transform: uppercase;
  font-size: var(--font-size-xl) ;
}
.section-title::after{
  content: "";
  width: 80px;
  height: 5px;
  display: block;
  margin:10px auto 0;
  border-radius: var(--border-radius-s);
  background : pink;

}

/* navbar settings */

header{
      background:var(--primary-color) ;
      position: fixed;
      width: 100%;
      
      z-index: 1000;

}
header .navbar{
    display:flex;
    padding: 20px;
    align-items: center;
    justify-content: space-between;

}
.navbar .nav-logo .logo-text{
    color: var(--white-color);
    font-size: var(--font-size-xl);
   font-weight: var(--font-weight-semibold);

}
.navbar .nav-menu{
    display: flex;
    gap: 10px;
}

.navbar .nav-menu .nav-link {
  padding: 10px 18px ;
  color: var(--white-color) ;
  font-size: var(--font-size-m);
  border-radius: var(--border-radius-m);
  transition: 0.3s ease;
}
.navbar .nav-menu .nav-link:hover{
    color: var(--primary-color);
    background-color: var(--secondary-color);

}
.navbar :where(#menu-close-button,#menu-open-button){
    display: none;
}
/* Hide both buttons on desktop */
@media (min-width: 993px) {
  #menu-open-button,
  #menu-close-button {
    display: none !important;
  }
}

.hero-section{
    min-height: 100vh;
    background-color:var(--primary-color)

}
.hero-section .section-content{
    display: flex;
    align-items: center;
    min-height: 100vh;
    color: var(--white-color);
    justify-content: space-between;
}
.hero-section .hero-details .title{
    font-size: var(--font-size-xxl);
    font-family: "miniver",sans-serif;
    color: var(--secondary-color);

}
.hero-section .hero-details .subtitle{
    margin-top: 8px;
    max-width: 80%;
    font-size: var(--font-size-xl);
   font-weight: var(--font-weight-semibold);

    color: antiquewhite;

}

.hero-section .hero-details .description{
    max-width: 70%;
    margin:24px 0 40px;
    font-size: var(--font-size-m);
}
.hero-section .hero-details .buttons {
  display: flex;       /* ensures children are in a row */
  gap: 23px;           /* space between children */
}

/* Container for buttons */
.hero-section .hero-details .buttons {
  display: flex;       /* row layout */
  gap: 23px;           /* space between buttons */
}

/* Style the "button" links */
.hero-section .hero-details .buttons .button {
  display: inline-block;
  padding: 10px 26px;
  border: 2px solid transparent;
  color: #6b4226; /* fallback color if --primary-color not defined */
  border-radius: 12px;
  background-color: #f5e0c3; /* fallback if --secondary-color not defined */
  font-weight: 500;
  text-decoration: none; /* remove underline */
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Hover effect – cartoonish */
.hero-section .hero-details .buttons .button:hover {
  background-color: #6b4226; /* dark brown */
  color: #fff;
  transform: translateY(-4px) rotate(-1deg);
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}


/* Optional sparkle effect */

.hero-section .hero-details .buttons .button::after {
  content: "✨";
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 16px;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease;
}

/* Sparkle animation on hover */
.hero-section .hero-details .buttons .button:hover::after {
  opacity: 1;
  transform: translate(-5px, -5px) scale(1.2);
}

@keyframes sparkle {
  0%, 80%, 100% { opacity: 0; transform: translate(0,0) scale(0); }
  40% { opacity: 1; transform: translate(-5px, -5px) scale(1); }
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}
/* Default (desktop) */
.navbar .nav-menu {
  display: flex;
  gap: 10px;
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column-reverse;
    text-align: center;
    padding: 80px 20px;
  }

  .hero img {
    width: 80%;
    max-width: 320px;
    margin: 0 auto;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 60px 10px;
  }
  .hero-content h1 {
    font-size: 1.6rem;
  }
  .hero-content p {
    font-size: 0.95rem;
  }
}
/* about ssection */

.about-section {
  padding: 120px 0;
  background: var(--light-pink-color);
  position: relative;
  overflow: hidden;
}

.about-section .section-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  gap: 50px;
}

.about-section .about-image-wrapper img {
  width: 400px;
  height: 400px;
  object-fit: cover;
  border-radius: var(--border-radius-circle);
  object-fit: cover;
  border-radius: 50%; /* perfect circle */
  border: 6px solid #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;

}
.about-section .about-image-wrapper img:hover {
  transform: scale(1.05) rotate(-5deg);
}

/* Cartoon/anime font for text */
.about-section .about-text {
  flex: 1 1 50%;
  text-align: center;
  font-family: "Comic Neue", cursive, sans-serif;  /* make sure it overrides */
  font-size: var(--font-size-m);
  color: #3b141c;
  line-height: 1.6;
  letter-spacing: 0.5px;
}


.about-section .section-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #d6336c;
}
.about-section p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 15px;
  color:#d6336c;
}

.social-section {
  text-align: center;
  margin-top: 25px;
}

.follow {
  margin-bottom: 15px;
  font-family: "Comic Neue", cursive, sans-serif;
  color: #d6336c;
  font-size: 1rem;
}

/* Social links container */
.social-link-list {
  display: inline-block;  /* keep it inline centered */
}

/* Icons with spacing */
.social-link {
  font-size: 2rem;
  color: var(--primary-color, #d6336c);
  margin: 0 20px;        /* ← guaranteed spacing between icons */
  transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
  display: inline-block;
}

/* Hover effect */
.social-link:hover {
  color: #ff5c8a;
  transform: scale(1.2);
  text-shadow: 0 0 8px rgba(255, 133, 162, 0.7),
               0 0 16px rgba(255, 133, 162, 0.4);
}




/* 🌸 Buttons */
.about-section .about-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background: #ff85a2;       /* base pink */
  color: #fff;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;     /* remove wavy underline */
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(255, 92, 138, 0.4); /* subtle default glow */
}

.about-section .about-btn:hover {
  background: #ff5c8a;       /* brighter pink on hover */
  transform: translateY(-3px); 
  box-shadow: 0 8px 20px rgba(255, 92, 138, 0.8); /* glowing hover */
}

.about-section p:hover {
  color: #ff5c8a;
  text-shadow: 0 0 8px rgba(255, 92, 138, 0.7),
               0 0 16px rgba(255, 92, 138, 0.5);
  transition: all 0.3s ease;
 
  cursor: pointer; /* shows hand cursor */
}




/* ✨ Floating doodles (anime vibe) */

.floating-doodle {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  opacity: 0.8;
  animation: floaty infinite ease-in-out;
}

.floating-doodle.donut { top: 55%; left: 10%; animation-delay: 0s; animation-duration: 6s; }
.floating-doodle.cupcake { top: 60%; right: 5%; animation-delay: 1s; animation-duration: 5.5s; }
.floating-doodle.dream { top: 70%; left: 50%; animation-delay: 2s; animation-duration: 7s; }
.floating-doodle.bean { top: 10%; left: 5%; animation-delay: 0.5s; animation-duration: 6.5s; }
.floating-doodle.star { top: 30%; right: 10%; animation-delay: 1.5s; animation-duration: 5s; }
.floating-doodle.cup { top: 10%; left: 50%; animation-delay: 2s; animation-duration: 6s; }


.floating-doodle img {
  width: 50px;
  height: auto;
}

@keyframes floaty {
  0%, 100% { transform: translate(0,0) rotate(0deg) scale(1); }
  25% { transform: translate(10px,-10px) rotate(5deg) scale(1.05); }
  50% { transform: translate(-10px,-20px) rotate(-5deg) scale(1.02); }
  75% { transform: translate(5px,-10px) rotate(3deg) scale(1.03); }
}
.about-section {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* glowing dreamy background */
.about-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(circle at 30% 40%, rgba(255, 182, 249, 0.4), transparent 70%),
              radial-gradient(circle at 70% 60%, rgba(255, 223, 128, 0.35), transparent 70%);
  animation: glow 8s infinite alternate;
  z-index: 0;
  pointer-events: none;
}
@keyframes glow {
  0%   { opacity: 0.3; transform: scale(1); }
  50%  { opacity: 0.7; transform: scale(1.1); }
  100% { opacity: 0.4; transform: scale(1); }
}

@media (max-width: 900px) {
  .about {
    flex-direction: column;
    text-align: center;
    padding: 60px 20px;
  }

  .about .image {
    order: -1; /* show image above text */
  }

  .about .image img {
    max-width: 320px;
    margin: 0 auto;
  }

  .about .content p {
    margin-top: 10px;
  }
}

@media (max-width: 450px) {
  .about .content h2 {
    font-size: 1.5rem;
  }
  .about .content p {
    font-size: 0.95rem;
  }
}
/*menuitem*/
.menu-items{
  display:flex;
  flex-wrap:wrap;
  gap:20px;
  padding:20px;
  justify-content: center;
  background-color: #fdf6f9;

}
.menu-items .category {
  width: 100%;
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
  color: lightpink;
  font-weight: bold;
}
/* Make the cards inside each category appear side-by-side */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
/* Each card takes half the width minus spacing */
.card {
  flex: 1 1 calc(50% - 40px);
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
/* Card Images */
.card img {
  width: 100%;
  max-width: 200px;
  border-radius: 15px;
  margin-bottom: 10px;
}
/* Titles & Text */
.card h3 {
  margin: 10px 0;
  font-size: 1.2rem;
  color: #333;
}

.card .price {
  font-weight: bold;
  color: #ff5a8a;
  margin: 5px 0;
}
.card .text {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 10px;
}

/* Buttons */
.card button {
  padding: 10px 20px;
  background-color: #ff85a2;
  color: #fff;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.2s ease;
}

.card button:hover {
  background-color: #ff5a8a;
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .card {
    flex: 1 1 45%;
  }
}

@media (max-width: 480px) {
  .card {
    flex: 1 1 100%;
  }
}
.menu-items {
  display: none; /* hide by default */
}
.menu-items.active {
  display: block; /* only show active menu */
}

.tab {
  display:inline-block;
  padding: 10px 20px;
  margin: 5px;
  cursor: pointer;
  border-radius: 20px;
  background: #eee;
  font-weight: bold;
  transition: 0.3s;
}
.tab.active {
  background: #ff85a2;
  color: white;
}
.gallery-section {
  padding: 60px 20px;
  background:#eee;
  text-align: center;
}

.gallery-section {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

.gallery-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: pink;
}

/* Horizontal scroll row */
.gallery-row {
  display: flex;
  gap: 20px;             /* spacing between items */
  overflow-x: auto;       /* horizontal scroll */
  padding-bottom: 10px;
  scroll-behavior: smooth;
  margin-bottom: 40px;
}

/* Snap to each image */
.gallery-row {
  scroll-snap-type: x mandatory;
}

.gallery-item {
  flex: 0 0 calc((100% / 3) - 13.33px); /* 3 items per view minus gaps */
  scroll-snap-align: start;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

/* Hover effect */
.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover {
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Optional: custom scrollbar */
.gallery-row::-webkit-scrollbar {
  height: 8px;
}

.gallery-row::-webkit-scrollbar-thumb {
  background: #ff85a2;
  border-radius: 4px;
}


/* Hide hamburger & close button on desktop */
/* Default (desktop) - both hidden */
#menu-open-button,
#menu-close-button {
  display: none;
  font-size: 28px;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--secondary-color); /* visible color on white menu */
  z-index: 2001; /* above menu */
}

/* Mobile styles */
@media screen and (max-width:900px) {
  /* Show hamburger by default */
  #menu-open-button {
    display: block;
    color: var(--white-color, #fff); /* visible on header background */
    position: relative; 
    z-index: 2001;
  }

  /* Close button hidden initially */
  #menu-close-button {
    display: none;
    position: absolute;
    right: 20px;
    top: 25px;
    font-size: 28px;
    color: var(--primary-color, #3b141c); /* visible on white slide menu */
    
    z-index: 2001;
  }

  /* When menu is open */
  .body.show-mobile-menu #menu-close-button {
    display: block;  /* cross appears */
  }
  .body.show-mobile-menu #menu-open-button {
    display: none;  /* hide hamburger */
  }
  .body.show-mobile-menu header::before{
    content:"";
    position: fixed;
    left:0;
    top:0;
    height: 100%;
    width:100%;
    backdrop-filter: blur(5px);
    background:rgba(0,0,0,0.2);
  }

  /* Mobile menu layout */
  .navbar .nav-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    padding-top: 100px;
    background-color: var(--light-pink-color);
    transition: left 0.3s ease;
    z-index: 2000;
  }
  .navbar .nav-menu .nav-link {
  color: var(--dark-color);
  display:block;
  font-size: 1.3rem;
  margin-top: 17px;
}
.navbar .nav-menu .nav-link:hover {
  color: var(--white-color);
}
  /* Slide menu in */
  .body.show-mobile-menu .navbar .nav-menu {
    left: 0;
  }

  .hero-section .section-content {
    gap: 50px;
    text-align: center;
    padding: 30px 20px;
    flex-direction: column-reverse; /* image goes below text */
    justify-content: center;
  }
  .hero-section .hero-details .subtitle,
  .hero-section .hero-details .description {
    max-width: 100%; /* don’t cut text on small screens */
    margin-left: auto;
    margin-right: auto;
  }
  .hero-section.hero-details .buttons{
    justify-content: center;
  
    
    flex-wrap: wrap; /* 🔴 ADD to avoid overflow */

  }
  /* 🔴 ADD */
/* 🔴 ADD inside mobile query */
.navbar .cart-btn {
  margin-left: 50px;         /* reset auto */
  margin-top: 50px;       /* space below links */
  align-self: center;     /* center it horizontally */
}


  

  .hero-section .hero-image-wrapper {
    max-width: 270px;
    margin: 0 auto; /* center the image */
  }

.cart-btn {
  background: #ff85a2;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: bold;
  cursor: pointer;
  margin-left: auto; /* pushes it to the right */
}



/* Responsive adjustments */
@media (max-width: 768px) {
  .testimonial-card {
    flex: 0 0 70%;
  }
}

@media (max-width: 480px) {
  .testimonial-card {
    flex: 0 0 90%;
  }
}


/* Mobile Fix */
@media (max-width: 768px) {
  .cart-btn {
    font-size: 14px;
    padding: 6px 12px;
    margin-left: 10px;
  }
}

}

/* =====================
   Testimonials Section
===================== */
/* =====================
   Testimonials Section
===================== */

.testimonials-section {
  background: var(--light-pink-color);
  background-size: 400% 400%;
  padding: 50px 20px 100px;
  text-align: center;
  font-family: 'Arial', sans-serif;
  position: relative;
  overflow: hidden;
  animation: gradientBG 15s ease infinite;
}

@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Section Title */
.section-title {
  font-size: 2rem;
  margin-bottom: 40px;
  color:#ff4d6d;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Sparkles / petals */
.testimonials-sparkles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.sparkle {
  position: absolute;
  font-size: calc(0.8rem + 1vw);
  opacity: 0.8;
  animation: sparkleFall linear infinite;
}

.sparkle:nth-child(1){ left: 5%; animation-duration: 6s; animation-delay: 0s; }
.sparkle:nth-child(2){ left: 15%; animation-duration: 8s; animation-delay: 1s; }
.sparkle:nth-child(3){ left: 25%; animation-duration: 7s; animation-delay: 0.5s; }
.sparkle:nth-child(4){ left: 40%; animation-duration: 9s; animation-delay: 0.8s; }
.sparkle:nth-child(5){ left: 55%; animation-duration: 6s; animation-delay: 0.2s; }
.sparkle:nth-child(6){ left: 70%; animation-duration: 8s; animation-delay: 1.2s; }
.sparkle:nth-child(7){ left: 85%; animation-duration: 7s; animation-delay: 0.7s; }
.sparkle:nth-child(8){ left: 95%; animation-duration: 9s; animation-delay: 0.4s; }

@keyframes sparkleFall {
  0% { transform: translateY(-50px) rotate(0deg); opacity: 1; }
  100% { transform: translateY(800px) rotate(360deg); opacity: 0; }
}


.card-containerTest {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 per row always */
  gap: 30px;
  padding: 20px 10px;
}

.testimonial-card {
  background: #fff;
  border-radius: 15px 5px 15px 5px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  min-height: 380px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px); /* gentle lift */
  box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

/* User Image */
.user-image {
  width: 170px;
  height: 170px;
  object-fit:inherit;
  border-radius: 50%;
  border: 4px solid #ffd6e0;
  margin-bottom: 15px;
}

/* Message & Name */
.message {
  font-style: italic;
  color: #222;
  margin: 12px 0;
}

.testimonial-card h4 {
  margin: 8px 0 0;
  color: #333;
  font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 1200px) { .testimonial-card { width: 30%; } }
@media (max-width: 992px) { .testimonial-card { width: 45%; } }
@media (max-width: 768px) { .testimonial-card { width: 70%; } }
@media (max-width: 480px) { .testimonial-card { width: 90%; } }


/* 🌸 Contact Section */
.contact {
  text-align: center;
  padding: 80px 5%;
}
.contact-section{
  background:var(--light-pink-color);
  padding:60px 20px;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  position:relative;
  overflow:hidden;

}

/* Title */
.contact-section .section-title {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 2rem;
  color: #ff4d6d;
  margin-bottom: 40px;
  animation: float 4s ease-in-out infinite;
}
/* Container */
.contact-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 50px;
  max-width: 1000px;
  margin: 0 auto;
}
/* Info Section */
.contact-info {
  flex: 1;
  min-width: 250px;
  text-align: left;
  padding: 20px;
  animation: float 6s ease-in-out infinite;
}
.contact-info .contact-bubble {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 15px 20px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-info .contact-bubble:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 77, 109, 0.2);
}
.contact-info i {
  color: #ff4d6d;
  font-size: 1.5rem;
}

.contact-info .note {
  font-style: italic;
  margin-top: 20px;
  color: #333;
}
/* Contact Form */
.contact-form {
  flex: 1;
  min-width: 280px;
  background: #fff;
  padding: 25px 30px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(255, 77, 109, 0.2);
  animation: float 8s ease-in-out infinite;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  border-radius: 10px;
  border: 1px solid #ffb6c1;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.3s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ff4d6d;
}

.contact-form button {
  width: 100%;
  padding: 12px;
  background-color: #ff4d6d;
  border: none;
  color: #fff;
  font-size: 1.1rem;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}
.contact-form button:hover {
  background-color: #e63950;
  transform: translateY(-3px);
}




/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
  }
}
/* Falling doodles container */
.falling-doodles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  pointer-events: none; /* so you can click inputs */
}

.doodle {
  position: absolute;
  top: -50px;
  font-size: 1.5rem;
  animation: fall linear infinite;
}

/* Randomize position and speed with nth-child */
.falling-doodles .doodle:nth-child(1) { left: 10%; animation-duration: 6s; }
.falling-doodles .doodle:nth-child(2) { left: 30%; animation-duration: 8s; }
.falling-doodles .doodle:nth-child(3) { left: 50%; animation-duration: 7s; }
.falling-doodles .doodle:nth-child(4) { left: 70%; animation-duration: 5s; }
.falling-doodles .doodle:nth-child(5) { left: 90%; animation-duration: 9s; }

/* Falling animation */
@keyframes fall {
  0% { transform: translateY(0) rotate(0deg); opacity: 1; }
  100% { transform: translateY(800px) rotate(360deg); opacity: 0; }
}

/* Floating emoji when adding to cart */
.floating-emoji {
  position: absolute;
  font-size: 2rem;
  animation: floatUp 1s ease-out forwards;
  pointer-events: none;
  z-index: 9999;
}

@keyframes floatUp {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(-80px);
    opacity: 0;
  }
}


/* Sakura petals */
.petal {
  position: fixed;
  top: -20px;
  z-index: 100;
  font-size: 1.2rem;
  animation: fall linear infinite;
  pointer-events: none;
}

@keyframes fall {
  0% { transform: translateY(0) rotate(0deg); opacity: 1; }
  100% { transform: translateY(100vh) rotate(360deg); opacity: 0; }
}

/* 🌸 Mobile Responsive Fixes for Hero & About Section */
@media (max-width: 768px) {

  /* HERO SECTION FIXES */
  .hero {
    flex-direction: column; /* stack image and text vertically */
    text-align: center;
    padding: 80px 20px;
    gap: 2rem;
  }

  .hero img {
    width: 80%;
    max-width: 300px;
    margin: 0 auto;
  }

  .hero-content {
    max-width: 100%;
    padding: 0 10px;
  }

  .hero-content h1 {
    font-size: 2rem;
    line-height: 1.3;
  }

  .hero-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 10px;
  }

  .hero-content .btn {
    font-size: 1rem;
    padding: 10px 20px;
    margin-top: 15px;
  }

  /* ABOUT SECTION FIXES */
  .about {
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
    text-align: center;
    gap: 2rem;
  }

  .about .image {
    order: -1; /* Show image first */
  }

  .about .image img {
    width: 85%;
    max-width: 250px;
    margin: 0 auto;
    border-radius: 20px;
  }

  .about .content {
    width: 100%;
  }

  .about .content h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }

  .about .content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #8a4d53;
  }

  /* Fix text spacing on small screens */
  .about .content .donut, 
  .about .content .cupcake {
    display: none; /* hide floating emoji if they overlap */
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.6rem;
  }

  .hero-content p {
    font-size: 0.95rem;
  }

  .about .content h2 {
    font-size: 1.5rem;
  }

  .about .content p {
    font-size: 0.9rem;
  }
}
/* ========== 🌸 GLOBAL RESPONSIVE FIXES 🌸 ========== */

/* Reset margins on very small screens */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Make sections breathe properly */
section {
  padding: 60px 5%;
}

/* Fix text scaling globally */
html {
  font-size: 100%;
}

@media (max-width: 1024px) {
  html {
    font-size: 95%;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 90%;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 85%;
  }
}


/* Mobile styles */
@media screen and (max-width:900px) {
  /* Show hamburger by default */
  #menu-open-button {
    display: block;
    color: var(--white-color, #fff); /* visible on header background */
    position: relative; 
    z-index: 2001;
  }

  /* Close button hidden initially */
  #menu-close-button {
    display: none;
    position: absolute;
    right: 20px;
    top: 25px;
    font-size: 28px;
    color: var(--primary-color, #3b141c); /* visible on white slide menu */
    
    z-index: 2001;
  }

  /* When menu is open */
  body.show-mobile-menu #menu-close-button {
    display: block;  /* cross appears */
  }
  body.show-mobile-menu #menu-open-button {
    display: none;  /* hide hamburger */
  }
  body.show-mobile-menu header::before{
    content:"";
    position: fixed;
    left:0;
    top:0;
    height: 100%;
    width:100%;
    backdrop-filter: blur(5px);
    background:rgba(0,0,0,0.2);
  }

  /* Mobile menu layout */
  .navbar .nav-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    padding-top: 100px;
    background-color: var(--light-pink-color);
    transition: left 0.3s ease;
    z-index: 2000;
  }
  .navbar .nav-menu .nav-link {
  color: var(--dark-color);
  display:block;
  font-size: 1.3rem;
  margin-top: 17px;
}
.navbar .nav-menu .nav-link:hover {
  color: var(--white-color);
}
  /* Slide menu in */
  body.show-mobile-menu .navbar .nav-menu {
    left: 0;
  }

  .hero-section .section-content {
    gap: 50px;
    text-align: center;
    padding: 30px 20px;
    flex-direction: column-reverse; /* image goes below text */
    justify-content: center;
  }
  .hero-section .hero-details .subtitle,
  .hero-section .hero-details .description {
    max-width: 100%; /* don’t cut text on small screens */
    margin-left: auto;
    margin-right: auto;
  }
  .hero-section.hero-details .buttons{
    justify-content: center;
  
    
    flex-wrap: wrap; /* 🔴 ADD to avoid overflow */

  }
  /* 🔴 ADD */
/* 🔴 ADD inside mobile query */
.navbar .cart-btn {
  margin-left: 50px;         /* reset auto */
  margin-top: 50px;       /* space below links */
  align-self: center;     /* center it horizontally */
}


  

  .hero-section .hero-image-wrapper {
    max-width: 270px;
    margin: 0 auto; /* center the image */
  }

.cart-btn {
  background: #ff85a2;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: bold;
  cursor: pointer;
  margin-left: auto; /* pushes it to the right */
}
}
