/* Custom Styles for Krystyna's */

/* Base Typography Overrides */
body {
    font-family: 'Lato', sans-serif;
}

h1, h2, h3, h4, .font-serif {
    font-family: 'Cinzel', serif;
}

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

/* Gold Gradient Text Utility */
.text-gradient-gold {
    background: linear-gradient(to right, #E5C158, #D4AF37, #B59226);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

::-webkit-scrollbar-thumb {
    background: #0A2B1C;
    border: 1px solid #D4AF37;
}

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

/* Navbar Transition State */
header.scrolled {
    background-color: rgba(5, 24, 16, 0.95);
    backdrop-filter: blur(10px);
    padding-top: 1rem;
    padding-bottom: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

/* Animation Keyframes */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

/* Image Hover Zoom Effect Helper */
img {
    transition: transform 0.5s ease;
}

/* Mobile Menu Transition */
#mobile-menu {
    animation: fadeIn 0.3s ease-out;
}

/* Focus States for Accessibility */
button:focus, a:focus {
    outline: 2px solid #D4AF37;
    outline-offset: 2px;
}
