
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&display=swap');

/* Enhanced fix for white text issues while preserving original colors */

/* Base text color fix */
body {
    color: #1a1a1a !important;
}

/* Navigation text */
.nav-link, nav a {
    color: #1a1a1a !important;
}

.nav-link:hover, nav a:hover {
    color: #E91E63 !important;
}

/* Mobile menu text */
#mobile-menu a {
    color: #374151 !important;
}

#mobile-menu a:hover {
    color: #e11d48 !important;
}

/* Preserve original icon colors */
.text-amber-400, .text-amber-400 i, .text-amber-400 .fas {
    color: #fbbf24 !important;
}

.text-rose-300, .text-rose-300 i, .text-rose-300 .fas {
    color: #fda4af !important;
}

.text-rose-400, .text-rose-400 i, .text-rose-400 .fas {
    color: #fb7185 !important;
}

/* Service card icon colors */
.service-card .text-amber-400 {
    color: #fbbf24 !important;
}

.service-card .text-amber-400:hover {
    color: #f59e0b !important;
}

/* Hover effects for service cards */
.service-card:hover h3 {
    color: #fb7185 !important;
}

.service-card:hover .text-rose-300 {
    color: #fb7185 !important;
}

/* Logo gradient colors */
.logo {
    color: #E91E63 !important;
    background: linear-gradient(135deg, #E91E63, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Fallback for browsers that don't support gradient text */
@supports not (-webkit-background-clip: text) {
    .logo {
        color: #E91E63 !important;
    }
}

/* Button colors */
.btn-primary, .btn-primary * {
    color: white !important;
}

.btn-secondary, .btn-secondary * {
    color: #1a1a1a !important;
}

/* Preserve gradient text in hero section */
.bg-gradient-to-r.from-rose-500.via-rose-600.to-amber-500 {
    background: linear-gradient(to right, #ef4444, #dc2626, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Fallback for gradient text */
@supports not (-webkit-background-clip: text) {
    .bg-gradient-to-r.from-rose-500.via-rose-600.to-amber-500 {
        color: #dc2626 !important;
    }
}

/* Preserve white text where intended */
.text-white, .text-white * {
    color: white !important;
}

/* Preserve specific text colors */
.text-black-600 {
    color: #4b5563 !important;
}

.text-black-700 {
    color: #374151 !important;
}

.text-black-800 {
    color: #1f2937 !important;
}

/* Floating decorative elements colors */
.hero-gradient .absolute .fas {
    color: white !important;
}

/* Ensure dropdown menu colors */
.group .absolute a {
    color: #374151 !important;
}

.group .absolute a:hover {
    color: #f43f5e !important;
}

/* Form text colors */
form label {
    color: #374151 !important;
}

form input, form textarea, form select {
    color: #1f2937 !important;
}

/* Footer text colors */
footer h3 {
    color: #1f2937 !important;
}

footer p, footer a {
    color: #4b5563 !important;
}

footer a:hover {
    color: #E91E63 !important;
}

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

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes float-delayed {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(3deg);
    }
}

@keyframes pulse-slow {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(233, 30, 99, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(233, 30, 99, 0.6);
    }
}

/* Animation Utility Classes */
.animate-fadeInUp {
    animation: fadeInUp 0.8s ease-out;
}

.animate-shimmer {
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-float-delayed {
    animation: float-delayed 8s ease-in-out infinite;
    animation-delay: 2s;
}

.animate-pulse-slow {
    animation: pulse-slow 4s ease-in-out infinite;
}

.animate-glow {
    animation: glow 2s ease-in-out infinite;
}

/* Animation Delay Classes */
.animation-delay-200 {
    animation-delay: 0.2s;
}

.animation-delay-400 {
    animation-delay: 0.4s;
}

.animation-delay-600 {
    animation-delay: 0.6s;
}

.animation-delay-800 {
    animation-delay: 0.8s;
}

.animation-delay-1000 {
    animation-delay: 1s;
}

/* Sophisticated Color Palette Variables */
:root {
    --rose-primary: #E91E63;
    --rose-light: #F8BBD9;
    --rose-dark: #AD1457;
    --gold-primary: #FFD700;
    --gold-light: #FFF8DC;
    --gold-dark: #B8860B;
    --black-primary: #1A1A1A;
    --black-light: #2D2D2D;
    --white-primary: #FFFFFF;
    --white-off: #FAFAFA;
    --gray-elegant: #F5F5F5;
}

/* Base Styles - Sophisticated & Clean */
body {
    font-family: 'Coterie', 'Montserrat', sans-serif;
    scroll-behavior: smooth;
    background-color: var(--white-primary);
    color: var(--black-primary);
    line-height: 1.6;
    letter-spacing: 0.01em;
}

/* Logo Styling */
.logo {
    color: #fda4af; /* text-rose-300 equivalent */
}

h1, h2, h3, h4 {
    font-family: 'Coterie', 'Playfair Display', serif;
    font-weight: 600;
    color: var(--black-primary);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

/* Elegant Typography Hierarchy */
h1 {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
}

h3 {
    font-size: 1.75rem;
    font-weight: 600;
}

p {
    color: var(--black-light);
    margin-bottom: 1.25rem;
}

/* Sophisticated Gradient Sections */
.hero-gradient {
    background: linear-gradient(135deg, 
        rgba(233, 30, 99, 0.08) 0%, 
        rgba(255, 215, 0, 0.08) 50%,
        rgba(26, 26, 26, 0.02) 100%);
    backdrop-filter: blur(1px);
}

/* Elegant Button Styles */
.btn-primary {
    background: linear-gradient(135deg, var(--rose-primary) 0%, var(--rose-dark) 100%);
    color: var(--white-primary);
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    letter-spacing: 0.025em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
    box-shadow: 0 4px 14px rgba(233, 30, 99, 0.25);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--rose-dark) 0%, var(--rose-primary) 100%);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.4);
    transform: translateY(-3px);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    color: var(--black-primary);
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    letter-spacing: 0.025em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
    box-shadow: 0 4px 14px rgba(255, 215, 0, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-primary) 100%);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
    transform: translateY(-3px);
}

/* Minimalist Button Alternative */
.btn-minimal {
    background: transparent;
    color: var(--black-primary);
    border: 2px solid var(--rose-primary);
    padding: 0.75rem 1.75rem;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-minimal:hover {
    background: var(--rose-primary);
    color: var(--white-primary);
    transform: translateY(-2px);
}

/* Sophisticated Navigation Styles */
.nav-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(233, 30, 99, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.nav-link {
    position: relative;
    color: var(--black-primary);
    font-weight: 500;
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.01em;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0.25rem;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--rose-primary), var(--gold-primary));
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 1px;
}

.nav-link:hover::after {
    width: 80%;
}

.nav-link:hover {
    color: var(--rose-primary);
    background: rgba(233, 30, 99, 0.05);
    transform: translateY(-1px);
}

/* Sophisticated Card Styles */
.service-card {
    background: var(--white-primary);
    border: 1px solid rgba(233, 30, 99, 0.08);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--rose-primary), var(--gold-primary));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(233, 30, 99, 0.15);
    border-color: rgba(233, 30, 99, 0.2);
}

.service-card:hover .fas {
    transform: scale(1.15) rotate(5deg);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Elegant Product Card Styles */
.bg-white.rounded-lg.shadow-md {
    background: var(--white-primary);
    border: 1px solid var(--gray-elegant);
    border-radius: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
}

.bg-white.rounded-lg.shadow-md:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    border-color: rgba(233, 30, 99, 0.15);
}

/* Minimal Card Layout */
.card-minimal {
    background: var(--white-primary);
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 1px solid var(--gray-elegant);
    transition: all 0.3s ease;
}

.card-minimal:hover {
    border-color: var(--rose-light);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.1);
}

/* Icon Hover Effects */
.fas, .fab {
    transition: all 0.3s ease;
}

.text-amber-400 .fas:hover {
    color: #D4AF37;
    transform: scale(1.1);
}

/* Link Hover Effects */
a {
    transition: all 0.3s ease;
}

a:hover {
    text-decoration: none;
}

/* Sophisticated Form Styling */
input, select, textarea {
    background: var(--white-primary);
    border: 2px solid var(--gray-elegant);
    border-radius: 0.5rem;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    color: var(--black-primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
}

input:hover, select:hover, textarea:hover {
    border-color: var(--rose-light);
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.08);
}

input:focus, select:focus, textarea:focus {
    border-color: var(--rose-primary);
    box-shadow: 0 0 0 4px rgba(233, 30, 99, 0.15);
    outline: none;
    background: var(--white-primary);
}

/* Form Labels */
label {
    color: var(--black-primary);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.025em;
    margin-bottom: 0.5rem;
    display: block;
}

/* Sophisticated Social Media Styling */
.w-10.h-10.rounded-full {
    background: var(--white-primary);
    border: 2px solid var(--gray-elegant);
    color: var(--black-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.w-10.h-10.rounded-full::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--rose-primary), var(--gold-primary));
    transition: left 0.4s ease;
    z-index: -1;
}

.w-10.h-10.rounded-full:hover::before {
    left: 0;
}

.w-10.h-10.rounded-full:hover {
    color: var(--white-primary);
    border-color: transparent;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.3);
}

/* Sophisticated Logo Styling */
.logo {
    font-family: 'Coterie', 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.75rem;
    color: #E91E63; /* Fallback color */
    background: linear-gradient(135deg, var(--rose-primary), var(--gold-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: -0.01em;
}

.logo:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.logo span {
    color: #FFD700; /* Fallback color */
    background: linear-gradient(135deg, var(--gold-primary), var(--rose-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Sophisticated Spacing System */
.section-padding {
    padding: 5rem 0;
}

.section-padding-sm {
    padding: 3rem 0;
}

.section-padding-lg {
    padding: 7rem 0;
}

/* Clean Container Styles */
.container-elegant {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Elegant Dividers */
.divider-elegant {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--rose-light), transparent);
    margin: 3rem 0;
    border: none;
}

/* Sophisticated Text Styles */
.text-elegant {
    color: var(--black-light);
    line-height: 1.7;
    font-size: 1.125rem;
}

.text-accent {
    color: var(--rose-primary);
    font-weight: 600;
}

.text-gold {
    color: var(--gold-primary);
    font-weight: 600;
}

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

/* General Hover Improvements */
.hover\:text-rose-300:hover {
    transform: translateX(2px);
}

.hover\:bg-rose-50:hover {
    background-color: rgba(230, 169, 169, 0.1) !important;
}

/* Mobile Menu Enhancements */
#mobile-menu {
    transition: all 0.3s ease;
}

#mobile-menu a:hover {
    transform: translateX(5px);
    padding-left: 1rem;
}

/* Contact Section Enhancements */
.bg-gradient-to-br {
    transition: all 0.3s ease;
}

.bg-gradient-to-br:hover {
    background: linear-gradient(135deg, rgba(230,169,169,0.3) 0%, rgba(212,175,55,0.3) 100%);
}

/* Additional hover effects and improvements */
.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Icon hover effects */
i:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Enhanced card animations */
.group:hover .group-hover\:scale-105 {
    transform: scale(1.05);
}

.group:hover .group-hover\:translate-x-1 {
    transform: translateX(0.25rem);
}

.group:hover .group-hover\:translate-y-1 {
    transform: translateY(0.25rem);
}

/* Enhanced gradient hover effects */
.bg-gradient-to-r:hover {
    background-size: 110% 110%;
    transition: background-size 0.3s ease;
}

/* Contact section hover enhancements */
.contact-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    transform: translateX(5px);
}

/* Mobile menu enhancements */
@media (max-width: 768px) {
    .mobile-menu {
        backdrop-filter: blur(10px);
        background-color: rgba(255, 255, 255, 0.95);
    }
    
    .mobile-menu a:hover {
        background-color: rgba(251, 113, 133, 0.1);
        transform: translateX(5px);
    }
}

/* Elegant Animation Utilities */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.slide-up {
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Sophisticated Hover States */
.hover-lift {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Clean Background Patterns */
.bg-pattern-subtle {
    background-image: radial-gradient(circle at 1px 1px, rgba(233, 30, 99, 0.03) 1px, transparent 0);
    background-size: 20px 20px;
}

/* Performance Optimizations */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Smooth Transitions for Interactive Elements */
button, a, .service-card, .product-card, .card-minimal {
    will-change: transform;
}

/* Accessible Focus States */
button:focus, a:focus, input:focus, select:focus, textarea:focus {
    outline: 2px solid var(--rose-primary);
    outline-offset: 2px;
    border-radius: 0.25rem;
}

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

::-webkit-scrollbar-track {
    background: var(--gray-elegant);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--rose-primary), var(--gold-primary));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--rose-dark), var(--gold-dark));
}

/* Enhanced Mobile Menu Styles - Fixed for Tailwind compatibility */
#mobile-menu {
    transition: all 0.3s ease-in-out;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
}

#mobile-menu:not(.hidden) {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
    display: block !important; /* Override Tailwind's hidden class */
}

#mobile-menu.hidden {
    max-height: 0;
    opacity: 0;
    transform: translateY(-10px);
    /* Don't set display: none here to allow transitions */
}

/* Ensure mobile menu button is clickable */
#mobile-menu-button {
    cursor: pointer;
    z-index: 1000;
    position: relative;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

#mobile-menu-button:hover {
    background-color: rgba(251, 113, 133, 0.1);
}

#mobile-menu-button:active {
    transform: scale(0.95);
}

/* Mobile menu links styling */
#mobile-menu a {
    display: block;
    padding: 12px 16px;
    color: #374151;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    margin: 2px 0;
    transition: all 0.2s ease;
}

#mobile-menu a:hover {
    background-color: rgba(251, 113, 133, 0.1);
    color: #e11d48;
}

/* Mobile services submenu - Fixed for Tailwind */
#mobile-services-menu {
    transition: all 0.3s ease;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-5px);
}

#mobile-services-menu:not(.hidden) {
    max-height: 200px;
    padding-top: 8px;
    opacity: 1;
    transform: translateY(0);
    display: block !important; /* Override Tailwind's hidden class */
}

#mobile-services-menu.hidden {
    max-height: 0;
    opacity: 0;
    transform: translateY(-5px);
    padding-top: 0;
}

#mobile-services-toggle {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

#mobile-services-toggle:hover {
    background-color: rgba(251, 113, 133, 0.1);
}

/* Ensure mobile menu is above other content */
.nav-container {
    position: relative;
    z-index: 1000;
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
    /* Typography Adjustments */
    h1 {
        font-size: 2.25rem;
        line-height: 1.2;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    h2 {
        font-size: 1.875rem;
        line-height: 1.3;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    h3 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
        text-align: center;
    }
    
    p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    /* Section Spacing */
    .section-padding {
        padding: 2.5rem 0;
    }
    
    .container-elegant {
        padding: 0 1rem;
    }
    
    /* Hero Section Mobile Optimization */
    .hero-gradient {
        padding-top: 6rem;
        padding-bottom: 3rem;
        text-align: center;
    }
    
    /* Hero Image Container Fix */
    .hero-gradient .flex {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .hero-gradient .w-full.md\:w-1\/2 {
        width: 100% !important;
        margin-bottom: 2rem;
    }
    
    /* Button Adjustments */
    .btn-primary, .btn-secondary {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
        width: auto;
        display: inline-block;
        margin: 0 auto;
    }
    
    /* Card Grid Responsiveness */
    .grid {
        gap: 1.5rem;
    }
    
    /* Image Container Mobile Optimization */
    .relative.w-64, .relative.w-80, .relative.w-96 {
        width: 280px !important;
        height: 280px !important;
        margin: 0 auto !important;
    }
    
    /* Hero Image Specific Fix */
    .hero-gradient .relative {
        margin: 0 auto !important;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    /* Image Display Fix - Global */
    img {
        max-width: 100% !important;
        height: auto !important;
        object-fit: cover !important;
        display: block !important;
        visibility: visible !important;
    }
    
    /* Specific image fixes for all hero sections */
    img[src*="images/1.jpg"],
    img[src*="images/2.jpg"],
    img[src*="images/3.jpg"],
    img[src*="images/4.jpg"] {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }
    
    /* Hero Image Specific Fixes */
    .hero-gradient img {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 100% !important;
        height: 100% !important;
    }
    
    /* Ensure all image containers are visible */
    .hero-gradient .relative,
    .hero-gradient .relative > div {
        display: block !important;
        visibility: visible !important;
    }
    
    /* Specific targeting for the main hero image container */
    .hero-gradient .w-64,
    .hero-gradient .w-80,
    .hero-gradient .w-96,
    .hero-gradient .sm\:w-80,
    .hero-gradient .sm\:h-80,
    .hero-gradient .md\:w-96,
    .hero-gradient .md\:h-96 {
        display: block !important;
        visibility: visible !important;
    }
    
    /* Main image with inset-4 class */
    .hero-gradient .inset-4 {
        display: block !important;
        visibility: visible !important;
        position: absolute !important;
        top: 1rem !important;
        right: 1rem !important;
        bottom: 1rem !important;
        left: 1rem !important;
    }
    
    /* Ensure the image inside inset-4 is visible */
    .hero-gradient .inset-4 img {
        display: block !important;
        visibility: visible !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }
    
    /* Service Cards Mobile */
    .service-card {
        margin-bottom: 1.5rem;
        padding: 1.5rem;
        text-align: center;
    }
    
    /* Navigation Mobile Enhancement */
    .nav-container {
        padding: 0.5rem 0;
    }
    
    /* Mobile Menu Improvements */
    #mobile-menu {
        backdrop-filter: blur(10px);
        background-color: rgba(255, 255, 255, 0.98);
        border-top: 1px solid rgba(233, 30, 99, 0.1);
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        border-top: 1px solid rgba(229, 231, 235, 0.5);
    }
    
    #mobile-menu a {
        color: #374151 !important; /* Ensure dark text on white background */
        padding: 0.875rem 1rem;
        font-size: 1rem;
        transition: all 0.3s ease;
    }
    
    #mobile-menu a:hover {
        background-color: rgba(251, 113, 133, 0.1);
        color: #1f2937 !important; /* Darker text on hover */
        transform: translateX(5px);
        border-radius: 0.5rem;
    }
    
    /* Fix mobile services submenu */
    #mobile-services-menu a {
        color: #4b5563 !important; /* Ensure submenu items are visible */
    }
    
    #mobile-services-menu a:hover {
        color: #1f2937 !important;
        background-color: rgba(251, 113, 133, 0.1);
    }
    
    /* Ensure the mobile menu button is always visible and clickable */
    #mobile-menu-button {
        display: flex !important;
        align-items: center;
        justify-content: center;
        min-width: 44px;
        min-height: 44px;
    }
    
    /* Ensure all navigation text is visible */
    .nav-container a {
        color: #374151 !important;
    }
    
    .nav-container a:hover {
        color: #f43f5e !important;
    }
    
    /* Fix any other potential white text issues */
    .text-white {
        color: white !important;
    }
    
    /* Ensure form labels and text are visible */
    form label {
        color: #374151 !important;
    }
    
    form input, form textarea, form select {
        color: #1f2937 !important;
        background-color: white !important;
    }
    
    /* Fix dropdown menu text */
    .group .absolute a {
        color: #374151 !important;
    }
    
    .group .absolute a:hover {
        color: #f43f5e !important;
    }
    
    /* Floating Elements Mobile Adjustment - Only hide decorative elements */
    .hero-gradient .absolute.top-20,
    .hero-gradient .absolute.top-40,
    .hero-gradient .absolute.bottom-32,
    .hero-gradient .absolute.top-1\/3,
    .hero-gradient .absolute.top-1\/4,
    .hero-gradient .absolute.top-3\/4,
    .hero-gradient .absolute.top-1\/2,
    .hero-gradient .absolute.bottom-1\/3 {
        display: none;
    }
    
    /* Keep main image container visible */
    .hero-gradient .relative .absolute {
        display: block !important;
        opacity: 0.8;
    }
    
    /* Ensure hero image container is visible */
    .hero-gradient .relative {
        display: block !important;
        visibility: visible !important;
    }
    
    /* Make sure the main image is visible */
    .hero-gradient .relative .absolute.inset-4 {
        display: block !important;
        visibility: visible !important;
    }
    
    /* Form Mobile Optimization */
    input, textarea, select {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 0.875rem;
    }
    
    /* Footer Mobile */
    .footer-content {
        text-align: center;
        padding: 2rem 1rem;
    }
    
    /* Pricing Cards Mobile */
    .pricing-card {
        margin-bottom: 2rem;
        max-width: 100%;
    }
    
    /* Storefront Section Mobile */
    #store {
        text-align: center;
    }
    
    #store h2 {
        text-align: center;
    }
    
    #store p {
        text-align: center;
    }
    
    /* Product Cards Mobile - Better Alignment */
    .grid.grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        justify-items: center;
        align-items: center;
        margin: 0 auto;
        max-width: 100%;
    }
    
    /* Individual Product Card Alignment */
    #store .grid > a {
        width: 100%;
        max-width: 180px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    /* Product Card Content Alignment */
    #store .grid > a > div {
        text-align: center;
        width: 100%;
    }
    
    /* Storefront Button Alignment */
    #store .text-center {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 2rem;
    }
    
    /* Center all section titles */
    section h2 {
        text-align: center !important;
    }
    
    section h3 {
        text-align: center !important;
    }
    
    /* Ensure Services and Storefront titles have same font size on mobile */
    #services h2,
    #store h2 {
        font-size: 2rem !important;
        text-align: center !important;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
        text-align: center;
    }
    
    h2 {
        font-size: 1.75rem;
        text-align: center;
    }
    
    /* Ensure Services and Storefront titles have same font size */
    #services h2,
    #store h2 {
        font-size: 1.75rem !important;
        text-align: center;
    }
    
    h3 {
        text-align: center;
    }
    
    p {
        text-align: center;
    }
    
    .hero-gradient {
        padding-top: 5rem;
        padding-bottom: 2.5rem;
        text-align: center;
    }
    
    .relative.w-64, .relative.w-80, .relative.w-96 {
        width: 240px !important;
        height: 240px !important;
        margin: 0 auto !important;
    }
    
    .btn-primary, .btn-secondary {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
        margin: 0 auto;
        display: block;
        width: fit-content;
    }
    
    .section-padding {
        padding: 2rem 0;
    }
    
    .container-elegant {
        padding: 0 0.75rem;
    }
    
    /* Product Cards for Very Small Screens */
    .grid.grid-cols-2 {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 300px;
        margin: 0 auto;
        justify-items: center;
        align-items: center;
    }
    
    /* Individual Product Cards on Small Screens */
    #store .grid > a {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        text-align: center;
    }
    
    /* Storefront Section Alignment */
    #store {
        text-align: center;
        padding: 0 1rem;
    }
    
    #store .text-center {
        margin-top: 2rem;
        display: flex;
        justify-content: center;
    }
    
    /* Service Cards */
    .service-card {
        text-align: center;
        padding: 1.25rem;
    }
    
    /* Center all content */
    section {
        text-align: center;
    }
}

/* Large Mobile/Small Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .relative.w-64, .relative.w-80, .relative.w-96 {
        width: 320px !important;
        height: 320px !important;
        margin: 0 auto !important;
    }
    
    .grid-cols-1.md\:grid-cols-2.lg\:grid-cols-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-padding {
        padding: 4rem 0;
    }
    
    /* Ensure images display properly */
    img {
        max-width: 100%;
        height: auto;
        object-fit: cover;
        display: block;
    }
    
    /* Center section titles */
    section h2, section h3 {
        text-align: center;
    }
    
    /* Ensure Services and Storefront titles have same font size on tablets */
    #services h2,
    #store h2 {
        font-size: 2.5rem !important;
        text-align: center !important;
    }
}

/* Add margin below the Amazon Storefront button */
#store .text-center a[href*="amazon.com"] {
    margin-bottom: 2rem !important;
    display: inline-block;
}

/* Additional margin for mobile devices */
@media (max-width: 768px) {
    #store .text-center a[href*="amazon.com"] {
        margin-bottom: 1.5rem !important;
    }
    
    /* Center footer content on mobile */
    footer {
        text-align: center;
    }
    
    /* Center footer grid items */
    footer .grid {
        text-align: center;
        justify-items: center;
    }
    
    /* Center brand section */
    footer .lg\:col-span-2 {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    /* Center logo */
    footer .logo {
        text-align: center;
        margin: 0 auto;
    }
    
    /* Center brand description */
    footer .lg\:col-span-2 p {
        text-align: center;
        margin: 0 auto;
    }
    
    /* Center social media icons */
    footer .flex.space-x-4 {
        justify-content: center;
        margin: 0 auto;
    }
    
    /* Center quick links section */
    footer h3 {
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    /* Center quick links list */
    footer ul {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    /* Center individual quick links */
    footer ul li {
        text-align: center;
        justify-content: center;
        display: flex;
        align-items: center;
    }
    
    /* Center contact information */
    footer .space-y-4 {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    /* Center contact items */
    footer .space-y-4 li {
        text-align: center;
        justify-content: center;
        max-width: 280px;
        margin: 0 auto;
    }
    
    /* Center contact icons and text */
    footer .flex.items-start {
        justify-content: center;
        text-align: center;
    }
    
    /* Center bottom section */
    footer .border-t {
        text-align: center;
    }
    
    /* Center copyright and collaboration button */
    footer .flex.flex-col.md\:flex-row {
        text-align: center;
        align-items: center;
        justify-content: center;
    }
    
    /* Center copyright text */
    footer .text-center.md\:text-left {
        text-align: center !important;
    }
    
    /* Center collaboration button */
    footer .text-center a {
        margin: 0 auto;
        display: inline-flex;
    }
}

/* Enhanced footer contact centering */
@media (max-width: 768px) {
    /* Center contact information more precisely */
    footer .space-y-4 {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    /* Center each contact item */
    footer .space-y-4 li {
        text-align: center;
        justify-content: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 100%;
        margin: 0 auto 1rem auto;
    }
    
    /* Center contact icons and content */
    footer .flex.items-start {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        align-items: center;
    }
    
    /* Center contact icons */
    footer .flex.items-start i {
        margin: 0 0 0.5rem 0;
        text-align: center;
    }
    
    /* Center contact text content */
    footer .flex.items-start div {
        text-align: center;
        width: 100%;
    }
    
    /* Center email and phone links */
    footer .flex.items-start div a {
        text-align: center;
        display: block;
        word-break: break-word;
    }
    
    /* Center contact labels */
    footer .flex.items-start div p {
        text-align: center;
        margin-bottom: 0.25rem;
    }
}

/* Additional centering for smaller mobile devices */
@media (max-width: 480px) {
    footer .space-y-4 li {
        margin-bottom: 1.5rem;
    }
    
    footer .flex.items-start {
        gap: 0.5rem;
    }
    
    /* Ensure email doesn't overflow */
    footer .break-all {
        word-break: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
}

/* Add these comprehensive responsive improvements to your existing CSS */

/* Base Responsive Improvements */
* {
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

/* Container Responsive Improvements */
.container, .container-elegant {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Typography Responsive Scaling */
@media (max-width: 1200px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.25rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .container-elegant {
        padding: 0 1.5rem;
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.375rem;
    }
    
    /* Navigation Improvements */
    .nav-container {
        padding: 0.75rem 0;
    }
    
    .nav-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.95rem;
    }
    
    /* Service Cards Tablet */
    .service-card {
        padding: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    /* Grid Adjustments */
    .grid-cols-1.md\:grid-cols-2.lg\:grid-cols-3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .grid-cols-1.md\:grid-cols-2.lg\:grid-cols-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

/* Enhanced Mobile Responsive Styles */
@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    body {
        line-height: 1.5;
    }
    
    /* Typography Mobile */
    h1 {
        font-size: 2.25rem;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    h2 {
        font-size: 1.875rem;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    h3 {
        font-size: 1.25rem;
        text-align: center;
        margin-bottom: 0.75rem;
    }
    
    p {
        font-size: 1rem;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    /* Container Mobile */
    .container-elegant {
        padding: 0 1rem;
    }
    
    /* Section Spacing Mobile */
    .section-padding {
        padding: 3rem 0;
    }
    
    /* Grid Mobile - Single Column */
    .grid-cols-1.md\:grid-cols-2.lg\:grid-cols-3,
    .grid-cols-1.md\:grid-cols-2.lg\:grid-cols-4 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Button Mobile */
    .btn-primary, .btn-secondary, .btn-minimal {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        display: block;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        text-align: center;
    }
    
    /* Navigation Mobile Enhancement */
    .nav-container {
        padding: 0.5rem 0;
        position: sticky;
        top: 0;
        z-index: 1000;
    }
    
    /* Mobile Menu */
    #mobile-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        border-top: 1px solid rgba(233, 30, 99, 0.1);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }
    
    #mobile-menu a {
        display: block;
        padding: 1rem 1.5rem;
        color: #374151 !important;
        text-decoration: none;
        border-bottom: 1px solid rgba(233, 30, 99, 0.05);
        transition: all 0.3s ease;
    }
    
    #mobile-menu a:hover {
        background: rgba(233, 30, 99, 0.05);
        color: #1f2937 !important;
        transform: translateX(10px);
    }
    
    /* Hero Section Mobile */
    .hero-gradient {
        padding: 4rem 0 3rem;
        text-align: center;
        min-height: auto;
    }
    
    /* Hero Image Mobile */
    .relative.w-64, .relative.w-80, .relative.w-96 {
        width: 280px !important;
        height: 280px !important;
        margin: 2rem auto !important;
    }
    
    /* Service Cards Mobile */
    .service-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
        text-align: center;
        border-radius: 1rem;
    }
    
    .service-card h3 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .service-card p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    /* Product Cards Mobile */
    .bg-white.rounded-lg.shadow-md {
        margin-bottom: 1.5rem;
        padding: 1rem;
        text-align: center;
    }
    
    /* Form Elements Mobile */
    input, textarea, select {
        width: 100%;
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 1rem;
        margin-bottom: 1rem;
        border-radius: 0.5rem;
    }
    
    /* Footer Mobile */
    footer {
        text-align: center;
        padding: 2rem 1rem;
    }
    
    footer .grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    footer h3 {
        margin-bottom: 1rem;
        font-size: 1.125rem;
    }
    
    footer p, footer a {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }
    
    /* Social Media Icons Mobile */
    .flex.space-x-4 {
        justify-content: center;
        gap: 1rem;
        margin: 1rem 0;
    }
    
    /* Image Responsive */
    img {
        max-width: 100%;
        height: auto;
        display: block;
    }
    
    /* Text Alignment Mobile */
    .text-left {
        text-align: center !important;
    }
    
    /* Spacing Adjustments */
    .space-y-4 > * + * {
        margin-top: 1rem;
    }
    
    .space-y-6 > * + * {
        margin-top: 1.5rem;
    }
    
    .space-y-8 > * + * {
        margin-top: 2rem;
    }
}

/* Small Mobile Devices Enhanced */
@media (max-width: 480px) {
    html {
        font-size: 13px;
    }
    
    /* Typography Extra Small */
    h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    h2 {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    h3 {
        font-size: 1.125rem;
        line-height: 1.4;
    }
    
    p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    /* Container Extra Small */
    .container-elegant {
        padding: 0 0.75rem;
    }
    
    /* Section Spacing Extra Small */
    .section-padding {
        padding: 2rem 0;
    }
    
    /* Hero Image Extra Small */
    .relative.w-64, .relative.w-80, .relative.w-96 {
        width: 240px !important;
        height: 240px !important;
    }
    
    /* Button Extra Small */
    .btn-primary, .btn-secondary, .btn-minimal {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
        max-width: 240px;
    }
    
    /* Service Cards Extra Small */
    .service-card {
        padding: 1.25rem;
        margin-bottom: 1.25rem;
    }
    
    /* Navigation Extra Small */
    #mobile-menu a {
        color: #374151 !important;
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }
    
    /* Ensure all footer text is centered */
    footer * {
        text-align: center !important;
    }
    
    /* Center all flex containers */
    footer .flex {
        justify-content: center !important;
        align-items: center !important;
    }
    
    /* Center grid items */
    footer .grid {
        place-items: center;
        text-align: center;
    }
    
    /* Reduce padding for small screens */
    footer {
        padding: 2rem 1rem;
    }
    
    /* Center email with better wrapping */
    footer a[href^="mailto:"] {
        word-break: break-all;
        text-align: center;
        display: block;
        margin: 0 auto;
    }
}

/* Large Screens Optimization */
@media (min-width: 1200px) {
    .container-elegant {
        max-width: 1200px;
        padding: 0 2rem;
    }
    
    .section-padding {
        padding: 6rem 0;
    }
    
    /* Grid Large Screens */
    .grid-cols-1.md\:grid-cols-2.lg\:grid-cols-3 {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .grid-cols-1.md\:grid-cols-2.lg\:grid-cols-4 {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

/* Extra Large Screens */
@media (min-width: 1400px) {
    .container-elegant {
        max-width: 1400px;
        padding: 0 3rem;
    }
    
    h1 {
        font-size: 4rem;
    }
    
    h2 {
        font-size: 3rem;
    }
    
    h3 {
        font-size: 2rem;
    }
}

/* Print Styles */
@media print {
    * {
        background: transparent !important;
        color: black !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }
    
    .nav-container,
    #mobile-menu,
    .btn-primary,
    .btn-secondary,
    .btn-minimal {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    h1, h2, h3 {
        page-break-after: avoid;
    }
    
    img {
        max-width: 100% !important;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Text Visibility Fix - Comprehensive Solution */
body {
    color: var(--black-primary) !important;
}

/* Ensure all text elements are visible */
h1, h2, h3, h4, h5, h6, p, span, div, a, li, td, th, label {
    color: var(--black-primary) !important;
}

/* Preserve specific design colors */
.text-white, .text-white * {
    color: white !important;
}

/* Logo gradient text with fallback */
.logo {
    color: #E91E63 !important; /* Fallback */
    background: linear-gradient(135deg, var(--rose-primary), var(--gold-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Logo span with fallback */
.logo span {
    color: #FFD700 !important; /* Fallback */
    background: linear-gradient(135deg, var(--gold-primary), var(--rose-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Button text colors */
.btn-primary, .btn-primary * {
    color: white !important;
}

.btn-secondary, .btn-secondary * {
    color: var(--black-primary) !important;
}

.btn-minimal {
    color: var(--black-primary) !important;
}

.btn-minimal:hover {
    color: white !important;
}

/* Navigation text */
.nav-link {
    color: var(--black-primary) !important;
}

.nav-link:hover {
    color: var(--rose-primary) !important;
}

/* Mobile menu text */
#mobile-menu a {
    color: #374151 !important;
}

#mobile-menu a:hover {
    color: #1f2937 !important;
}

/* Service card text */
.service-card h3, .service-card p {
    color: var(--black-primary) !important;
}

/* Form elements */
input, textarea, select {
    color: var(--black-primary) !important;
    background-color: white !important;
}

label {
    color: var(--black-primary) !important;
}

/* Footer text */
footer, footer * {
    color: var(--black-primary) !important;
}

/* Preserve icon colors */
.text-amber-400, .text-rose-300, .text-rose-400, .text-rose-500 {
    color: inherit !important;
}

/* Icon hover effects preserved */
.fas.text-amber-400 {
    color: #fbbf24 !important;
}

.fas.text-amber-400:hover {
    color: #D4AF37 !important;
}

/* Social media icon colors */
.w-10.h-10.rounded-full {
    color: var(--black-light) !important;
}

.w-10.h-10.rounded-full:hover {
    color: white !important;
}

/* Dropdown menu text */
.group .absolute a {
    color: #374151 !important;
}

.group .absolute a:hover {
    color: #f43f5e !important;
}

/* Ensure hero text is visible */
.hero-gradient h1, .hero-gradient p {
    color: var(--black-primary) !important;
}

/* Contact section text */
.contact-item {
    color: var(--black-primary) !important;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --rose-primary: #D81B60;
        --gold-primary: #F57F17;
        --black-primary: #000000;
        --white-primary: #FFFFFF;
    }
    
    .btn-primary, .btn-secondary {
        border: 2px solid currentColor;
    }
    
    /* Ensure text visibility in high contrast */
    body, body * {
        color: var(--black-primary) !important;
    }
    
    .text-white, .text-white * {
        color: white !important;
    }
}
