/* Sun-kissed white text for FRED logo */
.fred-logo h1 {
    color: #ffffff !important;
    text-shadow: 
        0 0 20px rgba(255, 215, 0, 0.5),  /* Golden glow */
        0 0 40px rgba(255, 193, 7, 0.3),   /* Amber outer glow */
        0 2px 4px rgba(0, 0, 0, 0.3),      /* Subtle shadow for depth */
        0 0 60px rgba(255, 235, 59, 0.2);  /* Soft yellow aura */
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.3));
    font-weight: 900;
    letter-spacing: 2px;
}

.fred-logo p {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 
        0 0 15px rgba(255, 215, 0, 0.3),
        0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Make the header background slightly darker to make white text pop */
.fred-header {
    background: linear-gradient(135deg, #1e5620 0%, #2E7D32 100%) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Update the wheat emojis to have a golden glow too */
.farm-name-banner::before,
.farm-name-banner::after {
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

/* Make sure the user button stands out */
.user-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.user-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}