/*
 * HERO BUTTONS CLEAN - CONSOLIDATED HERO & BUTTON STYLES
 * ======================================================
 * This is the ONLY file for hero section and button styles.
 * DO NOT CREATE hero-*-fix.css or button-*-enhanced.css files!
 *
 * 📋 CONTAINS:
 * - Hero section layouts and backgrounds
 * - All button styles (primary, secondary, accent, form)
 * - Button hover effects and animations
 * - Responsive button layouts and CTA sections
 * - Small/large button variants
 *
 * 🎯 PERFORMANCE: Loads third for interactive elements and CTAs
 * 📏 SIZE: ~168 lines | GZIPPED: ~3KB | CRITICAL: Yes (for conversions)
 */

/* Hero Section Base Styles */
.hero-section {
    background: linear-gradient(135deg, rgba(15, 117, 189, 0.9), rgba(33, 150, 243, 0.8));
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
}

/* Primary Button Styles - DNA Romance Brand */
.btn-primary {
    background: linear-gradient(45deg, #0F75BD, #2196F3);
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    letter-spacing: 0.025em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(15, 117, 189, 0.3);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #2196F3, #0F75BD);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(15, 117, 189, 0.4);
    color: #fff;
}

.btn-primary:focus {
    box-shadow: 0 0 0 0.25rem rgba(15, 117, 189, 0.5);
    color: #fff;
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(15, 117, 189, 0.3);
}

/* Secondary Button Styles */
.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-weight: 600;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    letter-spacing: 0.025em;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    color: #fff;
}

/* Accent Button (Site-specific) */
.btn-accent {
    background: linear-gradient(45deg, #FF6B6B, #FF8E8E);
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.btn-accent:hover {
    background: linear-gradient(45deg, #FF8E8E, #FF6B6B);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 107, 107, 0.4);
    color: #fff;
}

/* CTA Buttons in Hero */
.hero-cta {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.hero-cta .btn {
    margin: 0.5rem 0;
}

/* Responsive Hero Buttons */
@media (max-width: 768px) {
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-primary,
    .btn-secondary,
    .btn-accent {
        width: 100%;
        margin: 0.5rem 0;
    }
}

/* Form Buttons */
.btn-form {
    background: #0F75BD;
    border: none;
    color: #fff;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-form:hover {
    background: #2196F3;
    transform: translateY(-1px);
    color: #fff;
}

/* Small Buttons */
.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    border-radius: 4px;
}

/* Large Buttons */
.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.25rem;
    border-radius: 60px;
}