/* Additional custom styles */

/* Smooth scroll offset for fixed nav */
section[id] {
    scroll-margin-top: 80px;
}

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

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

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

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

/* Selection color */
::selection {
    background-color: #C06C54;
    color: #FAF7F4;
}

/* Image loading placeholder */
img {
    background-color: #F5F0EB;
}

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid #C06C54;
    outline-offset: 2px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Print styles */
@media print {
    nav,
    .gallery-grid,
    #contactForm,
    .cta-button {
        display: none;
    }
    
    body {
        color: #000;
        background: #fff;
    }
}
