/* Custom Fonts */
.font-playfair {
    font-family: 'Playfair Display', serif;
}

.font-montserrat {
    font-family: 'Montserrat', sans-serif;
}

/* Hero Section Background */
section:first-child {
    background-image: url('https://images.unsplash.com/photo-1519741497674-611481863552?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

section:first-child::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(244, 114, 182, 0.3), rgba(244, 114, 182, 0.1));
    pointer-events: none;
}

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

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

section {
    animation: fadeIn 1s ease-out;
}

/* Custom Form Styles */
input, select, textarea {
    transition: all 0.3s ease;
    background-color: white;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #f472b6;
    box-shadow: 0 0 0 3px rgba(244, 114, 182, 0.1);
}

/* Pricing Card Hover Effects */
.border.rounded-lg {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: white;
}

.border.rounded-lg:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Feature Icons Animation */
.text-4xl {
    transition: transform 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.text-center.p-6:hover .text-4xl {
    transform: scale(1.2);
}

/* Button Hover Effects */
.bg-rose-400 {
    transition: all 0.3s ease;
}

.bg-rose-400:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(244, 114, 182, 0.2);
}

/* Testimonial Card Effects */
.bg-rose-50 {
    transition: all 0.3s ease;
}

.bg-rose-50:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(244, 114, 182, 0.1);
}

/* Demo Section Image Effect */
.relative img {
    transition: all 0.3s ease;
}

.relative:hover img {
    transform: scale(1.02);
}

/* Social Links Hover */
footer a {
    transition: all 0.3s ease;
}

footer a:hover {
    color: #f472b6;
    transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 640px) {
    .font-playfair {
        font-size: 2.5rem;
    }
    
    .grid {
        gap: 1.5rem;
    }
    
    .p-8 {
        padding: 1.5rem;
    }
}

/* Background Patterns */
.bg-rose-50 {
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f472b6' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
} 