/* MSGD Logo Component - Matching Skill Icon Style */
.msgd-logo {
    position: relative;
    width: 80px;
    height: 80px;
    background: var(--gradient-box-d);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: 3px solid #000;
    outline-offset: 1px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    font-size: 1.125rem; /* 18px - compressed to look like FontAwesome */
    font-weight: 900;
    color: var(--primary-color);
    z-index: 10;
    overflow: hidden;
    border: 1px solid var(--primary-color);
    font-family: 'Inter', Arial, sans-serif;
    letter-spacing: 0.5px;
    text-decoration: none;
    cursor: default; /* Non-interactive like skill icons */
}

/* Hover effects matching skill icons but without interactivity */
.msgd-logo:hover {
    transform: translateY(-3px);
    background: var(--gradient-primary);
    color: white;
    outline: 3px solid #000;
    outline-offset: 2px;
}

/* Alternative version using SVG background */
.msgd-logo-svg {
    position: relative;
    width: 80px;
    height: 80px;
    background: var(--gradient-box-d);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: 2px solid #000;
    outline-offset: 1px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    z-index: 10;
    overflow: hidden;
    border: 1px solid var(--primary-color);
    cursor: default;
}

.msgd-logo-svg svg {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    color: var(--primary-color);
}

.msgd-logo-svg svg text {
    fill: currentColor;
}

.msgd-logo-svg:hover {
    transform: translateY(-3px);
    outline: 3px solid #000;
    outline-offset: 2px;
    background: var(--gradient-primary);
    color: white;
}

/* Smaller version for navigation (matches smaller skill icons) */
.msgd-logo-nav {
    width: 70px;
    height: 70px;
    font-size: 0.75rem;
    letter-spacing: 0.25px;
}

/* Larger version for headers */
.msgd-logo-large {
    width: 100px;
    height: 100px;
    font-size: 1.375rem; /* 22px */
    letter-spacing: 1px;
}

/* Email signature version (smaller version matching main style) */
.msgd-logo-email {
    width: 40px;
    height: 40px;
    font-size: 0.7rem; /* 12px */
    letter-spacing: 0.25px;
    background: var(--gradient-box-d);
    border-radius: 8px; /* Proportionally smaller border radius */
    display: flex;
    align-items: center;
    justify-content: center;
    outline: 2px solid #000; /* Proportionally smaller outline */
    outline-offset: 0.5px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    font-weight: 900;
    color: var(--primary-color);
    z-index: 10;
    overflow: hidden;
    border: 2px solid var(--primary-color);
    font-family: 'Inter', Arial, sans-serif;
    text-decoration: none;
    cursor: default;
}

.msgd-logo-email:hover {
    transform: translateY(-2px); /* Smaller transform for smaller size */
    background: var(--gradient-primary);
    color: white;
    outline: 2px solid #000;
    outline-offset: 1px;
}
