/* Custom Styles for Ell Beauty */

body {
    font-family: 'Manrope', sans-serif;
    background-color: #FDFBF8; /* A very light cream background */
    color: #4E443C; /* Dark brown for text */
}

.text-brand-accent { color: #B48C5A; } /* Gold/Tan accent */
.bg-brand-dark { background-color: #4E443C; }
.bg-brand-accent { background-color: #B48C5A; }
.border-brand-accent { border-color: #B48C5A; }
.outline-brand-accent { outline-color: #B48C5A; }

.smooth-scroll { 
    scroll-behavior: smooth; 
}

/* --- Cursor Light Effect --- */
#cursor-light {
    position: fixed;
    top: 0;
    left: 0;
    width: 400px; /* Increased size for a softer effect */
    height: 400px;
    background: radial-gradient(circle, rgba(180, 140, 90, 0.25), transparent 70%);
    border-radius: 50%;
    pointer-events: none; /* Allows clicking through it */
    z-index: -1; /* Places it behind everything */
    transition: transform 0.1s ease-out;
    will-change: transform;
}

@media (max-width: 768px) {
    #cursor-light {
        display: none; /* Hide on mobile devices */
    }
}

/* Animation for elements fading in on scroll */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Flatpickr custom styling */
.flatpickr-day.selected {
    background: #B48C5A;
    border-color: #B48C5A;
}

/* --- Styling for Active Service Tab --- */
.service-tab.active {
    background-color: #4E443C;
    color: white;
}
/* --- ADD THIS TO THE BOTTOM OF style.css --- */

/* 1. Floating Animation for Hero Image */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.floating-element {
    animation: float 6s ease-in-out infinite;
}

/* 2. Subtle Pulse for Main Buttons */
@keyframes subtle-pulse {
    0% { box-shadow: 0 0 0 0 rgba(180, 140, 90, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(180, 140, 90, 0); }
    100% { box-shadow: 0 0 0 0 rgba(180, 140, 90, 0); }
}

.pulse-btn {
    animation: subtle-pulse 2s infinite;
}

/* 3. General "Lift" Hover Effect for Cards */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

/* 4. Subtle Background Pattern (Removes the "dead white" feel) */
.bg-subtle-pattern {
    background-image: radial-gradient(#4E443C 0.5px, transparent 0.5px);
    background-size: 24px 24px;
    background-color: #FDFBF8;
    opacity: 1;
}

/* Review Specific Styles */
.review-stars { color: #B48C5A; letter-spacing: 2px; }
.review-card {
    background: white;
    border: 1px solid #eee;
    padding: 2rem;
    border-radius: 12px;
    position: relative;
}
.review-card::before {
    content: "“";
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 4rem;
    color: #FDFBF8;
    font-family: serif;
    z-index: 0;
}
.review-text {
    position: relative;
    z-index: 1;
    font-style: italic;
    color: #555;
}
.review-author {
    margin-top: 1rem;
    font-weight: 700;
    color: #4E443C;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}


/* 1. The "Floating" Effect (For the main image) */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); } /* Moves up slightly */
    100% { transform: translateY(0px); }
}

.floating-element {
    animation: float 6s ease-in-out infinite; /* Slow, 6-second loop */
}

/* 2. The "Breathing" Effect (For main buttons) */
@keyframes subtle-pulse {
    0% { box-shadow: 0 0 0 0 rgba(180, 140, 90, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(180, 140, 90, 0); }
    100% { box-shadow: 0 0 0 0 rgba(180, 140, 90, 0); }
}

.pulse-btn {
    animation: subtle-pulse 2s infinite;
}

/* 3. The "Tactile" Effect (Lifting cards when hovering) */
.hover-lift {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hover-lift:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px -5px rgba(78, 68, 60, 0.15); /* Soft shadow */
}

/* 4. Background Texture (To stop the "dead white" look) */
.bg-zen-texture {
    background-color: #FDFBF8;
    background-image: radial-gradient(#4E443C 0.5px, transparent 0.5px);
    background-size: 30px 30px; /* Subtle dots */
}

/* --- STYLES FOR YOUR NEW REVIEWS --- */

.review-stars {
    color: #B48C5A;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    position: relative;
}

/* The big quote mark decoration */
.review-card::before {
    content: "“";
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 5rem;
    color: rgba(180, 140, 90, 0.1);
    font-family: serif;
    z-index: 0;
    line-height: 1;
}

.review-text {
    position: relative;
    z-index: 1;
    font-style: italic;
    color: #555;
    line-height: 1.7;
}

.review-author {
    margin-top: 1.5rem;
    font-weight: 700;
    color: #4E443C;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}
/* --- FIX: Force Service Tabs to be visible --- */
.service-tab {
    opacity: 1 !important;
    transform: none !important;
}

