@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&family=Playfair+Display:wght@600;700;800&display=swap');

:root {
  --primary-color: #D946EF; /* Fuchsia 500 */
  --secondary-color: #0EA5E9; /* Sky 500 */
  --bg-light: #FDF4FF; /* Fuchsia 50 */
  --dark-color: #1E1B4B; /* Indigo 950 */
  
  --font-heading: 'Playfair Display', serif;
  --font-text: 'Open Sans', sans-serif;
}

body {
  font-family: var(--font-text);
  color: var(--dark-color);
  background-color: #ffffff;
}

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

.text-accent {
  color: var(--primary-color);
}

.bg-accent {
  background-color: var(--primary-color);
}

.bg-secondary {
  background-color: var(--secondary-color);
}

.bg-light-theme {
  background-color: var(--bg-light);
}

.btn-primary {
  background-color: var(--primary-color);
  color: #ffffff;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--dark-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Cookie Banner (JS Version) */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--dark-color);
  color: #ffffff;
  padding: 1.5rem;
  text-align: center;
  z-index: 9999;
  box-shadow: 0 -4px 15px rgba(0,0,0,0.3);
}

.cookie-btn {
  cursor: pointer;
  padding: 0.6rem 2rem;
  margin: 0.5rem;
  background-color: var(--primary-color);
  color: #ffffff;
  border-radius: 50px;
  border: none;
  display: inline-block;
  font-weight: bold;
  font-family: inherit;
  transition: all 0.3s ease;
}

.cookie-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.cookie-btn-alt {
  background-color: #4B5563;
}

/* Custom list marker style */
.custom-list-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.custom-list-number {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 1.5rem;
  height: 1.5rem;
  border-radius: 9999px;
  background-color: var(--primary-color);
  color: white;
  font-size: 0.875rem;
  font-weight: bold;
  margin-right: 0.75rem;
  margin-top: 0.125rem;
}