/* Custom Styles for Alberto Aznar Garcia Electricidad */

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

/* Custom Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.animate-bounce-slow {
    animation: float 3s ease-in-out infinite;
}

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

::-webkit-scrollbar-track {
    background: #f6f3f7;
}

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

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

/* Typography adjustments */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Fraunces', serif;
}

body {
    font-family: 'Outfit', sans-serif;
}

/* Form focus styles */
input:focus, textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.2);
}

/* Mobile menu transitions */
#mobile-menu {
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
