/* Global Styles to Prevent Page Scrolling */
* {
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

.hero-bg {
    background: linear-gradient(135deg, #F58DA8 0%, #32C8C8 50%, #E6B800 100%);
}

/* Brands Section Styles */
.brands-container {
    height: 200px;
    margin: 2rem 0;
    overflow: hidden;
    position: relative;
}

/* Hide scrollbars for all browsers */
.brands-container::-webkit-scrollbar {
    display: none;
}
.brands-container {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.brands-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
}

.brands-slide {
    display: flex;
    align-items: center;
    animation: scroll 25s linear infinite;
    user-select: none;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.brands-container:hover .brands-slide {
    animation-play-state: paused;
}

/* Ensure brand images are properly sized */
.brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    min-width: 15rem;
    transition: transform 0.3s ease;
}

.brand-item:hover {
    transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .brand-item {
        min-width: 100px;
        padding: 0.5rem;
    }
    
    .brand-item img {
        height: 6rem !important;
    }
    
    .brands-container {
        height: 140px;
    }
}
.paint-splash {
    /* Background image removed to eliminate crack effect */
}
.handwriting {
    font-family: 'Nothing You Could Do', cursive;
}
.section-divider {
    height: 100px;
    background: linear-gradient(to right bottom, #F58DA8 0%, #32C8C8 50%, transparent 50%, transparent 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 70%);
}
.btn-primary {
    background-color: #F58DA8;
    transition: all 0.3s ease;
}
.btn-primary:hover {
    background-color: #32C8C8;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.btn-secondary {
    background-color: #32C8C8;
    transition: all 0.3s ease;
}
.btn-secondary:hover {
    background-color: #E6B800;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}

/* Footer Improvements */
.border-gradient {
    border-image: linear-gradient(90deg, #F58DA8, #32C8C8, #E6B800) 1;
    border-top: 2px solid;
}

/* Mobile Menu Styles */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.mobile-menu.active {
    display: block;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-menu a {
    display: block;
    padding: 1rem 1.5rem;
    color: #374151;
    text-decoration: none;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.mobile-menu a:hover {
    background-color: rgba(245, 141, 168, 0.1);
    color: #F58DA8;
    padding-left: 2rem;
}

.mobile-menu a:last-child {
    border-bottom: none;
}