/* Custom styles for Lost Coast Baking Company */

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

/* Custom Selection Color */
::selection {
    background-color: #D4AF37;
    color: #050A18;
}

/* Navbar Scroll Effect */
nav.scrolled {
    background-color: rgba(5, 10, 24, 0.95);
    backdrop-filter: blur(10px);
    padding-top: 1rem;
    padding-bottom: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Mobile Menu Animation */
#mobile-menu {
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}

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

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

/* Form Focus Styles */
input:focus,
textarea:focus {
    border-color: #D4AF37 !important;
    box-shadow: 0 0 0 1px #D4AF37;
}

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

::-webkit-scrollbar-track {
    background: #050A18;
}

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

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

/* Animation Utilities */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Decorative Elements */
.gold-line {
    height: 2px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}
