/* Theme Name: Ocean Wave */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;700;800&family=Open+Sans:wght@400;600&display=swap');

:root {
    --primary: #0ea5e9;
    --primary-light: #38bdf8;
    --bg-color: #f0f9ff;
    --body-bg: radial-gradient(circle at top right, #e0f2fe, #bae6fd);
    --card-bg: rgba(255, 255, 255, 0.85);
    --card-border: rgba(255, 255, 255, 0.6);
    --text-main: #0f172a;
    --text-muted: #334155;
    --border-color: #e2e8f0;
    --icon-bg: rgba(14, 165, 233, 0.1);
    --qr-section-bg: rgba(240, 249, 255, 0.7);
    --qr-code-bg: white;
    --profile-placeholder-bg: white;
    --profile-placeholder-text: var(--primary);
    
    --font-main: 'Open Sans', sans-serif;
    --font-heading: 'Montserrat', sans-serif;
    --name-size: 1.85rem;
}

.card {
    border-radius: 20px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(14, 165, 233, 0.15);
}

.header {
    background: transparent;
    height: 180px;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, #0284c7, #38bdf8);
    clip-path: polygon(0 0, 100% 0, 100% 80%, 0% 100%);
    z-index: 0;
}

.header-pattern {
    clip-path: polygon(0 0, 100% 0, 100% 80%, 0% 100%);
    z-index: 1;
}

.profile-img, .profile-img-placeholder {
    /* Bubbly shape */
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: wave 8s ease-in-out infinite alternate;
    border: 4px solid white;
    bottom: -40px;
}

@keyframes wave {
    0% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }
    100% {
        border-radius: 60% 40% 30% 70% / 60% 50% 40% 50%;
    }
}

.name {
    font-weight: 800;
    color: #0284c7;
    margin-top: 10px;
}

.title {
    font-family: var(--font-heading);
    letter-spacing: 1px;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.contact-icon {
    border-radius: 50%;
}

.btn {
    border-radius: 30px;
}