body {
    background: linear-gradient(135deg, #ffb6c1 0%, #ff69b4 100%);
    min-height: 100vh;
    font-family: 'Segoe UI', Arial, sans-serif;
}

.home-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.home-hero h1 {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.home-hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.home-hero img {
    width: 220px;
    border-radius: 50%;
    box-shadow: 0 4px 24px rgba(255,105,180,0.25);
    margin-bottom: 2rem;
    border: 6px solid #fff0f6;
}

.pink-btn {
    background: #ff69b4;
    color: #fff;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(255,105,180,0.15);
    transition: background 0.2s;
    text-decoration: none;
}
.pink-btn:hover {
    background: #ff1493;
}
