/* Custom CSS for Michelle's Store - Premium Dark Luxury Theme */

:root {
    --plum-dark: #1a0a1a;
    --plum-mid: #2d1f3d;
    --plum-light: #4a305c;
    --amber-dark: #b8860b;
    --amber-mid: #d4af37;
    --amber-light: #f4d03f;
    --neutral-950: #0a0a0a;
    --neutral-900: #141414;
    --neutral-800: #1f1f1f;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background-color: var(--neutral-950);
    color: #e5e7eb;
}

.font-cinzel {
    font-family: 'Cinzel', serif;
}

.font-rajdhani {
    font-family: 'Rajdhani', sans-serif;
}

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

::-webkit-scrollbar-track {
    background: var(--neutral-950);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--plum-light), var(--amber-dark));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, var(--amber-mid), var(--amber-light));
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

/* Service Card Hover Effect */
.service-card {
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

/* Navbar Scrolled State */
.navbar-scrolled {
    background-color: rgba(10, 10, 10, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

/* Button Hover Glow */
button:hover, a:hover {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

/* Input Focus Effect */
input:focus, textarea:focus {
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.3);
}

/* Responsive Typography */
@media (max-width: 768px) {
    .font-cinzel {
        font-size: clamp(1.5rem, 5vw, 2.5rem);
    }
}
