/* Custom CSS for Express Brows 33 */

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

/* Custom Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

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

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

::-webkit-scrollbar-track {
    background: #0f0f0f;
}

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

::-webkit-scrollbar-thumb:hover {
    background: #7a0a35;
}

/* Selection Color */
::selection {
    background: #900c3f;
    color: #e4b9c8;
}

/* Mobile Menu Active State */
.mobile-menu-active {
    opacity: 1 !important;
    pointer-events: all !important;
}

/* Input Focus Styles */
input:focus,
select:focus,
textarea:focus {
    outline: none;
}

/* Image Hover Effects */
img {
    image-rendering: -webkit-optimize-contrast;
}

/* Responsive Typography */
@media (max-width: 768px) {
    .font-serif {
        line-height: 1.1;
    }
}

/* Loading State for Buttons */
button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Subtle Glow Effect */
.glow-burgundy {
    box-shadow: 0 0 40px rgba(144, 12, 63, 0.3);
}

/* Parallax-like Effect */
.parallax-bg {
    background-attachment: fixed;
}

@media (max-width: 768px) {
    .parallax-bg {
        background-attachment: scroll;
    }
}
