/* Stayzeef Industries - Custom Styles */

/* Logo styling for consistent display across all pages */
.logo {
    height: 2.5rem;
    width: auto;
    margin-right: 0.75rem;
    filter: brightness(1.1);
    transition: filter 0.2s ease;
}

.logo:hover {
    filter: brightness(1.3);
}

/* Brand text styling */
.brand-text {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: -0.025em;
}

/* Enhanced navigation hover effects */
.nav-link {
    transition: all 0.2s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #3b82f6;
    transition: width 0.2s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Card hover effects */
.project-card {
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Button enhancements */
.btn-primary {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

/* Responsive logo adjustments */
@media (max-width: 640px) {
    .logo {
        height: 2rem;
        margin-right: 0.5rem;
    }
    
    .brand-text {
        font-size: 1.125rem;
    }
}