/* ===========================
   VCARD PAGE SPECIFIC STYLES
   =========================== */

.vcard-body {
    background: linear-gradient(to bottom right, #1a1a1a, #2a2a2a, #1a1a1a);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    position: relative;
    overflow: hidden;
}

.vcard-container {
    max-width: 600px;
    width: 100%;
    position: relative;
    z-index: 10;
}

.vcard-card {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(205, 133, 63, 0.2);
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Header Section */
.vcard-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(205, 133, 63, 0.2);
}

.vcard-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin-top: 0.5rem;
    letter-spacing: 0.5px;
}

/* Profile Section */
.vcard-profile {
    text-align: center;
    margin-bottom: 2.5rem;
}

.profile-image-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
}

.profile-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(205, 133, 63, 0.3), rgba(218, 165, 32, 0.3));
    border-radius: 50%;
    filter: blur(20px);
}

.profile-icon {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, #8B4513, #CD853F);
    border-radius: 50%;
    padding: 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.4);
}

.vcard-name {
    font-size: 2rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, #CD853F, #DAA520);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vcard-title {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.25rem;
}

.vcard-company {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Contact Information */
.vcard-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(to bottom right, rgba(205, 133, 63, 0.2), rgba(218, 165, 32, 0.2));
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon svg {
    color: #CD853F;
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.info-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.info-value {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.info-value:hover {
    color: #CD853F;
}

a.info-value {
    cursor: pointer;
}

/* QR Code Section */
.vcard-qr {
    text-align: center;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 1rem;
    border: 1px solid rgba(205, 133, 63, 0.2);
}

.vcard-qr h3 {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 0.5rem;
}

.qr-description {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
}

.qr-code-wrapper {
    display: inline-block;
    padding: 1rem;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.qr-code-wrapper canvas {
    display: block;
}

/* Action Buttons */
.vcard-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.vcard-actions .btn {
    width: 100%;
    justify-content: center;
    font-size: 0.95rem;
}

/* Background Orbs */
.vcard-orb {
    position: absolute;
    border-radius: 9999px;
    filter: blur(80px);
    opacity: 0.5;
    pointer-events: none;
}

.vcard-orb-1 {
    top: 10%;
    left: 5%;
    width: 20rem;
    height: 20rem;
    background-color: rgba(205, 133, 63, 0.15);
    animation: float 20s ease-in-out infinite;
}

.vcard-orb-2 {
    bottom: 10%;
    right: 5%;
    width: 25rem;
    height: 25rem;
    background-color: rgba(218, 165, 32, 0.15);
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    33% {
        transform: translate(30px, -30px);
    }
    66% {
        transform: translate(-20px, 20px);
    }
}

/* Responsive Design */
@media (min-width: 640px) {
    .vcard-card {
        padding: 3rem 2.5rem;
    }

    .vcard-actions {
        flex-direction: row;
    }

    .vcard-actions .btn {
        flex: 1;
    }
}

@media (min-width: 768px) {
    .vcard-name {
        font-size: 2.25rem;
    }

    .vcard-title {
        font-size: 1.25rem;
    }

    .profile-image-wrapper {
        width: 140px;
        height: 140px;
    }
}

/* Print Styles */
@media print {
    .vcard-body {
        background: white;
    }

    .vcard-card {
        border: 1px solid #333;
        background: white;
        color: #333;
    }

    .vcard-name,
    .vcard-title,
    .vcard-company,
    .info-label,
    .info-value,
    .vcard-qr h3,
    .qr-description {
        color: #333;
        -webkit-text-fill-color: #333;
    }

    .vcard-actions {
        display: none;
    }

    .vcard-orb {
        display: none;
    }
}
