body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #F3E5F5;
    color: #1a1a1a;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: #2E004E;
}

.bg-dark-violet {
    background-color: #2E004E !important;
}

.bg-light-violet {
    background-color: #F3E5F5 !important;
}

.bg-accent-violet {
    background-color: #9C27B0 !important;
}

.bg-soft-violet {
    background-color: #E1BEE7 !important;
}

.text-light-violet {
    color: #F3E5F5 !important;
}

.text-dark-violet {
    color: #2E004E !important;
}

.text-accent-violet {
    color: #9C27B0 !important;
}

.btn-primary {
    background-color: #9C27B0;
    border-color: #9C27B0;
    color: #FFFFFF;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: #7B1FA2;
    border-color: #7B1FA2;
    color: #FFFFFF;
    box-shadow: none;
}

.btn-outline-light {
    border-color: #F3E5F5;
    color: #F3E5F5;
}

.btn-outline-light:hover,
.btn-outline-light:focus,
.btn-outline-light:active {
    background-color: #F3E5F5;
    color: #2E004E;
    border-color: #F3E5F5;
}

.navbar-dark .navbar-nav .nav-link {
    color: #F3E5F5;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus {
    color: #E1BEE7;
}

.card {
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.2s ease-in-out;
}

.card:hover {
    transform: translateY(-2px);
}

.card-body {
    padding: 1.5rem;
}

.hero-section {
    background: linear-gradient(135deg, #2E004E 0%, #4a148c 100%);
    color: #F3E5F5;
}

.hero-section h1 {
    color: #F3E5F5;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: #9C27B0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
}

.form-control:focus {
    border-color: #9C27B0;
    box-shadow: 0 0 0 0.2rem rgba(156, 39, 176, 0.25);
}

#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2E004E;
    color: #F3E5F5;
    padding: 1rem;
    z-index: 1050;
    display: none;
    border-top: 2px solid #9C27B0;
}

#cookie-banner p {
    margin: 0;
    color: #F3E5F5;
}

#cookie-banner .btn {
    margin-left: 0.5rem;
}

a {
    color: #9C27B0;
    text-decoration: none;
}

a:hover {
    color: #7B1FA2;
    text-decoration: underline;
}

.text-muted {
    color: #4a148c !important;
}

.bg-soft-violet .text-muted {
    color: #2E004E !important;
}

.hero-image-container {
    background-color: #E1BEE7;
    border-radius: 8px;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

img[data-ai-prompt] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}
.card img,
.bg-light img,
.container img {
  display: block;
  width: 100%;
  height: auto;
}
/* Font safety overrides */
:root {
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
}
body,
h1,
h2,
h3,
h4,
h5,
h6,
.navbar,
.btn,
input,
textarea,
select {
  font-family: var(--font-sans);
}
/* WP Generator feature helpers */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background: linear-gradient(90deg, #0ea5e9, #22c55e);
  z-index: 9999;
  transition: width 120ms ease-out;
}
.scroll-top {
  position: fixed;
  right: 20px;
  bottom: 24px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: none;
  background: #111827;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.2);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 200ms ease, transform 200ms ease;
  z-index: 9998;
}
.scroll-top.is-visible {
  opacity: 0.95;
  transform: translateY(0);
}
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* Footer: make h5 headings white */
footer h5,
.footer h5 {
    color: #FFFFFF;
}

