/* Modern Minimal Header Styles */

.header-minimal {
    top: 0;
    left: 0;
    z-index: 1030;
    background: transparent;
    transition: all 0.3s ease;
}

/* Logo Styles */
.header-logo {
    transition: transform 0.3s ease;
}

.header-logo:hover {
    transform: translateY(-2px);
}
/* 
.header-logo img {
    filter: brightness(0) invert(1); 
} */

/* Contact Links */
.contact-links a {
    font-size: 0.95rem;
    transition: opacity 0.3s ease;
}

.contact-links a:hover {
    opacity: 0.8;
}

.hover-effect {
    position: relative;
}

.hover-effect::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: white;
    transition: width 0.3s ease;
}

.hover-effect:hover::after {
    width: 100%;
}

/* Social Links */
.social-links .social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links .social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.social-links .social-link i {
    font-size: 1rem;
}

/* Scroll Effect */
.header-minimal.scrolled {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .header-minimal {
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
    
    .header-logo img {
        height: 35px;
    }
    
    .social-links .social-link {
        width: 32px;
        height: 32px;
    }
    
    .social-links .social-link i {
        font-size: 0.875rem;
    }
}