/* Custom styles for Rose Eyebrow Threading */

/* Branding Colors */
:root {
    /* CHANGED: Rose is now black/dark-gray */
    --rose-primary: #111827; /* Was #e11d48 */
    --rose-dark: #374151; /* Was #be123c */
    
    --text-dark: #1f2937; /* Gray-800 */
    --text-light: #f3f4f6; /* Gray-100 */
    --bg-dark: #111827; /* Gray-900 */
    --bg-secondary-dark: #1f2937; /* Gray-800 */
    --bg-card-dark: #374151; /* Gray-700 */
}

/* Override Tailwind for consistency */
.text-rose-500 {
    color: var(--rose-primary);
}

.text-rose-600 {
    color: var(--rose-dark);
}

.bg-rose-500 {
    background-color: var(--rose-primary);
}

.bg-rose-600 {
    background-color: var(--rose-dark);
}

.hover\:text-rose-500:hover {
    color: var(--rose-primary);
}

.hover\:text-rose-600:hover {
    color: var(--rose-dark);
}

.hover\:bg-rose-600:hover {
    background-color: var(--rose-dark);
}

/* Dark Mode Overrides */
.dark .bg-gray-100 {
    background-color: var(--bg-dark);
}

.dark .bg-white {
    background-color: var(--bg-secondary-dark);
}

.dark .bg-gray-700 {
    background-color: var(--bg-card-dark);
}

.dark .text-gray-800 {
    color: var(--text-light);
}

.dark .text-gray-600 {
    color: #9ca3af; /* Gray-400 */
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Arial', sans-serif; /* Replace with your brand font if available */
    font-weight: bold;
}

/* Responsive Gallery Images */
.gallery-img {
    transition: transform 0.3s ease;
}

.gallery-img:hover {
    transform: scale(1.05);
}

/* Dark Mode Adjustments for External Elements */
/* REMOVED: Map inversion rules to keep map colors */

/* Button Enhancements */
button, .btn {
    transition: all 0.3s ease;
}

button:hover, .btn:hover {
    transform: translateY(-1px);
}

/* Form Input Enhancements */
input, select {
    transition: border-color 0.3s ease;
}

input:focus, select:focus {
    outline: none;
    border-color: var(--rose-primary);
    box-shadow: 0 0 0 3px rgba(17, 24, 39, 0.2); /* Shadow color changed to dark gray */
}

/* Responsive Adjustments */
@media (max-width: 640px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .text-4xl {
        font-size: 2rem;
    }

    .text-3xl {
        font-size: 1.75rem;
    }

    .text-2xl {
        font-size: 1.5rem;
    }
}

/* Ensure high contrast in dark mode */
.dark .border-gray-700 {
    border-color: #4b5563; /* Gray-600 */
}

.dark .text-red-500 {
    color: #f87171; /* Red-400 for visibility */
}

.dark .text-green-500 {
    color: #34d399; /* Green-400 for visibility */
}
