/* Footer Color Override */
.footer {
    background: #110c2a !important;
}

/* Logo Color Override */
.nav-logo {
    color: #110c2a !important;
}

/* Contact Form Button Centering - Removed conflicting rules */

/* Desktop Grey Watermark between sections */
.about::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: 0;
    width: 600px;
    height: 400px;
    background-image: url('grey.png');
    background-repeat: no-repeat;
    background-position: left center;
    background-size: contain;
    opacity: 0.4;
    z-index: 0;
    pointer-events: none;
    display: block;
}

/* Hide desktop watermark on mobile */
@media (max-width: 768px) {
    .about::after {
        display: none !important;
    }
    
    /* Mobile watermark behind about text */
    .about-text::before {
        content: '' !important;
        position: absolute !important;
        top: 0 !important;
        left: -20px !important;
        width: 380px !important;
        height: 100% !important;
        background-image: url('grey-m.png') !important;
        background-repeat: no-repeat !important;
        background-position: left center !important;
        background-size: contain !important;
        opacity: 0.25 !important;
        z-index: 0 !important;
        pointer-events: none !important;
        display: block !important;
    }

    .about-text {
        position: relative !important;
        overflow: visible !important;
    }
}

.about {
    position: relative;
}

/* Portfolio Grid Responsive Styles */
@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .portfolio-image {
        height: 150px;
    }
    
    /* Responsive watermark for tablets */
    .about::after {
        width: 400px;
        height: 300px;
        bottom: -80px;
    }
}

@media (max-width: 480px) {
    .portfolio-grid {
        gap: 1rem;
    }
    
    .portfolio-item h3 {
        padding: 1rem;
        font-size: 1rem;
    }
    
    /* Responsive watermark for mobile */
    .about::after {
        width: 300px;
        height: 200px;
        bottom: -60px;
    }
}