/* Text Logo Styles for SDMP */

/* Logo icon (balance scale) */
#logo .logo-icon {
    color: #eaa636;
    font-size: 24px;
    margin-right: 8px;
    vertical-align: middle;
    transition: all 0.3s ease;
}

#logo .logo-icon-dark {
    color: #eaa636;
}

#logo .logo-text {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #eaa636;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

#logo .logo-text-dark {
    color: #eaa636;
}

#logo .logo-text:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

/* Ampersand styling */
#logo .logo-text .ampersand {
    font-style: italic;
    font-size: 0.9em;
    color: #d89420;
    margin: 0 2px;
}

/* Tagline below logo (removed but keeping styles for potential future use) */
#logo .logo-tagline {
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    display: block;
    margin-top: -3px;
}

#logo .logo-tagline-dark {
    color: rgba(0, 0, 0, 0.6);
}

/* Footer logo icon */
.footer-logo-icon {
    color: #eaa636;
    font-size: 20px;
    margin-right: 8px;
    vertical-align: middle;
}

/* Footer logo text styles */
.footer-logo-text {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #eaa636;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo-text .ampersand {
    font-style: italic;
    font-size: 0.9em;
    color: #d89420;
    margin: 0 2px;
}

/* Responsive */
@media (max-width: 768px) {
    #logo .logo-icon {
        font-size: 20px;
        margin-right: 6px;
    }

    .footer-logo-icon {
        font-size: 18px;
        margin-right: 6px;
    }

    #logo .logo-text {
        font-size: 24px;
        letter-spacing: 1.5px;
    }

    #logo .logo-tagline {
        font-size: 8px;
        letter-spacing: 1px;
    }

    .footer-logo-text {
        font-size: 20px;
        letter-spacing: 1px;
    }
}