#home {
    position: relative;
    overflow: hidden;
}

#home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30,30,30,0.9) 0%, rgba(30,30,30,0.7) 100%);
    z-index: -1;
}

#home .container {
    position: relative;
    z-index: 1;
}

#home h1 {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

#home h2 {
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

#home img {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

#home img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.text-primary {
    color: #f41e59; /* Ensure this matches your primary color */
}

.bg-primary {
    background-color: #f41e59;
}

.bg-primary-dark {
    background-color: #d61a4e;
}

.hover\:bg-primary-dark:hover {
    background-color: #d61a4e;
}

@media (min-width: 1024px) {
    #home .container {
        max-width: 1200px;
    }
}
