/* Custom Styles for Wildflower Beauty Lounge */
:root {
    --color-sky-400: #38bdf8;
    --color-sky-500: #0ea5e9;
    --color-sky-600: #0284c7;
    --color-slate-900: #0f172a;
    --color-slate-800: #1e293b;
    --color-slate-50: #f8fafc;
    --font-heading: 'Syne', sans-serif;
    --font-body: 'Inter', sans-serif;
}

body {
    font-family: var(--font-body);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
}

/* Button Primary */
.btn-primary {
    background-color: var(--color-slate-900);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    background-color: var(--color-sky-600);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Button Secondary */
.btn-secondary {
    background-color: transparent;
    color: var(--color-slate-900);
    border: 2px solid #e2e8f0;
    padding: 0.65rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    border-color: var(--color-slate-900);
    background-color: #f1f5f9;
}

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

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: rgba(56, 189, 248, 0.1);
    transition: height 0.3s ease;
    z-index: 0;
}

.service-card:hover::after {
    height: 100%;
}

.service-card > * {
    position: relative;
    z-index: 1;
}

/* Mobile Menu Transitions */
.mobile-link {
    transition: color 0.2s ease;
}

.mobile-link:hover {
    color: var(--color-sky-600);
}

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

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Animation Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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