/* Custom Styles for Gordon's Confectionary */

html {
    scroll-behavior: smooth;
}

body {
    background-color: #0a0a0a;
    color: #e5e5e5;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #0a0a0a;
}
::-webkit-scrollbar-thumb {
    background: #722F37;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #8A3A42;
}

/* Gold Gradient Text Utility */
.text-gold-gradient {
    background: linear-gradient(135deg, #D4AF37 0%, #F4C2C2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Fade In Animation Classes */
.reveal-on-scroll {
    visibility: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

.reveal-on-scroll.is-visible {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

/* Navigation Active State */
.nav-link.active {
    color: #F4C2C2;
}

/* Image Aspect Ratio Fixes */
img {
    max-width: 100%;
    height: auto;
    display: block;
}
