/*
Theme Name: 1800Love
Description: A vibrant heterosexual dating platform theme with Gen-Z appeal, multilingual support, and comprehensive dating features.
Version: 1.0
Author: 1800Love Team
Text Domain: 1800love
*/

/* Tailwind CSS Base */
@import url('https://cdn.jsdelivr.net/npm/tailwindcss@3.4.1/base.min.css');
@import url('https://cdn.jsdelivr.net/npm/tailwindcss@3.4.1/components.min.css');
@import url('https://cdn.jsdelivr.net/npm/tailwindcss@3.4.1/utilities.min.css');

/* Custom Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #fdf2f8 0%, #faf5ff 50%, #fef7f7 100%);
    min-height: 100vh;
}

.gradient-bg {
    background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 50%, #f43f5e 100%);
}

.gradient-text {
    background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.floating-hearts {
    animation: float 3s ease-in-out infinite;
}

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

.pulse-heart {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Mobile Menu Styles */
.mobile-menu {
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
}

.mobile-menu.active {
    transform: translateX(0);
}

/* Form Styles */
.form-input {
    border: 2px solid #fce7f3;
    border-radius: 12px;
    padding: 12px 16px;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    border-color: #8b5cf6;
    outline: none;
}

/* Button Styles */
.btn-primary {
    background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #db2777 0%, #7c3aed 100%);
    transform: translateY(-2px);
}

.btn-secondary {
    background: white;
    color: #8b5cf6;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 2px solid #8b5cf6;
    cursor: pointer;
}

.btn-secondary:hover {
    background: #faf5ff;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .search-form {
        padding: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .search-form {
        padding: 1rem;
    }
    
    .feature-card {
        padding: 1rem;
    }
}