/* ================================================
   TAYLORCOM NAVIGATION - Schlankes modernes MenÃ¼
   ================================================ */

/* Header Container */
.tc-header {
    background: linear-gradient(135deg, #b8c6d4 0%, #9ab0c4 100%);
    padding: 15px 40px;
    position: relative;
}

.tc-header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
}

.tc-logo img {
    max-height: 100px;
    width: auto;
}

.tc-shop-btn {
    background: #1a4a6e;
    color: white !important;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.2s ease;
}

.tc-shop-btn:hover {
    background: #0d3a5c;
    color: white !important;
}

/* Navigation */
.tc-nav {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.tc-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.tc-nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
}

.tc-nav-item {
    position: relative;
}

.tc-nav-link {
    display: block;
    padding: 16px 20px;
    color: #333;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    border-bottom: 3px solid transparent;
    transition: all 0.2s ease;
}

.tc-nav-link:hover,
.tc-nav-item:hover > .tc-nav-link {
    background: #f5f5f5;
    color: #0071e3;
    border-bottom-color: #0071e3;
}

.tc-nav-item.active > .tc-nav-link {
    background: #0071e3;
    color: white;
    border-bottom-color: #0071e3;
}

/* Dropdown Arrow - Unicode arrow */
.tc-nav-link.has-dropdown::after {
    content: " ";
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 6px;
    vertical-align: middle;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
}

/* Dropdown Menu */
.tc-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    border-radius: 0 0 8px 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.25s ease;
    z-index: 1001;
    list-style: none;
    margin: 0;
    padding: 8px 0;
}

.tc-nav-item:hover > .tc-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.tc-dropdown li {
    margin: 0;
}

.tc-dropdown a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.15s ease;
}

.tc-dropdown a:hover {
    background: #f0f7ff;
    color: #0071e3;
    padding-left: 24px;
}

/* Mobile Menu */
.tc-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1002;
}

.tc-hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: #333;
    margin: 5px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.tc-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.tc-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.tc-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .tc-hamburger {
        display: block;
    }
    
    .tc-nav-container {
        position: relative;
    }
    
    .tc-nav-list {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        box-shadow: 0 8px 24px rgba(0,0,0,0.15);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .tc-nav-list.active {
        max-height: 800px;
    }
    
    .tc-nav-link {
        padding: 14px 20px;
        border-bottom: 1px solid #eee;
    }
    
    .tc-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f9f9f9;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        transition: max-height 0.3s ease;
    }
    
    .tc-nav-item.dropdown-open > .tc-dropdown {
        max-height: 500px;
        padding: 8px 0;
    }
    
    .tc-dropdown a {
        padding-left: 40px;
    }
}

/* ================================================
   TAYLORCOM FOOTER
   ================================================ */

.tc-footer {
    background: #1d1d1f;
    color: #86868b;
    padding: 60px 40px 30px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.tc-footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.tc-footer-brand {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tc-footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #f5f5f7;
    font-weight: 600;
    font-size: 1.1rem;
}

.tc-footer-logo img {
    height: 32px;
}

.tc-footer-brand > p {
    color: #86868b;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.tc-footer-contact {
    margin-top: 15px;
    font-size: 0.9rem;
    line-height: 1.8;
}

.tc-footer-contact a {
    color: #86868b;
    text-decoration: none;
}

.tc-footer-contact a:hover {
    color: #f5f5f7;
}

.tc-footer-section h4 {
    color: #f5f5f7;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 0 20px 0;
}

.tc-footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tc-footer-section ul li {
    margin-bottom: 12px;
}

.tc-footer-section ul li a {
    color: #86868b;
    text-decoration: none;
    font-size: 0.9rem;
}

.tc-footer-section ul li a:hover {
    color: #f5f5f7;
}

.tc-footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 25px;
    border-top: 1px solid #424245;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.tc-footer-copyright {
    color: #86868b;
    font-size: 0.8rem;
}

.tc-footer-legal {
    display: flex;
    gap: 25px;
}

.tc-footer-legal a {
    color: #86868b;
    text-decoration: none;
    font-size: 0.8rem;
}

.tc-footer-legal a:hover {
    color: #f5f5f7;
}

@media (max-width: 900px) {
    .tc-footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .tc-footer-content {
        grid-template-columns: 1fr;
    }
    
    .tc-footer {
        padding: 40px 20px 20px;
    }
}
