/* Header & Footer Component Styles */

/* Site Header */
.site-header {
    border-bottom: 2px solid #5DC7B7;
    padding: 1.5rem 0;
    background: #fff;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    text-decoration: none;
    color: #000;
    display: inline-block;
    flex-shrink: 0;
}

.logo:hover {
    opacity: 0.8;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: -0.5px;
}

.logo p {
    font-size: 0.875rem;
    color: #666;
    margin-top: 0.25rem;
}

/* Main Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #5DC7B7;
}

.nav-link.active {
    color: #5DC7B7;
    font-weight: 600;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #5DC7B7;
}

.nav-cta {
    padding: 0.5rem 1.5rem;
    background: #5DC7B7;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.2s;
    border: 2px solid #5DC7B7;
}

.nav-cta:hover {
    background: transparent;
    color: #5DC7B7;
}

/* Site Footer */
.site-footer {
    border-top: 2px solid #5DC7B7;
    background: #f9f9f9;
    margin-top: 4rem;
    padding: 3rem 0 1.5rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: -0.5px;
}

.footer-tagline {
    font-size: 0.875rem;
    color: #666;
}

.footer-nav {
    display: contents;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-heading {
    font-size: 0.875rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000;
    margin-bottom: 0.25rem;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #5DC7B7;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #ddd;
    color: #666;
    font-size: 0.875rem;
}

.footer-made {
    font-style: italic;
    color: #999;
}

/* Responsive */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .nav-link,
    .nav-cta {
        flex: 1;
        text-align: center;
        min-width: 100px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}