/* 
  Aptus Hook n' Horn Ranch
  Custom Styles & Animations
*/

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

/* Custom Selection Color */
::selection {
    background-color: #d4b0b6; /* plum-200 */
    color: #4e262e; /* plum-900 */
}

/* Typography Adjustments */
body {
    font-feature-settings: "cv11", "ss01";
}

h1, h2, h3 {
    font-weight: 400;
}

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

/* Fade In Animation */
@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fade-in-up 0.8s ease-out forwards;
    opacity: 0; /* Start hidden */
}

/* Navbar Scroll State */
.nav-scrolled {
    background-color: rgba(250, 250, 249, 0.95); /* stone-50 with opacity */
    backdrop-filter: blur(10px);
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    box-shadow: 0 1px 0 rgba(0,0,0,0.05);
}

/* Form Focus States */
input:focus, textarea:focus {
    background-color: rgba(255, 255, 255, 0.5);
}

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

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

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

::-webkit-scrollbar-thumb {
    background: #d4b0b6;
    border-radius: 4px;
}

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