/*
Theme Name: GoldieCircle Child
Theme URI: https://goldiecircle.com
Description: Custom child theme for GoldieCircle with accessibility features and chat interface
Author: GoldieCircle
Author URI: https://goldiecircle.com
Template: neve
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: goldiecircle-child
*/

/* This child theme inherits all Neve theme styles */

/* Custom overrides for GoldieCircle can go here */

/* ============================================
   FOOTER - Bigger text for elderly
   ============================================ */

.gc-footer {
    background: #2c3e50;
    color: rgba(255, 255, 255, 0.8);
    padding: 40px;
    text-align: center;
}

.gc-footer p {
    margin: 0;
    font-size: 20px !important; /* Add !important to override */
    font-weight: 600;
    line-height: 1.6;
}

.gc-footer a {
    color: #F4A300;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s;
}

.gc-footer a:hover {
    color: #FFB733;
    text-decoration: underline;
}

/* Footer Social Icons - All Aligned */
.gc-footer .social-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 20px 0;
    list-style: none !important;
}

.gc-footer .social-icons a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px !important;
    height: 40px !important;
    vertical-align: middle !important;
    list-style: none !important;
}

/* Force all icons same size */
.gc-footer .social-icons svg,
.gc-footer .social-icons img,
.gc-footer .social-icons i {
    width: 24px !important;
    height: 24px !important;
    vertical-align: middle !important;
}

/* Remove any padding/margin differences */
.gc-footer .social-icons a svg {
    margin: 0 !important;
    padding: 0 !important;
}

/* Remove any bullets or separators that might be added */
.gc-footer .social-icons::before,
.gc-footer .social-icons::after,
.gc-footer .social-icons a::before,
.gc-footer .social-icons a::after {
    content: '' !important;
    display: none !important;
}

/* Hide any text nodes between icons (bullets as text) */
.gc-footer .social-icons {
    font-size: 0 !important; /* Hide text nodes */
}

.gc-footer .social-icons a {
    font-size: 24px; /* Restore icon size */
}

/* NUCLEAR OPTION: Hide ALL text content in social icons container */
.gc-footer .social-icons,
.gc-footer .social-icons *:not(a):not(svg):not(i):not(img) {
    font-size: 0 !important;
    line-height: 0 !important;
    color: transparent !important;
}

/* Also try these selectors for Neve theme */
.footer--row .social-icons,
.footer .social-icons,
[class*="footer"] .social-icons {
    font-size: 0 !important;
}

.footer--row .social-icons a,
.footer .social-icons a,
[class*="footer"] .social-icons a {
    font-size: 24px !important;
}

/* Hide text nodes that are direct children */
.gc-footer .social-icons > text,
.footer .social-icons > text {
    display: none !important;
}

@media (max-width: 768px) {
    .gc-footer p {
        font-size: 18px !important;
    }
}

/* ============================================
   ZIP CODE VALIDATION - Real-time feedback
   Added: January 19, 2026
   ============================================ */

/* ZIP validation feedback box */
#zip-feedback {
    margin-top: 8px;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 4px;
    border-left: 4px solid;
    animation: slideDown 0.3s ease-out;
}

/* ZIP input states */
#gc_zip_code.valid {
    border-color: #2e7d32 !important;
    background-color: #f1f8f4 !important;
}

#gc_zip_code.invalid {
    border-color: #c62828 !important;
    background-color: #fff5f5 !important;
}

/* Slide down animation */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
