/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Montserrat:wght@200;300;400;500;600;700&display=swap');

/* CSS Variables for Pink & White Theme */
:root {
  --color-pink-50: #fff1f2;
  --color-pink-100: #ffe4e6;
  --color-pink-200: #fecdd3;
  --color-pink-300: #fda4af;
  --color-pink-400: #fb7185;
  --color-pink-500: #f43f5e;
  --color-pink-600: #e11d48;
  --color-pink-700: #be123c;
  --color-pink-800: #9f1239;
  --color-pink-900: #881337;
  --color-pink-950: #4c0519;
  --color-velvet-noir: #1e0910;
  --color-charcoal: #292524;
  --color-white: #ffffff;
  --color-porcelain: #fff8fa;
  
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', Helvetica, Arial, sans-serif;
}

/* Custom base resets */
body {
  font-family: var(--font-sans);
  background-color: var(--color-white);
  color: var(--color-charcoal);
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6, .font-serif {
  font-family: var(--font-serif);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #fff1f2;
}
::-webkit-scrollbar-thumb {
  background: var(--color-pink-400);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-pink-600);
}

/* Pink Luxury Gradient Classes */
.bg-pink-gradient {
  background: linear-gradient(135deg, #f43f5e 0%, #fb7185 50%, #e11d48 100%);
}

.text-pink-gradient {
  background: linear-gradient(135deg, #e11d48 0%, #f43f5e 50%, #be123c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bg-pink-dark-gradient {
  background: linear-gradient(135deg, #881337 0%, #4c0519 50%, #1e0910 100%);
}

.bg-blush-soft-gradient {
  background: linear-gradient(180deg, #ffffff 0%, #fff1f2 100%);
}

/* Custom Card & Interactive Effects */
.card-hover {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.card-hover:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 25px -5px rgba(244, 63, 94, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Navigation Link Underline Effect */
.nav-link {
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--color-pink-500);
  transition: width 0.3s ease-in-out;
  border-radius: 1px;
}
.nav-link:hover::after {
  width: 100%;
}

/* Custom Dotted Leader for Menu */
.menu-leader {
  flex-grow: 1;
  border-bottom: 1px dotted rgba(244, 63, 94, 0.3);
  margin: 0 10px;
  position: relative;
  top: -4px;
}

/* Animation utilities */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-100 { animation-delay: 100ms; }
.delay-200 { animation-delay: 200ms; }
.delay-300 { animation-delay: 300ms; }
.delay-400 { animation-delay: 400ms; }

/* Custom Carousel styling */
.testimonial-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

/* Gallery Hover Overlay */
.gallery-item-overlay {
  background: rgba(76, 5, 25, 0.75);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

/* Focus styles for forms */
.form-input:focus {
  border-color: var(--color-pink-500);
  box-shadow: 0 0 0 2px rgba(244, 63, 94, 0.25);
  outline: none;
}

/* Glassmorphism Classes */
.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 12px 36px 0 rgba(244, 63, 94, 0.08), 0 2px 8px 0 rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(244, 63, 94, 0.35);
  box-shadow: 0 24px 48px -10px rgba(244, 63, 94, 0.18), 0 0 25px rgba(251, 113, 133, 0.2);
  transform: translateY(-6px);
}

.glass-badge {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(244, 63, 94, 0.18);
}

.glass-inner-dark {
  background: linear-gradient(145deg, rgba(45, 10, 22, 0.88), rgba(26, 5, 13, 0.94));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.glass-inner-light {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.9);
}

@keyframes pulseSlow {
  0%, 100% {
    transform: scale(1);
    opacity: 0.35;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.55;
  }
}

.animate-pulse-slow {
  animation: pulseSlow 7s ease-in-out infinite;
}

