/* =============================================
   SWEET BLISS CAKES - Pastel Theme Styles
   ============================================= */

/* ---------- CSS Variables ---------- */

:root {
  --pastel-pink: #f4a5c0;
  --pastel-pink-dark: #e8779e;
  --pastel-pink-light: #fdf0f4;
  --pastel-lavender: #c3aed6;
  --pastel-lavender-light: #ece4f3;
  --pastel-mint: #a8d8b9;
  --pastel-peach: #f7c5a8;
  --pastel-yellow: #f7e4a3;
  --pastel-blue: #a8cce0;
  --pastel-cream: #fef9f2;
  --pastel-bg: #fffafb;
  --text-dark: #3d3040;
  --text-muted-custom: #8a7e8e;
}

/* ---------- Global ---------- */

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  background-color: var(--pastel-bg);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-dark);
}

.text-highlight {
  color: var(--pastel-pink-dark);
  position: relative;
}

.text-pastel-pink {
  color: var(--pastel-pink-dark) !important;
}

/* ---------- Colour Utility Classes ---------- */

.bg-pastel-pink-light {
  background-color: var(--pastel-pink-light) !important;
}

.bg-pastel-lavender {
  background-color: var(--pastel-lavender) !important;
}

.bg-pastel-mint {
  background-color: var(--pastel-mint) !important;
}

.bg-pastel-peach {
  background-color: var(--pastel-peach) !important;
}

.bg-pastel-yellow {
  background-color: var(--pastel-yellow) !important;
}

.bg-pastel-blue {
  background-color: var(--pastel-blue) !important;
}

/* ---------- Buttons ---------- */

.btn-pastel-primary {
  background: linear-gradient(135deg, var(--pastel-pink), var(--pastel-lavender));
  color: #fff;
  border: none;
  transition: all 0.3s ease;
}

.btn-pastel-primary:hover {
  background: linear-gradient(135deg, var(--pastel-pink-dark), var(--pastel-lavender));
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(244, 165, 192, 0.4);
}

.btn-outline-pastel {
  border: 2px solid var(--pastel-pink);
  color: var(--pastel-pink-dark);
  background: transparent;
  transition: all 0.3s ease;
}

.btn-outline-pastel:hover {
  background-color: var(--pastel-pink-light);
  border-color: var(--pastel-pink-dark);
  color: var(--pastel-pink-dark);
  transform: translateY(-2px);
}

/* ---------- Navbar ---------- */

#mainNav {
  background-color: rgba(255, 250, 251, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

#mainNav .navbar-brand {
  color: var(--pastel-pink-dark);
  font-size: 1.4rem;
}

#mainNav .nav-link {
  color: var(--text-dark);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

#mainNav .nav-link:hover, #mainNav .nav-link.active {
  color: var(--pastel-pink-dark);
}

#mainNav.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

/* ---------- Hero Section ---------- */

.hero-section {
  min-height: 100vh;
  padding-top: 100px;
  background: linear-gradient(170deg, var(--pastel-bg) 0%, var(--pastel-pink-light) 50%, var(--pastel-lavender-light) 100%);
  position: relative;
}

.hero-title {
  line-height: 1.2;
}

.hero-image-wrapper {
  position: relative;
  display: inline-block;
}

.hero-blob {
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: linear-gradient(135deg, var(--pastel-pink-light), var(--pastel-lavender-light));
  border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%;
  animation: blobMorph 8s ease-in-out infinite;
  z-index: 0;
}

@keyframes blobMorph {
  0%, 100% {
    border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%;
  }
  25% {
    border-radius: 50% 60% 40% 50% / 60% 40% 50% 50%;
  }
  50% {
    border-radius: 40% 50% 60% 50% / 50% 50% 40% 60%;
  }
  75% {
    border-radius: 50% 40% 50% 60% / 40% 60% 50% 50%;
  }
}

.hero-placeholder {
  width: 350px;
  height: 350px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  position: relative;
  z-index: 1;
  border: 3px dashed var(--pastel-pink);
}

/* ---------- Sections ---------- */

.section-light {
  background-color: #fff;
}

.section-cream {
  background-color: var(--pastel-cream);
}

.section-cta {
  background: linear-gradient(170deg, var(--pastel-pink-light), var(--pastel-lavender-light));
}

/* ---------- Cake Cards ---------- */

.cake-card {
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.cake-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.cake-card-img {
  height: 200px;
}

/* ---------- Testimonial Cards ---------- */

.testimonial-card {
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.testimonial-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 1.2rem;
}

/* ---------- Value Cards ---------- */

.value-card {
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.value-icon {
  width: 70px;
  height: 70px;
}

/* ---------- Team Cards ---------- */

.team-card {
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.team-avatar {
  width: 100px;
  height: 100px;
}

/* ---------- About Hero ---------- */

.about-hero {
  min-height: 60vh;
  padding-top: 120px;
  padding-bottom: 60px;
  background: linear-gradient(170deg, var(--pastel-bg) 0%, var(--pastel-pink-light) 50%, var(--pastel-lavender-light) 100%);
}

.story-image-placeholder {
  height: 400px;
}

/* ---------- Footer ---------- */

.footer-pastel {
  background-color: var(--pastel-pink-light);
  border-top: 1px solid rgba(244, 165, 192, 0.2);
}

.footer-brand {
  color: var(--pastel-pink-dark);
}

.footer-brand:hover {
  color: var(--pastel-pink);
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(244, 165, 192, 0.2);
  color: var(--pastel-pink-dark);
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: linear-gradient(135deg, var(--pastel-pink), var(--pastel-lavender));
  color: #fff;
  transform: translateY(-3px);
}

/* ---------- Animations ---------- */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-section .container {
  animation: fadeInUp 0.8s ease-out;
}

/* ---------- Responsive ---------- */

@media (max-width: 991.98px) {
  .hero-placeholder {
    width: 250px;
    height: 250px;
  }
}

@media (max-width: 991.98px) {
  .hero-section {
    padding-top: 80px;
    min-height: auto;
    padding-bottom: 60px;
  }
}

@media (max-width: 991.98px) {
  .about-hero {
    min-height: auto;
    padding-top: 100px;
  }
}

@media (max-width: 575.98px) {
  .display-3 {
    font-size: 2.2rem;
  }
}

@media (max-width: 575.98px) {
  .display-5 {
    font-size: 1.8rem;
  }
}

@media (max-width: 575.98px) {
  .hero-placeholder {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 575.98px) {
  .story-image-placeholder {
    height: 250px;
  }
}

