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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

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

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

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

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

/* Selection Color */
::selection {
    background-color: #C05A43;
    color: white;
}

/* Focus Styles */
input:focus,
textarea:focus,
select:focus,
button:focus {
    outline: none;
}

/* Image Hover Effects */
img {
    transition: transform 0.5s ease;
}

/* Button Hover Effects */
button,
a {
    transition: all 0.3s ease;
}

/* Card Hover Effects */
.group:hover .group-hover\\:scale-105 {
    transform: scale(1.05);
}

/* Navbar Scroll Effect */
.navbar-scrolled {
    background-color: rgba(253, 252, 248, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Mobile Menu Animation */
#mobile-menu {
    animation: fadeIn 0.3s ease;
}

/* Form Focus States */
input:focus,
textarea:focus,
select:focus {
    border-color: #C05A43;
    box-shadow: 0 0 0 3px rgba(192, 90, 67, 0.2);
}

/* Responsive Typography */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem !important;
    }
    
    h2 {
        font-size: 2rem !important;
    }
}

/* Print Styles */
@media print {
    nav,
    #contact,
    .animate-bounce {
        display: none;
    }
}
