﻿/* B-Born Custom Styles & Branding Palette */
:root {
  --primary-pink: #ab3e78;
  --primary-deep: #8a255c;
  --accent-coral: #f26649;
  --accent-light: #f89d5d;
  --brand-gradient: linear-gradient(135deg, #db2385 0%, #ab3e78 50%, #6d17a6 100%);
  --coral-gradient: linear-gradient(135deg, #f26649 0%, #e04a2c 100%);
  --soft-pink-bg: #fdf6f9;
  --cream-bg: #fffaf8;
  --dark-bg: #141824;
}

html {
  scroll-behavior: smooth;
  font-family: 'Nunito Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #fdf6f9;
}
::-webkit-scrollbar-thumb {
  background: #e2a5c4;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #ab3e78;
}

/* Gradient text utilities */
.text-brand-gradient {
  background: linear-gradient(135deg, #db2385 0%, #ab3e78 50%, #f26649 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-coral-gradient {
  background: linear-gradient(135deg, #f26649 0%, #f0598c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Button & Card Glows */
.btn-brand-gradient {
  background: linear-gradient(135deg, #db2385 0%, #ab3e78 60%, #87195d 100%);
  box-shadow: 0 10px 25px -5px rgba(171, 62, 120, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-brand-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -5px rgba(171, 62, 120, 0.55);
}

.btn-coral-gradient {
  background: linear-gradient(135deg, #f26649 0%, #e2492a 100%);
  box-shadow: 0 10px 25px -5px rgba(242, 102, 73, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-coral-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -5px rgba(242, 102, 73, 0.55);
}

/* Floating animation */
@keyframes floatSlow {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

.animate-float {
  animation: floatSlow 4s ease-in-out infinite;
}

.animate-float-delayed {
  animation: floatSlow 5s ease-in-out 1.5s infinite;
}

/* Download button pulse */
@keyframes downloadPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(242, 102, 73, 0.6); }
  50% { box-shadow: 0 0 0 14px rgba(242, 102, 73, 0); }
}

.pulse-download {
  animation: downloadPulse 2.5s infinite;
}

/* Glassmorphism */
.glass-card {
  background: rgba(255, 255, 255, 0.90);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.85);
}

.glass-card-pink {
  background: rgba(255, 250, 253, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(235, 175, 205, 0.35);
}

/* Accordion transition */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  opacity: 0;
}

.accordion-content.open {
  max-height: 600px;
  opacity: 1;
}

/* Mobile bottom sticky bar safety margin */
.pb-mobile-sticky {
  padding-bottom: 5rem;
}

@media (min-width: 768px) {
  .pb-mobile-sticky {
    padding-bottom: 0;
  }
}
