:root {
  --pink: #ffb6c1;
  --mint: #b8f1d2;
  --cream: #fffaf3;
  --choco: #4a2c2a;
  --gold: #f1b24a;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--cream);
  color: var(--choco);
  overflow-x: hidden;
}

/* ===== NAVBAR ===== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 15px 40px;
  border-bottom: 2px solid #ffe2eb;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #ffb6c1;
}

.logo h1 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: #3a1f1f;
  margin: 0;
}

/* ===== NAV LINKS ===== */
.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
  transition: all 0.4s ease;
}

.nav-links a {
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  color: #3a1f1f;
  transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #f1b24a;
}
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: center;
    background: #fff;
    position: absolute;
    top: 75px;
    left: 0;
    width: 100%;
    padding: 20px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }

  .nav-links.show {
    display: flex;
  }
}

/* ===== MOBILE MENU TOGGLE ===== */
.menu-toggle {
  display: none;
  font-size: 30px;
  color: #3a1f1f;
  cursor: pointer;
  user-select: none;
}

/* ===== MOBILE MENU ===== */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: center;
    background: #fff;
    position: absolute;
    top: 75px;
    left: 0;
    width: 100%;
    padding: 20px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links a {
    font-size: 18px;
    padding: 8px 0;
  }
}
/* ===== MOBILE NAVBAR ===== */
.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: #3a1f1f;
}

/* Hide menu by default on mobile */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    padding: 15px;
    z-index: 1000;
  }

  .nav-links.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links a {
    padding: 10px 15px;
    border-bottom: 1px solid #f1f1f1;
  }

  .nav-links a:last-child {
    border-bottom: none;
  }
}

/* ===== HERO SECTION (Warm Cream & Gold Theme) ===== */
.hero {
  background: linear-gradient(135deg, #fff8f0 0%, #fff3e4 100%);
  background-image: url("images/banner.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #3e2723;
  padding: 60px 20px;
  border-radius: 0 0 20px 20px;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 -20px 40px rgba(241, 178, 74, 0.15);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(3px);
  z-index: 0;
}

/* Layout */
.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1;
  min-width: 280px;
}

/* Heading */
.hero-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #704214;
  margin-bottom: 12px;
}

/* Subheading */
.hero-text p {
  font-size: 1.05rem;
  color: #5a3a2d;
  line-height: 1.6;
  margin-bottom: 25px;
  max-width: 500px;
}

/* Highlight tag */
.special-highlight {
  background: rgba(241, 178, 74, 0.1);
  border: 1px solid rgba(241, 178, 74, 0.4);
  color: #704214;
  font-weight: 600;
  font-size: 15px;
  padding: 8px 16px;
  border-radius: 25px;
  display: inline-block;
  margin: 10px 0 25px;
  box-shadow: 0 3px 10px rgba(241, 178, 74, 0.1);
}

.special-highlight span {
  color: #d67d00;
  font-weight: 700;
}

/* Buttons */
.btn-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  background: linear-gradient(45deg, #d67d00, #f1b24a);
  color: #fff;
  padding: 10px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(241, 178, 74, 0.25);
}

.btn:hover {
  background: linear-gradient(45deg, #f1b24a, #d67d00);
  transform: translateY(-2px);
}

/* Secondary Button */
.btn.secondary {
  background: #fff6e0;
  color: #704214;
  border: 1px solid #f1b24a;
  box-shadow: 0 4px 10px rgba(241, 178, 74, 0.15);
}

.btn.secondary:hover {
  background: #ffefd0;
}

/* Cake Image */
.hero-image img {
  width: 230px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(112, 66, 20, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 28px rgba(241, 178, 74, 0.25);
}

/* ===== MOBILE LAYOUT: TEXT ABOVE, IMAGE BELOW ===== */
@media (max-width: 768px) {
  .hero-content {
    display: flex;
    flex-direction: column; /* ensure stacking */
    text-align: center;
    align-items: center;
    gap: 12px;
  }

  /* Force text to appear first and image after */
  .hero-text {
    order: 1;
  }

  .hero-image {
    order: 2;
  }

  /* Adjust padding for compact view */
  .hero {
    padding: 20px 12px 25px;
  }

  .hero-text h2 {
    font-size: 1.2rem;
    line-height: 1.3;
    margin-bottom: 6px;
    color: #704214;
  }

  .hero-text p {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 14px;
  }

  .hero-image img {
    width: 130px;
    border-radius: 12px;
    margin-top: 6px;
    box-shadow: 0 4px 12px rgba(241, 178, 74, 0.25);
  }

  .btn-group {
    flex-direction: column;
    gap: 6px;
  }

  .btn {
    font-size: 0.8rem;
    padding: 8px 16px;
    border-radius: 22px;
  }

  .special-highlight {
    font-size: 12px;
    padding: 5px 10px;
    margin-bottom: 14px;
  }
}

/* ===== CATEGORIES SECTION (Desktop: Straight Line | Mobile: Cards Grid) ===== */
.collections {
  padding: 40px 0;
  background: #fff;
}

.collections h3 {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: #d65a8c;
  margin-bottom: 20px;
}

/* Desktop - one straight line */
.category-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding: 10px 20px;
  scroll-behavior: smooth;
}

/* Each Category Card */
.category-item {
  flex: 0 0 auto;
  text-align: center;
  text-decoration: none;
  color: #333;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 140px;
}

.category-item:hover {
  transform: translateY(-5px);
}

.category-item img {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.category-item p {
  margin-top: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  color: #444;
}

/* ===== FLAVOURS SECTION ===== */
.flavours {
  background: #fff7fa;
  padding: 40px 0;
}

.flavours h3 {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: #d65a8c;
  margin-bottom: 20px;
}

.flavour-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 25px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding: 10px 20px;
  scroll-behavior: smooth;
}

.flavour-card {
  flex: 0 0 auto;
  background: #fff;
  border-radius: 16px;
  padding: 16px 20px;
  font-weight: 600;
  text-align: center;
  color: #d65a8c;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  min-width: 140px;
}

.flavour-card:hover {
  transform: translateY(-5px);
}

/* ===== MOBILE VIEW (No Scroll – Cards Grid) ===== */
@media (max-width: 768px) {
  /* Categories: 2 or 3 cards per row */
  .category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 18px;
    justify-items: center;
    overflow-x: hidden;
  }

  .category-item {
    width: 100%;
  }

  .category-item img {
    width: 100%;
    max-width: 130px;
    height: 120px;
  }

  .category-item p {
    font-size: 0.85rem;
  }

  /* Flavours: Grid layout too */
  .flavour-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 18px;
    justify-items: center;
    overflow-x: hidden;
  }

  .flavour-card {
    min-width: auto;
    width: 100%;
    max-width: 140px;
    font-size: 0.85rem;
    padding: 12px 14px;
  }
}

/* ===== Wedding Cakes Section ===== */
.wedding-showcase {
  text-align: center;
  padding: 70px 8%;
  background: #fffafc;
}

.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: 27px;
  color: #742c48;
  margin-bottom: 8px;
}

.section-subtitle {
  color: #6b4f4a;
  margin-bottom: 40px;
  font-size: 15px;
}

.cake-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.cake-card {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #eee;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  overflow: hidden;
  text-align: left;
}

.cake-card img {
  width: 100%;
  height: 250px;
  object-fit: contain;
  background: #fff8fb;
  padding: 12px;
  border-bottom: 1px solid #eee;
  border-radius: 12px 12px 0 0;
  display: block;
  margin: 0 auto;
  transition: transform 0.3s ease;
}

.cake-card:hover img {
  transform: scale(1.03);
}

.cake-card h4 {
  font-size: 15px;
  font-weight: 600;
  color: #3a1f1f;
  padding: 10px 15px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

html {
  scroll-behavior: smooth;
}

/* Bottom Row - Book + Rating */
.card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 15px 18px;
}

/* Book Now Button */
.book-btn {
  background: linear-gradient(45deg, #ffb6c1, #f1b24a);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.book-btn:hover {
  background: linear-gradient(45deg, #f1b24a, #ffb6c1);
  transform: scale(1.05);
}

/* Rating Badge */
.rating {
  background: #e8ffe8;
  color: #1f7a1f;
  font-size: 13px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
}

/* ===== WEDDING & ENGAGEMENT CAKES SECTION ===== */
.wedding-showcase {
  text-align: center;
  padding: 70px 8%;
  background: #fffafc;
}

.wedding-showcase .section-heading {
  font-family: 'Playfair Display', serif;
  font-size: 27px;
  color: #a64b7b;
  margin-bottom: 8px;
}

.wedding-showcase .section-subtitle {
  color: #6b4f4a;
  margin-bottom: 40px;
  font-size: 16px;
}

.wedding-showcase .cake-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.wedding-showcase .cake-card {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #eee;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
  text-align: left;
}

.wedding-showcase .cake-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.wedding-showcase .cake-card img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  background: #fff7fb;
  padding: 10px;
  border-bottom: 1px solid #eee;
}

.wedding-showcase .cake-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: #3a1f1f;
  padding: 12px 15px 0;
}

.wedding-showcase .card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 15px 18px;
}

.wedding-showcase .book-btn {
  background: linear-gradient(45deg, #ffb6c1, #f1b24a);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.wedding-showcase .book-btn:hover {
  background: linear-gradient(45deg, #f1b24a, #ffb6c1);
  transform: scale(1.05);
}

.wedding-showcase .rating {
  background: #e8ffe8;
  color: #1f7a1f;
  font-size: 14px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
}

/* ===== VIEW ALL BUTTON ===== */
.wedding-showcase .view-all {
  margin-top: 40px;
}

.wedding-showcase .view-all .btn {
  background: #fff;
  border: 1.5px solid #ff9db3;
  color: #a82f48;
  padding: 10px 24px;
  border-radius: 40px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(255, 157, 179, 0.15);
}

.wedding-showcase .view-all .btn:hover {
  background: linear-gradient(90deg, #ff9db3, #f1b24a);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 157, 179, 0.3);
}



/* ===== 1ST BIRTHDAY CAKES SECTION ===== */
.birthday-showcase {
  text-align: center;
  padding: 70px 8%;
  background: #fffafc;
}

.birthday-showcase .section-heading {
  font-family: 'Playfair Display', serif;
  font-size: 27px;
  color: #c23b72;
  margin-bottom: 8px;
}

.birthday-showcase .section-subtitle {
  color: #6b4f4a;
  margin-bottom: 40px;
  font-size: 16px;
}

.birthday-showcase .cake-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.birthday-showcase .cake-card {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #eee;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  overflow: hidden;
  text-align: left;
}

.birthday-showcase .cake-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.birthday-showcase .cake-card img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  background: #fff8fb;
  padding: 10px;
  border-bottom: 1px solid #eee;
}

.birthday-showcase .cake-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: #3a1f1f;
  padding: 12px 15px 0;
}

.birthday-showcase .card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 15px 18px;
}

.birthday-showcase .book-btn {
  background: linear-gradient(45deg, #ffb6c1, #f1b24a);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.birthday-showcase .book-btn:hover {
  background: linear-gradient(45deg, #f1b24a, #ffb6c1);
  transform: scale(1.05);
}

.birthday-showcase .rating {
  background: #e8ffe8;
  color: #1f7a1f;
  font-size: 14px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
}

.birthday-showcase .view-all {
  margin-top: 40px;
}

.birthday-showcase .view-all .btn {
  background: #fff;
  border: 1px solid #f1b24a;
  color: #704214;
  padding: 10px 24px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.birthday-showcase .view-all .btn:hover {
  background: #f1b24a;
  color: #fff;
}
/* ===== ANNIVERSARY CAKES SECTION ===== */
.anniversary-showcase {
  text-align: center;
  padding: 70px 8%;
  background: #fff6f7;
}

.anniversary-showcase .section-heading {
  font-family: 'Playfair Display', serif;
  font-size: 27px;
  color: #a82f48;
  margin-bottom: 8px;
}

.anniversary-showcase .section-subtitle {
  color: #5b3c36;
  margin-bottom: 40px;
  font-size: 16px;
}

.anniversary-showcase .cake-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.anniversary-showcase .cake-card {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #eee;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  overflow: hidden;
  text-align: left;
}

.anniversary-showcase .cake-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.anniversary-showcase .cake-card img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  background: #fff7f8;
  padding: 10px;
  border-bottom: 1px solid #eee;
}

.anniversary-showcase .cake-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: #3a1f1f;
  padding: 12px 15px 0;
}

.anniversary-showcase .card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 15px 18px;
}

.anniversary-showcase .book-btn {
  background: linear-gradient(45deg, #ff809f, #f1b24a);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.anniversary-showcase .book-btn:hover {
  background: linear-gradient(45deg, #f1b24a, #ff809f);
  transform: scale(1.05);
}

.anniversary-showcase .rating {
  background: #fff0f0;
  color: #b82a2a;
  font-size: 14px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
}

.anniversary-showcase .view-all {
  margin-top: 40px;
}

.anniversary-showcase .view-all .btn {
  background: #fff;
  border: 1px solid #ff9db3;
  color: #a82f48;
  padding: 10px 24px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.anniversary-showcase .view-all .btn:hover {
  background: #ff9db3;
  color: #fff;
}

/* ===== THOUGHTFULLY CURATED (Compact Version) ===== */
.curated {
  padding: 40px 20px;
  background: #fff;
  text-align: center;
}

.curated h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #c23b72;
  margin-bottom: 25px;
}

.curated-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.curated-card {
  border-radius: 16px;
  padding: 30px 18px;
  color: #fff;
  font-weight: 600;
  text-align: center;
  transition: transform 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.curated-card:hover {
  transform: translateY(-5px);
}

/* Smaller text for compact layout */
.curated-card h4 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.curated-card p {
  font-size: 0.85rem;
}

/* Pastel color gradients */
.curated-card.pink {
  background: linear-gradient(135deg, #ffb6c1, #ff85a1);
}

.curated-card.gold {
  background: linear-gradient(135deg, #ffd580, #ffb84d);
  color: #4a2c2a;
}

.curated-card.mint {
  background: linear-gradient(135deg, #b2f2bb, #7ddf98);
  color: #204b32;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .wedding-grid {
    grid-template-columns: 1fr;
  }

  .curated-grid {
    grid-template-columns: 1fr;
  }

  .wedding-section h3,
  .curated h3 {
    font-size: 1.3rem;
  }

  .wedding-card img {
    height: 140px;
  }

  .wedding-card p {
    font-size: 0.8rem;
  }

  .curated-card {
    padding: 24px 14px;
  }

  .curated-card p {
    font-size: 0.8rem;
  }
}

/* ===== CELEBRATE WITH STYLE (Full Image Visible Version) ===== */
.curated {
  padding: 50px 20px;
  background: #fff;
  text-align: center;
}

.curated h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #c23b72;
  margin-bottom: 8px;
}

.curated .section-subtitle {
  color: #6b4f4a;
  margin-bottom: 30px;
  font-size: 1rem;
}

.curated-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto;
}

/* Card base */
.curated-card {
  border-radius: 16px;
  overflow: hidden;
  color: #fff;
  text-align: center;
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
  border: 1px solid #f5e6eb;
}

.curated-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

/* 🧁 Image Styling — Full Image, No Crop */
.curated-img {
  width: 100%;
  height: 220px;
  object-fit: contain; /* shows full image */
  background: #fff8fb; /* soft pastel background for gaps */
  padding: 10px;
  display: block;
}

/* Card Text Content */
.curated-content {
  padding: 18px 15px 22px;
}

.curated-content h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
  color: #4a2c2a;
}

.curated-content p {
  font-size: 0.85rem;
  line-height: 1.45;
  color: #5a3a2d;
}

/* 🎨 Colored Bottom Borders to Differentiate Cards */
.curated-card.pink {
  border-bottom: 4px solid #ff85a1;
}

.curated-card.gold {
  border-bottom: 4px solid #f1b24a;
}

.curated-card.mint {
  border-bottom: 4px solid #7ddf98;
}

/* ===== MOBILE VIEW ===== */
@media (max-width: 768px) {
  .curated-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .curated-img {
    height: 200px;
    padding: 8px;
  }

  .curated-content h4 {
    font-size: 0.95rem;
  }

  .curated-content p {
    font-size: 0.8rem;
  }
}

/* ===== FOOTER (Elegant Darker Pastel Version) ===== */
footer {
  background: linear-gradient(to top, #4b1f35, #70324f);
  padding: 45px 20px 20px;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.08);
  text-align: center;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto 20px;
  text-align: left;
}

.footer-grid h4, 
.footer-grid h5 {
  color: #ffffff;
  font-family: 'Playfair Display', serif;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.footer-grid p, 
.footer-grid li, 
.footer-grid a {
  font-size: 0.9rem;
  color: #fff8fa;
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-grid a:hover {
  color: #ffe0ec;
}

/* List Reset */
.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Decorative Divider */
footer::before {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #ffffff;
  margin: 0 auto 25px auto;
  border-radius: 2px;
  opacity: 0.9;
}

/* Copyright */
footer .copyright {
  font-size: 0.85rem;
  color: #ffe0ec;
  border-top: 1px solid rgba(255,255,255,0.3);
  padding-top: 10px;
  margin-top: 15px;
}

/* ===== MOBILE FOOTER ===== */
@media (max-width: 768px) {
  footer {
    padding: 35px 15px 15px;
  }

  .footer-grid {
    text-align: center;
    grid-template-columns: 1fr;
  }

  .footer-grid h4,
  .footer-grid h5 {
    font-size: 1rem;
  }

  .footer-grid a,
  .footer-grid p {
    font-size: 0.85rem;
  }
}

/* ===== WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(45deg, #25d366, #128c7e);
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  text-decoration: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .navbar {
    flex-wrap: wrap;
    padding: 15px 20px;
  }
  nav {
    display: none;
    flex-direction: column;
    width: 100%;
    text-align: center;
    background: white;
  }
  nav.show {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
  .hero-text h2 {
    font-size: 2.2rem;
    text-align: center;
  }
  .hero-content {
    flex-direction: column-reverse;
    text-align: center;
  }
  .hero-media { height: 250px; width: 100%; }
}
/* ===== GLOBAL SPACING FIXES ===== */

/* Reduce vertical spacing between all major sections */
section {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
  margin-bottom: 0 !important;
}

/* If some sections still have large margins (like curated or collections), adjust them */
.collections,
.curated,
.wedding-showcase,
.birthday-showcase,
.anniversary-showcase {
  padding-top: 45px !important;
  padding-bottom: 45px !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* Tighten the space below headings and subtitles */
.section-heading {
  margin-bottom: 6px !important;
}

.section-subtitle {
  margin-bottom: 25px !important;
}

/* Reduce space below grids */
.cake-grid {
  gap: 20px !important;
}

/* Minimize space before View All buttons */
.view-all {
  margin-top: 25px !important;
}

/* Ensure no extra white gap below footer or last section */
footer {
  margin-top: 0 !important;
  padding-top: 30px !important;
}

/* Remove hidden padding that sometimes browsers add at the bottom */
body {
  margin: 0;
  padding: 0;
}

/* ===== MOBILE VIEW TIGHTER LAYOUT ===== */
@media (max-width: 768px) {
  section {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
  }

  .cake-grid {
    gap: 18px !important;
  }

  .section-heading {
    font-size: 22px !important;
  }

  .section-subtitle {
    font-size: 14px !important;
    margin-bottom: 20px !important;
  }
}
/* ===== IMAGE MODAL STYLING ===== */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease-in-out;
}

.modal-content {
  background: #fff;
  border-radius: 10px;
  max-width: 90%;
  max-height: 90%;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  padding: 10px 20px 20px;
  animation: popIn 0.3s ease-in-out;
}

.modal-content img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  max-height: 75vh;
  object-fit: contain;
}

.modal-content h3 {
  margin-top: 10px;
  font-size: 18px;
  color: #3a1f1f;
  font-weight: 600;
}

.close {
  position: absolute;
  top: 25px;
  right: 40px;
  color: white;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.2s;
}

.close:hover {
  color: #ffb6c1;
}

@keyframes fadeIn {
  from { opacity: 0; } 
  to { opacity: 1; }
}

@keyframes popIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

footer {
  background: linear-gradient(135deg, #60204e, #7b2b65);
  color: #fff;
  text-align: center;
  padding: 35px 40px 20px;
  font-family: 'Poppins', sans-serif;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
}

/* Top Section */
.footer-top {
  margin-bottom: 10px;
}

.footer-top h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
}

.footer-top p {
  color: #e0e0e0;
  font-size: 14px;
}

/* Middle Section */
.footer-middle {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  text-align: left;
  max-width: 900px;
  margin: 0 auto 20px;
  position: relative;
}

/* Contact Section - shifted slightly left */
.footer-section.contact {
  position: relative;
  right: 450px; /* move contact slightly left */
}

/* Follow Section - stays in place */
.footer-section.social {
  position: relative;
  right: 0;
}

/* Headings and Links */
.footer-section h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #fff;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section li {
  margin: 5px 0;
}

.footer-section a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.6;
  display: inline-flex;
  align-items: center;
}

.footer-section a i {
  margin-right: 8px;
  color: #fff;
}

.social-links a {
  display: inline-block;
  margin-right: 15px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
  transform: translateY(-3px);
  color: #fff;
}

/* Copyright */
.copyright {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 10px;
  font-size: 13px;
  opacity: 0.8;
}

.whatsapp-float {
  position: fixed;
  width: 55px;
  height: 55px;
  bottom: 25px;
  right: 25px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 28px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #20ba5a;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.whatsapp-float i {
  color: #fff;
}
