/* Custom styles to supplement Tailwind */

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f7f2ec;
}
::-webkit-scrollbar-thumb {
    background: #c97652;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #bc5e3f;
}

/* Animation Utilities */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Custom Selection Color */
::selection {
    background-color: #e8d0c4;
    color: #69352b;
}

/* Form Focus States */
input:focus, textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(201, 118, 82, 0.2);
}

/* Image Aspect Ratios */
img {
    max-width: 100%;
    height: auto;
}
