/* 🌸 ROOT COLORS */
:root {
  --pink: #f6b1c3;
  --light-blue: #cfe9f7;
  --white: #ffffff;
  --dark: #333;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--white);
}
html, body {
  max-width: 100%;
  overflow-x: hidden;   /* 🔥 KILLS THE WHITE LINE */
}
/* 🎀 All Headings Use Great Vibes */

/* 🌸 LOADER */
#loader {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, var(--pink), var(--light-blue));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader-logo {
  width: 180px;
  animation: float 2.5s ease-in-out infinite;
}

.loader-text {
  margin-top: 20px;
  font-size: 1rem;
  letter-spacing: 1px;
  color: var(--dark);
  opacity: 0.8;
}
body.loading {
  overflow: hidden;
}

/* FLOAT ANIMATION */
@keyframes float {
  0% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-12px) scale(1.02); }
  100% { transform: translateY(0px) scale(1); }
}

/* HIDE LOADER */
#loader.hide {
  opacity: 0;
  visibility: hidden;
}

/* WEBSITE HIDDEN INITIALLY */
.hidden {
  display: none;
}
/* 🌸 HEADER */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: linear-gradient(135deg, rgb(235, 143, 245), rgb(119, 118, 224));
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  z-index: 1000;
}
.header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  height: 52px;
  width: auto;
}

.logo-text {
  height: 36px;          /* desktop size */
  width: auto;
  max-width: 180px;      /* safety */
}




.header-center img {
  height: 70px;
}

.header-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 22px;
}

.nav-links a {
  text-decoration: none;
  color: #ffffff;
  font-size: 1.2rem;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--pink);
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

/* 🌸 HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: #6f4343;
}

/* 🌸 HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 90px 8%;
  align-items: center;
  background: url("hero1.png") no-repeat center;
  background-size: cover;
  min-height: 100vh; /* ✅ THIS FIXES THE WHITE GAP */
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(to bottom, rgba(253,239,243,0), #ffffff);
}
.hero {
  position: relative;
}

.hero-left {
  animation: fadeUp 1.2s ease;
}

.hero-logo {
  width: 200px;
  margin-bottom: 10px;
}

.brand-name {
  font-family: 'Great Vibes', cursive;
  font-weight: normal;
  font-size: 4rem;
  color: #333;
  font-weight: normal;
}

.tagline {
  margin-top: 10px;
  font-size: 1.1rem;
}

.sub-tagline {
  font-size: 0.95rem;
  margin-top: 6px;
  color: #666;
}

/* 🌸 UNIQUE BUTTONS */
.hero-buttons {
  display: flex;
  gap: 18px;
  margin-top: 28px;
}

.btn {
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 0.95rem;
  text-decoration: none;
  transition: 0.4s;
  position: relative;
  overflow: hidden;
}

.btn-menu {
  background: linear-gradient(135deg, rgb(231, 150, 222), rgb(211, 1, 207));
  color: white;
}

.btn-gallery {
  border: 3px solid rgb(212, 11, 219);
  color: rgb(204, 34, 231);
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.3);
  transform: translateX(-100%);
  transition: 0.4s;
}

.btn:hover::before {
  transform: translateX(0);
}

/* 🌸 HERO IMAGES */
.hero-right {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.cake-img {
  width: 220px;
  border-radius: 20px;
  animation: float 4s ease-in-out infinite;
}

.img2 {
  animation-delay: 1.5s;
}

/* 🌸 ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}

/* 🌸 MOBILE */
@media (max-width: 900px) {

  /* HEADER */
  .nav-links {
    position: absolute;
    top: 70px;
    right: 20px;
    background: rgb(231, 155, 241);
    flex-direction: column;
    padding: 20px;
    border-radius: 12px;
    display: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  }
@media (max-width: 900px) {

  .nav-links a {
    color: #000000;              /* 👈 BLACK TEXT */
    font-size: 1.1rem;
  }

  .nav-links a::after {
    background: #000000;         /* 👈 BLACK UNDERLINE */
  }

}

  .nav-links.show {
    display: flex;
  }

  .hamburger {
    display: flex;
  }
@media (max-width: 600px) {

  .logo-icon {
    height: 42px;          /* slightly smaller */
  }

  .logo-text {
    height: 21.5px;          /* 👈 BIG SHRINK */
    max-width: 100px;       /* 👈 HARD LIMIT */
  }

  .header-left {
    gap: 8px;
  }
}

  /* HERO */
  .hero {
    grid-template-columns: 1fr;
    padding: 60px 6%;
    text-align: center;
  }

  .hero-left {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .brand-name {
    font-size: 3rem;
  }

  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }
 .hero-logo {
    padding-top: 48px;
  }
  /* 🔥 FIXED IMAGE STACKING */
  .hero-right {
    margin-top: 40px;
    display: flex;
    flex-direction: column;   /* 👈 THIS IS THE KEY */
    gap: 30px;
    align-items: center;
  }

  .cake-img {
    width: 90%;              /* responsive */
    max-width: 320px;        /* premium constraint */
  }
}
/* 🔥 MOBILE HERO GAP FIX */
@media (max-width: 768px) {
  .hero {
    min-height: auto;        /* ✅ KILLS EXTRA HEIGHT */
    padding-bottom: 30px;   /* clean ending */
  }

  .hero::after {
    display: none;          /* ✅ REMOVES HIDDEN SPACER */
  }
}

/* 🌸 ABOUT SECTION */
.about {
  padding: 100px 8%;
  background: linear-gradient(135deg, #81cad3, #f6b1c3, #51b2e6);
  position: relative;
}

/* Ribbon */
.ribbon {
  width: 100%;
  height: 120px;
  margin-bottom: 40px;
}

#ribbon-path {
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  animation: drawRibbon 2s ease forwards, fadeRibbon 0.8s ease forwards 2s;
}

@keyframes drawRibbon {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes fadeRibbon {
  to {
    opacity: 0;
  }
}

/* Content Layout */
.about-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
    font-family: 'Great Vibes', cursive;
  font-weight: normal;
  font-size: 3rem;
  margin-bottom: 20px;
}

.about-text p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 14px;
}

.owner-line {
  margin-top: 20px;
  font-style: italic;
}

/* Buttons */
.about-buttons {
  display: flex;
  gap: 16px;
  margin-top: 30px;
}

.btn-call {
  background: linear-gradient(135deg, rgb(249, 71, 255), rgb(124, 90, 235));
  color: white;
}

.btn-whatsapp {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid #25D366;
  color: #ffffff;
  background: rgb(70, 223, 70);
}

.btn-whatsapp i {
  font-size: 1.2rem;
}


.btn-whatsapp img {
  width: 20px;
}

/* Image */
.about-image img {
  width: 100%;
  max-width: 320px;
  border-radius: 20px;
}

/* 🌸 MOBILE */
@media (max-width: 900px) {
  .about-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .about-image {
    margin-top: 40px;
  }
}
/* 🌸 MENU SECTION */
.menu {
  padding: 100px 8%;
  background: linear-gradient(180deg, #c9f0f3, #e5b1c8);
}

.menu-title {
    font-family: 'Great Vibes', cursive;
  font-weight: normal;
  font-size: 3.5rem;
  text-align: center;
  margin-bottom: 10px;
}

.menu-subtitle {
  text-align: center;
  margin-bottom: 60px;
  color: #666;
}

/* GRID */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  align-items: stretch; /* 🔥 equal height base */
}

/* CARD */
.menu-card {
  padding: 32px 28px;
  border-radius: 28px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
  display: flex;              /* 🔥 equal height magic */
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.4s ease;
}

.menu-card:hover {
  transform: translateY(-8px) rotate(-0.4deg);
}

/* 🔥 CARD TITLE */
.menu-card h3 {
  font-size: 1.45rem;
  font-weight: 600;
  margin-bottom: 6px;
  padding-bottom: 10px;
  border-bottom: 2px dashed rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* PRICE */
.price {
  font-size: 0.9rem;
  opacity: 0.75;
  margin: 12px 0 18px;
}
.price {
  word-wrap: break-word;
  text-align: left;
}

/* LIST */
.menu-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1; /* 🔥 fills empty space evenly */
}

.menu-card ul li {
  padding: 6px 0;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* 🎨 DARKER PASTELS */
.pastel-yellow {
  background: #f1d78f;
}

.pastel-pink {
  background: #ee9fb8;
}

.pastel-blue {
  background: #a1d4f0;
}

.pastel-lavender {
  background: #c4b6fd;
}

/* 🟢 ORDER BUTTON (ALWAYS AT BOTTOM) */
.order-btn {
  margin-top: 25px;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 30px;
  font-size: 0.9rem;
  text-decoration: none;
  color: #25D366;
  border: 1.6px solid #25D366;
  background: #ffffff;
  transition: all 0.3s ease;
}

.order-btn:hover {
  background: #25D366;
  color: #ffffff;
}

/* 📱 MOBILE */
@media (max-width: 600px) {
  .menu {
    padding: 80px 6%;
  }

  .menu-title {
    font-size: 3rem;
  }

  .menu-card {
    padding: 28px 24px;
  }
  .menu-card ul li {
    font-size: 0.9rem;
  }
}
@media (max-width: 480px) {
  .menu-grid {
    grid-template-columns: 1.1fr;   /* 👈 FORCE single column */
    gap: 24px;
  }
}
@media (max-width: 480px) {
  .menu-card {
    padding: 24px 20px;
    border-radius: 22px;
  }
}
@media (max-width: 480px) {
  .price {
    font-size: 0.85rem;
  }
}


/* 🌸 GALLERY */
.gallery {
  padding: 110px 6%;
  background: linear-gradient(180deg, #fdf2f6, #ffffff);
  overflow: hidden;
}

.gallery-title {
    font-family: 'Great Vibes', cursive;
  font-weight: normal;
  font-size: 3.5rem;
  text-align: center;
}

.gallery-subtitle {
  text-align: center;
  margin-bottom: 60px;
  color: #666;
}

/* 🔁 INFINITE STRIP */
.infinite-strip {
  width: 100%;
  overflow: hidden;
  margin: 25px 0;
}

.strip-track {
  display: flex;
  gap: 14px;
  width: max-content;
}

.strip-track img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.08);
  cursor: pointer;
}

.fast {
  animation: scrollLeft 35s linear infinite;
}

.faster {
  animation: scrollRight 28s linear infinite;
}

@keyframes scrollLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes scrollRight {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

/* 🧁 FEATURED */
.featured-cakes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin: 70px 0;
}

.cake-card {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0,0,0,0.15);
  cursor: pointer;
}

.cake-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.cake-card:hover img {
  transform: scale(1.08);
}

/* 🖼️ MODAL */
.image-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.image-modal img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 20px;
}

.close-modal {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 2.5rem;
  color: white;
  cursor: pointer;
}


/* 📱 MOBILE */
@media (max-width: 900px) {
  .featured-cakes {
    grid-template-columns: 1fr;   /* ✅ ONE IMAGE PER ROW */
  }

  .cake-card img {
    height: 260px;               /* optional: nicer proportion */
  }
}

/* 🤍 CONTACT SECTION */
.contact-section {
  padding: 110px 8%;
  background: linear-gradient(180deg, #dbeacc, #94c9da);
  text-align: center;
}

.contact-quote {
    font-family: 'Great Vibes', cursive;
  font-weight: normal;
  font-size: 2rem;
  max-width: 700px;
  margin: 0 auto 10px;
  color: #444;
}

.contact-name {
  margin-bottom: 50px;
  font-style: italic;
  color: #777;
}

/* BUTTON GRID */
.contact-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;

  flex-wrap: nowrap;          /* 🔥 FORCE ONE LINE */
  overflow-x: auto;           /* 🔥 SAFE ON SMALL SCREENS */
  padding-bottom: 10px;

  scrollbar-width: none;      /* hide scrollbar (Firefox) */
}

.contact-buttons::-webkit-scrollbar {
  display: none;              /* hide scrollbar (Chrome) */
}


/* BASE BUTTON */
.contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 20px;
  border-radius: 40px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.35s ease;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
   white-space: nowrap;  
}

/* ICON */
.contact-btn i {
  font-size: 1.2rem;
}

/* COLOR THEMES */
.google {
  background: #6388de;
  color: #fafcff;
  border: 1.5px solid #4285F4;
}

.google:hover {
  background: #4285F4;
  color: #ffffff;
}

.justdial {
  background: #f37676;
  color: #ffffff;
  border: 1.5px solid #e74c3c;
}

.justdial:hover {
  background: #e74c3c;
  color: #ffffff;
}

.instagram {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
  color: #ffffff;
}

.instagram:hover {
  opacity: 0.9;
}

.whatsapp {
  background: #25D366;
  color: #ffffff;
}

.whatsapp:hover {
  background: #1ebd5a;
}

.call {
  background: #ff1956;
  color: #ffffff;
}

.call:hover {
  background: #e89aad;
}

/* 📱 MOBILE */
@media (max-width: 600px) {
  .contact-section {
    padding: 90px 6%;
  }

  .contact-quote {
    font-size: 1.6rem;
  }
}
@media (max-width: 600px) {

  .contact-buttons {
    flex-direction: column;     /* 🔥 STACK */
    align-items: stretch;       /* full width buttons */
    overflow-x: visible;        /* no horizontal scroll */
  }

  .contact-btn {
    width: 100%;                /* full-width pills */
    justify-content: center;
  }

}

/* 🧁 WORKSHOPS SECTION */
.workshop-section {
  padding: 120px 8%;
  background: linear-gradient(180deg, #f4ac6a, #fdf2f6);
}

.workshop-title {
    font-family: 'Great Vibes', cursive;
  font-weight: normal;
  font-size: 3.6rem;
  text-align: center;
}

.workshop-subtitle {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 70px;
  color: #666;
}

/* LAYOUT */
.workshop-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

/* 🎥 VIDEO */
.workshop-video {
  position: relative;
  border-radius: 28px;
  padding: 10px;                 /* reduced padding */
  background: #ffffff;
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);

  width: fit-content;            /* 🔥 KEY LINE */
  margin: 0 auto;                /* center it */
}


.workshop-video video {
  width: 256px;                  /* your chosen size */
  max-width: 100%;
  border-radius: 22px;
  display: block;
}


/* PLAY BUTTON */
.video-btn {
  position: absolute;
  bottom: 18px;
  right: 18px;
  padding: 10px 22px;
  border-radius: 30px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
}

/* TEXT */
.workshop-text p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 14px;
}

.workshop-text ul {
  margin: 18px 0;
  padding-left: 0;
  list-style: none;
}

.workshop-text ul li {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.workshop-highlight {
  margin-top: 16px;
  font-weight: 500;
}

/* BUTTONS */
.workshop-buttons {
  display: flex;
  gap: 18px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.workshop-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 40px;
  text-decoration: none;
  font-size: 0.95rem;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.workshop-btn.call {
  background: #ff638c;
  color: #fff;
}

.workshop-btn.whatsapp {
  background: #25D366;
  color: #fff;
}

/* 📱 MOBILE */
@media (max-width: 900px) {
  .workshop-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .workshop-buttons {
    justify-content: center;
  }
}
/* 🌸 PASTEL FOOTER */
.pastel-footer {
  background: linear-gradient(180deg, #ffe6ef, #e8f6ff);
  margin-top: 0px;
}

/* TOP STRIP */
.footer-top {
  padding: 70px 8%;
  text-align: center;
  background: linear-gradient(135deg, #f6b1c3, #cfe9f7);
}

.footer-brand img {
  width: 90px;
  margin-bottom: 10px;
}

.footer-brand h2 {
    font-family: 'Great Vibes', cursive;
  font-weight: normal;
  font-size: 3.2rem;
  color: #333;
}

.footer-brand p {
  font-size: 1rem;
  color: #444;
}

/* MAIN GRID */
.footer-main {
  padding: 80px 8%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-box {
  background: #d0ed9a;
  border-radius: 26px;
  padding: 30px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

.footer-box h4 {
  margin-bottom: 18px;
  font-size: 1.2rem;
  color: #e45fa4;
}

.footer-box a {
  display: block;
  margin-bottom: 12px;
  color: #555;
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-box a i {
  margin-right: 8px;
  color: #e45fa4;
}

.footer-box a:hover {
  color: #e45fa4;
}

/* HIGHLIGHT BOX */
.footer-box.highlight {
  background: linear-gradient(135deg, #efe5ca, #f2d6df);
}

.footer-box p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

.footer-badge {
  display: inline-block;
  margin-top: 14px;
  padding: 6px 14px;
  background: #ff4274;
  color: #fff;
  border-radius: 20px;
  font-size: 0.8rem;
}

/* BOTTOM */
.footer-bottom {
  padding: 30px 8%;
  text-align: center;
  background: #afa2e8;
}

.footer-credit {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.footer-credit img {
  width: 28px;
}

.footer-credit a {
  color: #3700ff;
  text-decoration: none;
  font-weight: 500;
}

.footer-copy {
  font-size: 0.85rem;
  color: #777;
}

/* 📱 MOBILE */
@media (max-width: 900px) {
  .footer-main {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-box {
    padding: 26px;
  }

  .footer-credit {
    flex-direction: column;
  }
}
.footer-box.highlight a {
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.6);
}

.footer-box.highlight a:hover {
  background: #ffffff;
}
@media (max-width: 480px) {
  .workshop-title {
    font-size: 2.9rem;      /* 👈 perfect for Allura on mobile */
    line-height: 1.1;       /* 👈 keeps it tight */
    padding: 0 10px;        /* 👈 tiny safety padding */
  }
}
