/* Custom Styles for Hair & Braids by Mack */

/* Base styles to ensure smooth rendering */
html {
    scroll-behavior: smooth;
}

body {
    /* Fallback for Tailwind bg-deep-emerald */
    background-color: #022c22;
}

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

::-webkit-scrollbar-track {
    background: #022c22;
}

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

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

/* Reveal Animation Classes */
.reveal-on-scroll {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-on-scroll.hidden-reveal {
    opacity: 0;
    transform: translateY(30px);
}

/* Gold Gradient Text Utility */
.text-transparent.bg-clip-text {
    -webkit-background-clip: text;
    background-clip: text;
}

/* Custom selection color handled in HTML head via Tailwind config, 
   but ensuring fallback here */
::selection {
    background: #d4af37;
    color: #022c22;
}

/* Image aspect ratio handling */
img {
    max-width: 100%;
    height: auto;
}
