/* Base Styles */
body {
    line-height: 1.6;
}

/* Hero Section Overlay */
section#home::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}

section#home > * {
    position: relative;
    z-index: 2;
}

/* Product Section Styling */
section#products .flex {
    transition: transform 0.3s ease;
}

section#products .flex:hover {
    transform: translateY(-5px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
}

/* Animation for Sustainability Icons */
.bg-white\/10 i {
    transition: transform 0.3s ease;
}

.bg-white\/10:hover i {
    transform: scale(1.1);
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}