/* FRED Logo Styling */
.fred-logo {
    display: flex;
    align-items: center;
    gap: 0;
    position: relative;
    overflow: visible;
}

.fred-logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    /* No cropping - show full image */
    border-radius: 8px;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
}

.fred-logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.6));
}

.fred-tagline {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.fred-tagline p {
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.875rem;
    text-shadow: 
        0 0 15px rgba(255, 215, 0, 0.3),
        0 1px 3px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .fred-logo-img {
        height: 60px;
    }
    
    .fred-tagline p {
        font-size: 0.75rem;
        display: none; /* Hide tagline on very small screens */
    }
}

@media (max-width: 480px) {
    .fred-logo {
        gap: 0.5rem;
    }
    
    .fred-logo-img {
        height: 50px;
    }
}

/* Make sure the logo area doesn't take up too much space */
.fred-header .fred-logo {
    flex: 0 0 auto;
    max-width: 350px;
}