/* TnT Comfy-Home Logo Styles */

.logo-tnt-comfy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
    color: inherit;
}

.logo-icon {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 4px;
}

/* TnT House Logo */
.logo-house {
    position: relative;
    width: 60px;
    height: 40px;
    display: inline-block;
}

.logo-house::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20px;
    width: 12px;
    height: 20px;
    background: #FFC107;
}

.logo-house::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20px;
    width: 12px;
    height: 20px;
    background: #FFC107;
}

.logo-house .roof {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 20px;
    background: #FFC107;
    clip-path: polygon(0% 100%, 50% 0%, 100% 100%);
}

.logo-house .left-wall {
    position: absolute;
    left: 0;
    top: 20px;
    width: 12px;
    height: 20px;
    background: #FFC107;
}

.logo-house .right-wall {
    position: absolute;
    right: 0;
    top: 20px;
    width: 12px;
    height: 20px;
    background: #FFC107;
}

.logo-house .center-n {
    position: absolute;
    left: 24px;
    top: 20px;
    width: 12px;
    height: 20px;
    background: transparent;
    border-left: 2px solid #FFC107;
    border-right: 2px solid #FFC107;
}

/* Text Styles */
.logo-main-text {
    font-size: 20px;
    font-weight: bold;
    color: #FFC107;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.logo-sub-text {
    font-size: 11px;
    font-weight: bold;
    color: #FFC107;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
    margin-top: 2px;
}

/* SVG Logo Version */
.logo-svg {
    height: 60px;
    width: auto;
}

