:root {
    --bg-color: #fff0f5;
    /* Lavender Blush - Light Pink */
    --text-color: #831843;
    /* Pink-900 */
    --primary-color: #ec4899;
    /* Pink-500 */
    --secondary-color: #22c55e;
    /* Green-500 */
    --accent-color: #f472b6;
    /* Pink-400 */
    --dark-surface: #ffffff;
    --light-surface: #fff1f2;
    /* Very light pink */
    --font-main: 'Outfit', sans-serif;
    --font-display: 'Playfair Display', serif;
    --transition: all 0.3s ease;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    background-image:
        radial-gradient(circle at 10% 20%, rgba(236, 72, 153, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(34, 197, 94, 0.05) 0%, transparent 40%);
}

/* Floral decorative elements */
.floral-bg {
    position: relative;
}

.floral-bg::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('../images/spring-bg-v2.png');
    /* Vibrant promo-inspired background */
    opacity: 0.5;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: 0;
    pointer-events: none;
}

.text-gradient-spring {
    background: linear-gradient(to right, #db2777, #15803d);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-spring {
    background: linear-gradient(135deg, #ec4899 0%, #22c55e 100%);
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

.btn-spring:hover {
    background: linear-gradient(135deg, #db2777 0%, #16a34a 100%);
    box-shadow: 0 6px 20px rgba(236, 72, 153, 0.5);
    transform: translateY(-2px);
}

.btn-main {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.btn-main:hover {
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.5);
    transform: translateY(-2px);
}

.glass-card-spring {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 32px rgba(236, 72, 153, 0.1);
    transition: all 0.3s ease;
}

.glass-card-spring:hover {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(236, 72, 153, 0.3);
    box-shadow: 0 12px 40px rgba(236, 72, 153, 0.2);
}

/* Navbar specifics for Spring */
.glass-nav-spring {
    background: rgba(253, 164, 175, 0.4);
    /* Pink-300 with opacity */
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(236, 72, 153, 0.3);
}