/* Header Styles */
.header {
    background: #fff;
    padding: 12px 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-section:hover {
    opacity: 0.9;
}

.logo-section img,
.logo-section h1 {
    pointer-events: none;
}

.logo-section img { 
    height: 35px; 
}

.site-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    white-space: nowrap;
}

.site-name span { 
    color: #e89a3c; 
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.email-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #e89a3c;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 16px;
    background: rgba(232, 154, 60, 0.1);
    border-radius: 8px;
    transition: all 0.3s;
    white-space: nowrap;
}

.email-link:hover {
    background: #e89a3c;
    color: #fff;
    transform: translateY(-2px);
}

.email-link svg {
    flex-shrink: 0;
}

.header-nav {
    display: flex;
    gap: 20px;
}

.nav-link {
    color: #6c757d;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s;
    white-space: nowrap;
}

.nav-link:hover { 
    color: #e89a3c; 
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #fff;
    padding: 50px 20px 40px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer img {
    height: 90px;
    margin-bottom: 25px;
    filter: brightness(0) invert(1);
}

.footer h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #e89a3c;
    margin-bottom: 15px;
}

.footer p {
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 25px;
    font-size: 1rem;
}

.footer-contact {
    margin: 30px 0;
}

.footer-email {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #e89a3c;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 12px 24px;
    background: rgba(232, 154, 60, 0.15);
    border-radius: 8px;
    transition: all 0.3s;
}

.footer-email:hover {
    background: #e89a3c;
    color: #fff;
    transform: translateY(-2px);
}

.footer-bottom {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
}

/* Mobile Responsive */
@media (min-width: 768px) {
    .header { 
        padding: 15px 40px; 
    }
    .logo-section img { 
        height: 45px; 
    }
    .site-name { 
        font-size: 1.6rem; 
    }
}

@media (max-width: 1024px) {
    .header-nav {
        display: none;
    }
}

@media (max-width: 767px) {
    .header-content {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .logo-section {
        flex-direction: row;
        align-items: center;
    }
    
    .logo-section img {
        height: 35px;
    }
    
    .site-name {
        font-size: 1.2rem;
    }
    
    .header-right {
        width: 100%;
        justify-content: center;
    }
    
    .email-link {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}