/* Custom Styles for Edge Productions Barbershop */

:root {
    --forest: #064e3b;
    --forest-light: #075945;
    --cream: #FDFBF7;
    --sand: #E7E5DB;
}

body {
    background-color: var(--cream);
    color: var(--forest);
}

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

/* Custom Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

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

/* Geometric Decorations */
.geometric-shape {
    position: absolute;
    z-index: -1;
}

/* Form Focus Styles */
input:focus, select:focus, textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

/* Service Card Hover Effect */
.group:hover .group-hover\:rotate-1 {
    transform: rotate(1deg);
}

/* Mobile Menu Transitions */
#mobile-menu {
    transition: all 0.3s ease-in-out;
}
