/*
 * Hero Section CSS - Hauptbereich der Landing Page
 */

/* Hero Section mit optimiertem Background */
.hero {
    text-align: center;
    padding: 6rem 2rem;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(201, 161, 140, 0.85) 0%, rgba(230, 213, 199, 0.85) 100%), 
                url('/assets/images/happy-valentines-day-4615557_1920.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Hero Section für eingeloggte User mit Couple Photo */
.hero-logged-in {
    background-attachment: scroll; /* Bessere Performance auf Mobile */
    background-blend-mode: overlay;
}

/* Kein Background Image für eingeloggte User ohne Photo */
.hero-logged-in:not([style*="background-image"]) {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15) 0%, rgba(139, 92, 246, 0.15) 100%),
                linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(201, 161, 140, 0.3) 0%, rgba(230, 213, 199, 0.3) 100%);
    backdrop-filter: blur(1px);
    z-index: 1;
}

/* Dunkleres Overlay für eingeloggte User mit Foto */
.hero-logged-in::before {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.4) 100%);
}

/* Hero Badge */
.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 25px;
    color: #7c3aed;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    font-weight: 500;
}

.stat-item i {
    color: #a855f7;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .hero-stats {
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .stat-item {
        font-size: 0.8rem;
    }
}

.hero-content {
    max-width: 1000px;
    position: relative;
    z-index: 10;
    background: rgba(255, 255, 255, 0.95);
    padding: 4rem 3rem;
    border-radius: 2rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Hero Content für eingeloggte User */
.hero-logged-in .hero-content {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25);
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 7vw, 4.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 650px;
    margin: 0 auto 2.5rem;
    font-weight: 300;
    line-height: 1.6;
}
