/* ===========================================
   THEME: CORAL
   Used on: contact.html, website-redesign.html
   Primary: #FF6B6B | Dark: #E55A5A | Light: #FF8585
   =========================================== */

:root {
    --theme: #FF6B6B;
    --theme-dark: #E55A5A;
    --theme-light: #FF8585;
    --theme-glow: rgba(255, 107, 107, 0.25);
    --theme-pale: rgba(255, 107, 107, 0.08);
    --theme-rgb: 255, 107, 107;
    --theme-nav-rgb: 140, 50, 50; /* #8C3232 - 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, #8C3232 0%, #a33d3d 100%);
}
.fluid-header canvas {
    background: linear-gradient(135deg, #8C3232 0%, #a33d3d 100%);
}

/* Typewriter Effect */
.typewriter-text {
    background: linear-gradient(
        90deg,
        #ffffff 0%,
        #FF6B6B 25%,
        #FF8585 50%,
        #FF6B6B 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, #8C3232 0%, #a33d3d 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,
.contact-intro {
    background: linear-gradient(180deg, transparent 0%, var(--theme-pale) 50%, transparent 100%);
}
.page-intro::before,
.contact-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);
}

/* Coral-specific: Warning Cards */
.warning-card::before {
    background: linear-gradient(90deg, var(--theme), var(--theme-dark));
}
.warning-card:hover {
    box-shadow: 0 12px 30px var(--theme-glow);
}
.warning-card i {
    color: var(--theme);
}

/* Connect Cards */
.connect-card:hover {
    border-color: var(--theme-light);
}
.connect-card__icon {
    background: var(--theme-pale);
    color: var(--theme);
}
