/* IN3 VCard Styles */
:root {
    --in3-gold: #e09e29;
    --in3-gold-hover: #bf8621;
    --in3-black: #020202;
    --in3-gray: #1c1c1c;
}

.in3-vcard-wrapper {
    min-height: 100vh;
    background: linear-gradient(to bottom right, var(--in3-black), #0a0a0a, var(--in3-gray));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    box-sizing: border-box;
}

.in3-vcard-container {
    width: 100%;
    max-width: 28rem;
}

.in3-vcard-card {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    border: 1px solid rgba(224, 158, 41, 0.1);
}

/* Header */
.in3-vcard-header {
    background: var(--in3-black);
    padding: 2rem;
    text-align: center;
}

.in3-vcard-avatar {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    background: var(--in3-gold);
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.in3-vcard-avatar span {
    font-size: 2.25rem;
    font-weight: bold;
    color: var(--in3-black);
}

.in3-vcard-card .in3-vcard-name {
    font-size: 1.5rem !important;
    font-weight: bold !important;
    color: #e09e29 !important;
    margin: 0 0 0.25rem !important;
    line-height: 1.2 !important;
}

.in3-vcard-title {
    font-size: 0.875rem;
    color: var(--in3-gold);
    margin: 0;
}

.in3-vcard-org {
    font-size: 0.75rem;
    color: var(--in3-gold);
    margin: 0;
}

/* Content */
.in3-vcard-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.in3-vcard-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: #f9fafb;
    border-radius: 0.5rem;
    transition: background 0.2s;
    cursor: pointer;
}

.in3-vcard-item:not(.in3-vcard-item-static):hover {
    background: #f3f4f6;
}

.in3-vcard-item-static {
    cursor: default;
}

.in3-vcard-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--in3-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.in3-vcard-icon svg {
    color: var(--in3-black);
}

.in3-vcard-info {
    flex: 1;
    min-width: 0;
}

.in3-vcard-label {
    display: block;
    font-size: 0.75rem;
    color: #6b7280;
}

.in3-vcard-value {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #111827;
    word-break: break-all;
}

.in3-vcard-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: #2563eb;
    text-decoration: none;
    word-break: break-all;
}

.in3-vcard-link:hover {
    color: #1d4ed8;
}

.in3-vcard-copied {
    flex-shrink: 0;
}

.in3-vcard-copied svg {
    color: #16a34a;
}

/* Actions */
.in3-vcard-actions {
    padding: 0 1.5rem 1.5rem;
}

.in3-vcard-download {
    width: 100%;
    background: var(--in3-gold);
    border: none;
    color: var(--in3-black);
    font-weight: 600;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 1rem;
}

.in3-vcard-download:hover {
    background: var(--in3-gold-hover);
    transform: scale(1.02);
}

.in3-vcard-download svg {
    color: var(--in3-black);
}

/* Footer */
.in3-vcard-footer {
    padding: 0 1.5rem 1rem;
    text-align: center;
}

.in3-vcard-footer p {
    font-size: 0.75rem;
    color: #9ca3af;
    margin: 0;
}

/* Full page mode - remove WP theme styles */
body.in3-vcard-fullpage {
    margin: 0;
    padding: 0;
}

body.in3-vcard-fullpage .in3-vcard-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
}
