@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&display=swap');

:root{
  --cream:#fff5f7;
  --rose:#ff99bb;
  --rose-dark:#ff6b9d;
  --rose-darker:#ff4d8f;
  --blush:#ffe4ec;
  --lavender:#f5e6ff;
}

* {
  font-family: 'Quicksand', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background: linear-gradient(135deg, #fff5f7 0%, #ffe4ec 50%, #f5e6ff 100%);
  background-attachment: fixed;
}

.card { 
  background: #fff; 
  border: 2px solid #ffcce0; 
  border-radius: 1.5rem; 
  box-shadow: 0 4px 12px rgba(255, 105, 180, 0.15);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 105, 180, 0.25);
}

.card-girlie {
  background: linear-gradient(135deg, #ffffff 0%, #fff0f5 100%);
  border: 2px solid #ffcce0;
  border-radius: 1.5rem;
  box-shadow: 0 4px 12px rgba(255, 105, 180, 0.15);
  transition: all 0.3s ease;
}

.card-girlie:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 105, 180, 0.25);
  border-color: #ff99bb;
}

.segmented { 
  display: flex; 
  flex-wrap: wrap; 
  gap: 0.5rem; 
}

.segmented button { 
  padding: 0.375rem 0.75rem; 
  border-radius: 1.5rem; 
  font-weight: 600; 
  border: 2px solid #ffcce0; 
  background: linear-gradient(135deg, #fff 0%, #fff5f7 100%); 
  color: #ff4d8f;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(255, 105, 180, 0.1);
  font-size: 0.75rem;
}

@media (min-width: 640px) {
  .segmented button {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
}

.segmented button:hover {
  border-color: #ff99bb;
  background: linear-gradient(135deg, #fff5f7 0%, #ffe4ec 100%);
  transform: scale(1.05);
}

.segmented button.active { 
  background: linear-gradient(135deg, #ff99bb 0%, #ff6b9d 100%);
  color: #fff; 
  border-color: #ff6b9d;
  box-shadow: 0 4px 12px rgba(255, 105, 180, 0.3);
  transform: scale(1.05);
}

/* Drawer */
.drawer { 
  position: fixed; 
  inset: 0; 
  z-index: 50; 
}

.drawer-backdrop { 
  position: absolute; 
  inset: 0; 
  background: rgba(255, 192, 203, 0.4);
  backdrop-filter: blur(8px);
}

.drawer-panel { 
  position: absolute; 
  right: 0; 
  top: 0; 
  height: 100%; 
  width: 100%; 
  max-width: 100vw;
  background: linear-gradient(135deg, #ffffff 0%, #fff5f7 100%);
  box-shadow: -10px 0 40px rgba(255, 105, 180, 0.3);
  display: flex; 
  flex-direction: column;
  border-left: 4px solid #ff99bb;
}

@media (min-width: 640px) {
  .drawer-panel {
    max-width: 720px;
  }
}

.hidden { 
  display: none; 
}

/* Prose styling for content */
.prose-pink {
  color: #4a5568;
}

.prose-pink h3 {
  color: #ff4d8f;
  font-weight: 700;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.prose-pink strong {
  color: #ff6b9d;
  font-weight: 700;
}

.prose-pink ul, .prose-pink ol {
  margin-left: 1.5rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.prose-pink li {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

.prose-pink p {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
  line-height: 1.7;
}

.prose-pink em, .prose-pink i {
  color: #ff6b9d;
  font-style: italic;
  font-weight: 600;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #ffe4ec;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #ff99bb 0%, #ff6b9d 100%);
  border-radius: 10px;
  border: 2px solid #ffe4ec;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #ff6b9d 0%, #ff4d8f 100%);
}

/* Button animations */
button {
  transition: all 0.3s ease;
}

button:active {
  transform: scale(0.95);
}

/* Input focus styling */
input:focus {
  box-shadow: 0 0 0 3px rgba(255, 153, 187, 0.3);
}

/* Card button hover effects */
.text-left.group:hover .card {
  border-color: #ff99bb;
  box-shadow: 0 10px 25px rgba(255, 105, 180, 0.3);
}
