/* Custom styles for Escola Prat de la Manta */

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

/* Custom animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0f0a0b;
}

::-webkit-scrollbar-thumb {
    background: #8e3a4a;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #d4af37;
}

/* Selection color */
::selection {
    background: #8e3a4a;
    color: #f5ebe0;
}

/* Form focus styles */
input:focus,
textarea:focus {
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.3);
}

/* Mobile menu transitions */
#mobile-menu {
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

#mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

/* Hover effects for cards */
.group:hover img {
    filter: grayscale(0%);
}

/* Luxury text gradient */
.text-gradient {
    background: linear-gradient(135deg, #d4af37 0%, #f5ebe0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Subtle box shadow for cards */
.shadow-luxury {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Responsive typography adjustments */
@media (max-width: 768px) {
    .text-5xl {
        font-size: 2.5rem;
    }
    
    .text-4xl {
        font-size: 2rem;
    }
}
