body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    scroll-behavior: smooth;
    font-weight: 300;
    letter-spacing: -0.01em;
}

.cursive {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.font-league-spartan {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-size: 0.875rem;
}

.nav-link {
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #f472b6;
    transition: width 0.3s ease;
}

.nav-link:hover:after {
    width: 40%;
}

/* For mobile devices, make it even shorter */
@media (max-width: 768px) {
    .nav-link:hover:after {
        width: 50%;
    }
}

.hero {
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 100%);
    z-index: -1;
}

.neon-pink-text {
    color: white;
    text-shadow: 
        0 0 5px #ff1493,
        0 0 10px #ff1493,
        0 0 15px #ff1493,
        0 0 20px #ff1493;
    font-weight: 400;
    line-height: 1.1;
}

.glow-hover {
    transition: all 0.3s ease;
}

.glow-hover:hover {
    box-shadow: 
        0 0 20px #ff1493,
        0 0 40px #ff1493,
        0 0 60px #ff1493;
    transform: translateY(-5px);
}

.image-glow-hover {
    transition: all 0.3s ease;
}

.image-glow-hover:hover {
    filter: drop-shadow(0 0 20px #ff1493) drop-shadow(0 0 40px #ff1493);
    transform: scale(1.05);
}

.fade-in {
    animation: fadeIn 1.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.neon-pink {
    color: #ec4899;
    text-shadow: 
        0 0 5px #ec4899,
        0 0 10px #ec4899,
        0 0 15px #ec4899,
        0 0 20px #ec4899;
}

.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 25px -5px rgba(0, 0, 0, 0.1), 
        0 10px 10px -5px rgba(0, 0, 0, 0.04),
        0 0 20px rgba(236, 72, 153, 0.6),
        0 0 40px rgba(236, 72, 153, 0.4);
}

.glow-hover {
    transition: all 0.3s ease;
}

.glow-hover:hover {
    box-shadow: 
        0 0 20px rgba(236, 72, 153, 0.8),
        0 0 40px rgba(236, 72, 153, 0.6),
        0 0 60px rgba(236, 72, 153, 0.4);
    transform: scale(1.02);
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.95) 100%);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
}

.faq-question {
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.faq-question:hover {
    color: #be185d;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    line-height: 1.6;
}

.faq-answer.active {
    max-height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, #be185d 0%, #9d174d 100%);
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.btn-primary:hover {
    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);
}

.btn-secondary {
    background: transparent;
    border: 2px solid #be185d;
    color: #be185d;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.btn-secondary:hover {
    background: #be185d;
    color: white;
}

.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Typography Enhancements */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

p {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    line-height: 1.7;
    letter-spacing: -0.01em;
}

.text-lg {
    font-size: 1.125rem;
    font-weight: 300;
}

.text-xl {
    font-size: 1.25rem;
    font-weight: 400;
}

/* Mobile Menu Styles */
.mobile-menu {
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
}

.mobile-menu.active {
    transform: translateX(0);
}

/* Mobile Hero Improvements */
@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        padding-top: 80px;
    }
    
    .hero-overlay {
        background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.6) 100%);
    }
    
    .hero-content {
        text-align: center;
        padding: 2rem 1rem;
    }
    
    .neon-pink-text {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
        font-weight: 400;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
        font-weight: 300;
        line-height: 1.6;
    }
    
    .hero-image {
        margin-top: 3rem;
        max-width: 200px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 2rem;
    }
}
