body {
    font-family: 'Inter', sans-serif;
}
nav a, button, a.bg-blue-500, a.bg-green-500, a.bg-red-500, a.bg-yellow-500 {
    transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

/* Parallax Hero Section */
.hero-parallax {
    background-image: url('gg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    color: white;
}
.hero-parallax::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}
.hero-parallax .container {
    position: relative;
    z-index: 1;
}

/* Adjust padding for mobile */
@media (max-width: 768px) {
    .hero-parallax {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

/* Footer Icons */
footer i {
    transition: color 0.3s ease;
}

/* Login Form */
input, textarea {
    transition: border-color 0.3s ease;
}
input:focus, textarea:focus {
    outline: none;
    border-color: #3b82f6;
}

/* Animations */
@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes slide-up {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
.animate-fade-in {
    animation: fade-in 1s ease-out;
}
.animate-slide-up {
    animation: slide-up 1s ease-out;
}
.animate-pulse {
    animation: pulse 2s infinite;
}

/* Product Card Hover */
.transform:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.transform:hover img {
    transform: scale(1.1);
}
img {
    transition: transform 0.3s ease;
}

/* Mobile Menu */
#mobile-menu a {
    transition: color 0.3s ease;
}

/* Gallery Section */
.group:hover .opacity-0 {
    opacity: 1;
}
.group:hover img {
    transform: scale(1.1);
}