.pindaeng-logo-wrap {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}


.pindaeng-logo-symbol {
    width: 60px;
    height: 60px;
    position: relative;
    margin-right: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}


@keyframes shine {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.pindaeng-logo-building {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #ecf0f1, #bdc3c7);
    position: relative;
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.pindaeng-logo-building:before {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 8px solid #ecf0f1;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
}

.pindaeng-logo-building:after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 3px;
    right: 3px;
    height: 3px;
    background: linear-gradient(90deg, #2c3e50, #34495e);
    border-radius: 1px;
}

.pindaeng-logo-line {
    position: absolute;
    bottom: 8px;
    left: 8px;
    right: 8px;
    height: 3px;
    background: linear-gradient(90deg, #e74c3c, #f39c12);
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(231, 76, 60, 0.3);
}

/* 건축 도구 아이콘들 */
.pindaeng-logo-tools {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 16px;
    height: 16px;
}

.pindaeng-logo-tools:before {
    content: '⚒';
    font-size: 12px;
    color: #f39c12;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* 건축 블루프린트 라인 */
.pindaeng-logo-blueprint {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    opacity: 0.1;
}

.pindaeng-logo-blueprint:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(90deg, #fff 1px, transparent 1px),
        linear-gradient(0deg, #fff 1px, transparent 1px);
    background-size: 8px 8px;
    border-radius: 50%;
}

.pindaeng-logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}

.logo-main {
    font-size: 22px;
    font-weight: 800;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.8px;
    line-height: 1.1;
    margin-bottom: 3px;
    text-shadow: 0 2px 4px rgba(44, 62, 80, 0.1);
    position: relative;
}

.logo-main:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #e67e22, #f39c12);
    border-radius: 1px;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.logo-sub {
    font-size: 13px;
    font-weight: 600;
    color: #34495e;
    letter-spacing: 0.8px;
    line-height: 1.3;
    text-transform: none;
    opacity: 0.9;
    position: relative;
    margin-top: 2px;
}

.logo-sub:before {
    content: '✦';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    color: #f39c12;
    opacity: 0.8;
}

/* 애니메이션 효과 */
.pindaeng-logo-wrap:hover .pindaeng-logo-symbol {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.5);
}

.pindaeng-logo-wrap:hover .pindaeng-logo-line {
    background: linear-gradient(90deg, #e67e22, #f39c12);
    animation: slideIn 0.3s ease-in-out;
    box-shadow: 0 2px 6px rgba(230, 126, 34, 0.4);
}

.pindaeng-logo-wrap:hover .pindaeng-logo-building {
    transform: scale(1.1);
    box-shadow: 0 3px 12px rgba(0,0,0,0.3);
}

.pindaeng-logo-wrap:hover .pindaeng-logo-tools:before {
    animation: hammer 0.6s ease-in-out;
}

.pindaeng-logo-wrap:hover .logo-main:after {
    transform: scaleX(1);
}

.pindaeng-logo-wrap:hover .logo-sub:before {
    animation: sparkle 1s ease-in-out infinite;
}

@keyframes hammer {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-15deg); }
    75% { transform: rotate(15deg); }
}

@keyframes sparkle {
    0%, 100% { opacity: 0.7; transform: translateY(-50%) scale(1); }
    50% { opacity: 1; transform: translateY(-50%) scale(1.2); }
}

@keyframes slideIn {
    0% {
        transform: scaleX(0);
    }
    100% {
        transform: scaleX(1);
    }
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .pindaeng-logo-symbol {
        width: 45px;
        height: 45px;
        margin-right: 12px;
    }
    
    .pindaeng-logo-building {
        width: 18px;
        height: 18px;
    }
    
    .pindaeng-logo-tools {
        top: 6px;
        right: 6px;
    }
    
    .pindaeng-logo-tools:before {
        font-size: 10px;
    }
    
    .logo-main {
        font-size: 18px;
    }
    
    .logo-sub {
        font-size: 11px;
    }
    
    .logo-sub:before {
        left: -12px;
        font-size: 8px;
    }
}

@media (max-width: 480px) {
    .pindaeng-logo-text {
        display: none;
    }
    
    .pindaeng-logo-symbol {
        margin-right: 0;
        width: 40px;
        height: 40px;
    }
    
    .pindaeng-logo-building {
        width: 16px;
        height: 16px;
    }
    
    .pindaeng-logo-tools {
        top: 5px;
        right: 5px;
    }
    
    .pindaeng-logo-tools:before {
        font-size: 9px;
    }
} 