/* ========================================
   HOME PAGE - Specific Styles
   ======================================== */

/* ========================================
   WELCOME CARD - For New Users
   ======================================== */
.welcome-card {
    background: var(--bg-primary);
    border-radius: 24px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    animation: fadeInUp 0.4s ease-out both;
}

.welcome-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.25rem;
    box-shadow: var(--shadow-glow);
}

.welcome-card h2 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.welcome-card p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* ========================================
   BABY HERO CARD
   ======================================== */
.baby-hero {
    background: var(--primary-gradient);
    border-radius: 24px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.4s ease-out both;
}

.baby-hero::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
}

.baby-hero::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.hero-avatar {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

.hero-info {
    flex: 1;
    color: white;
    min-width: 0;
}

.hero-info h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.hero-info p {
    font-size: 0.8125rem;
    opacity: 0.9;
}

.dday-badge {
    background: white;
    color: var(--primary-dark);
    padding: 0.625rem 1rem;
    border-radius: 14px;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

/* ========================================
   STATS GRID - Summary Counters
   ======================================== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.625rem;
    margin-bottom: 1rem;
    animation: fadeInUp 0.4s ease-out both;
    animation-delay: 0.05s;
}

.stat-card {
    background: var(--bg-primary);
    border-radius: 16px;
    padding: 1rem 0.75rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all 0.2s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.stat-icon {
    font-size: 1.5rem;
    margin-bottom: 0.375rem;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.1;
}

.stat-value.blue {
    color: var(--accent-blue);
}

.stat-value.purple {
    color: var(--accent-purple);
}

.stat-value.yellow {
    color: #D97706;
}

.stat-unit {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.stat-label {
    font-size: 0.6875rem;
    color: var(--text-tertiary);
    margin-top: 0.25rem;
    font-weight: 500;
}

/* Home Page Section Animations */
.section {
    animation: fadeInUp 0.4s ease-out both;
}

.section:nth-of-type(1) {
    animation-delay: 0.1s;
}

.section:nth-of-type(2) {
    animation-delay: 0.15s;
}
