/* FreshThreads LLC - Company Logo Styles */

.freshthreads-logo {
    text-align: center;
    position: relative;
}

.freshthreads-logo.logo-full {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1), rgba(0, 0, 0, 0.3));
    border: 2px solid #ff0000;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
}

.freshthreads-logo.logo-header {
    padding: 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.freshthreads-logo.logo-mini {
    padding: 0.25rem;
}

.freshthreads-logo .brand-main {
    font-family: 'Impact', 'Arial Black', Arial, sans-serif;
    font-weight: 900;
    color: #ffffff;
    text-shadow:
        3px 3px 0px #ff0000,
        6px 6px 10px rgba(0, 0, 0, 0.8);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.freshthreads-logo.logo-full .brand-main {
    font-size: 4.5rem;
    letter-spacing: 12px;
}

.freshthreads-logo.logo-header .brand-main {
    font-size: 1.8rem;
    letter-spacing: 2px;
    margin-bottom: 0;
}

.freshthreads-logo.logo-mini .brand-main {
    font-size: 1.2rem;
    letter-spacing: 1px;
    margin-bottom: 0;
}

.freshthreads-logo .brand-cross {
    position: relative;
    margin: 1rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.freshthreads-logo.logo-full .brand-cross {
    width: 120px;
    height: 80px;
}

.freshthreads-logo.logo-header .brand-cross {
    width: 40px;
    height: 30px;
    margin: 0;
}

.freshthreads-logo.logo-mini .brand-cross {
    width: 30px;
    height: 20px;
    margin: 0;
}

.freshthreads-logo .cross-line {
    position: absolute;
    background: linear-gradient(45deg, #ff0000, #ffffff, #ff0000);
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.freshthreads-logo.logo-full .cross-line {
    width: 90px;
    height: 10px;
}

.freshthreads-logo.logo-header .cross-line {
    width: 30px;
    height: 4px;
}

.freshthreads-logo.logo-mini .cross-line {
    width: 20px;
    height: 3px;
}

.freshthreads-logo .cross-line-1 {
    transform: rotate(45deg);
}

.freshthreads-logo .cross-line-2 {
    transform: rotate(-45deg);
}

.freshthreads-logo .brand-llc {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Impact', Arial, sans-serif;
    font-weight: 900;
    color: #ff0000;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.freshthreads-logo.logo-full .brand-llc {
    font-size: 1.8rem;
    letter-spacing: 3px;
}

.freshthreads-logo.logo-header .brand-llc {
    font-size: 0.9rem;
    letter-spacing: 1px;
    position: static;
    transform: none;
    margin-left: 0.5rem;
}

.freshthreads-logo.logo-mini .brand-llc {
    font-size: 0.7rem;
    letter-spacing: 1px;
    position: static;
    transform: none;
    margin-left: 0.25rem;
}

.freshthreads-logo .brand-tagline {
    font-family: 'Impact', Arial, sans-serif;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    margin-top: 1rem;
    opacity: 0.95;
}

.freshthreads-logo.logo-full .brand-tagline {
    font-size: 1.4rem;
    letter-spacing: 6px;
}

.freshthreads-logo.logo-header .brand-tagline {
    display: none; /* Hide tagline in header version */
}

.freshthreads-logo.logo-mini .brand-tagline {
    display: none; /* Hide tagline in mini version */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .freshthreads-logo.logo-full .brand-main {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }

    .freshthreads-logo.logo-full .brand-cross {
        width: 80px;
        height: 60px;
    }

    .freshthreads-logo.logo-full .cross-line {
        width: 60px;
        height: 6px;
    }

    .freshthreads-logo.logo-full .brand-llc {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }

    .freshthreads-logo.logo-full .brand-tagline {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    .freshthreads-logo.logo-header .brand-main {
        font-size: 1.4rem;
        letter-spacing: 1px;
    }

    .freshthreads-logo.logo-header .brand-cross {
        width: 30px;
        height: 20px;
    }

    .freshthreads-logo.logo-header .cross-line {
        width: 20px;
        height: 3px;
    }
}
