/* Custom styles for Lost Creek Cabins */

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

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

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

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

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

/* Selection color */
::selection {
    background: #d7afbe;
    color: #2a1118;
}

/* Form focus styles */
input:focus,
textarea:focus {
    outline: none;
}

/* Subtle hover transitions for images */
img {
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Animation for mobile menu */
#mobile-menu {
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    
    img,
    button,
    a {
        transition: none;
    }
    
    .group:hover img {
        transform: none;
    }
}

/* Print styles */
@media print {
    nav,
    #contact-form,
    button {
        display: none;
    }
    
    body {
        color: #000;
        background: #fff;
    }
}
