/* ===========================================
   THEME: PINK
   Used on: ux-ui-design.html, free-audit.html
   Primary: #EC4899 | Dark: #DB2777 | Light: #F472B6
   =========================================== */

:root {
    --theme: #EC4899;
    --theme-dark: #DB2777;
    --theme-light: #F472B6;
    --theme-glow: rgba(236, 72, 153, 0.25);
    --theme-pale: rgba(236, 72, 153, 0.08);
    --theme-rgb: 236, 72, 153;
    --theme-nav-rgb: 60, 25, 45; /* #3C192D - matches header/footer */
}

/* Navigation CTA Button */
.nav-cta {
    background: var(--theme) !important;
    box-shadow: 0 4px 15px var(--theme-glow) !important;
}
.nav-cta:hover {
    background: var(--theme-dark) !important;
    box-shadow: 0 6px 20px rgba(var(--theme-rgb), 0.4) !important;
}

/* Fluid Header Background */
.fluid-header {
    background: linear-gradient(135deg, #3C192D 0%, #4d2039 100%);
}
.fluid-header canvas {
    background: linear-gradient(135deg, #3C192D 0%, #4d2039 100%);
}

/* Typewriter Effect */
.typewriter-text {
    background: linear-gradient(
        90deg,
        #ffffff 0%,
        #EC4899 25%,
        #F472B6 50%,
        #EC4899 75%,
        #ffffff 100%
    );
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease-in-out infinite;
}
.typewriter-cursor {
    background: var(--theme-light) !important;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #3C192D 0%, #4d2039 100%) !important;
}
.footer__bottom {
    border-top-color: rgba(255, 255, 255, 0.15);
}

/* Theme Accents */
.theme-accent {
    color: var(--theme);
}
.theme-accent-bg {
    background: var(--theme);
}
.theme-gradient-bg {
    background: linear-gradient(135deg, var(--theme) 0%, var(--theme-light) 100%);
}
.theme-border {
    border-color: var(--theme);
}
.theme-glow {
    box-shadow: 0 4px 20px var(--theme-glow);
}

/* Intro Section Styling */
.page-intro,
.audit-hero {
    background: linear-gradient(180deg, transparent 0%, var(--theme-pale) 50%, transparent 100%);
}
.page-intro::before {
    background: linear-gradient(180deg, transparent, var(--theme), transparent);
}

/* Stats/Numbers */
.stat-number,
.theme-number {
    color: var(--theme);
}

/* Cards & Highlights */
.theme-card:hover {
    border-color: var(--theme-light);
    box-shadow: 0 8px 30px var(--theme-glow);
}

/* Pink-specific: Design Showcase */
.design-showcase {
    box-shadow: 0 20px 60px var(--theme-glow);
}
