body {
	width: 100%;
	height: 100%;
}

/* Share qr code */
.qr-code img {
	width: 100%;
}

/* Base animation */
.altum-animate {
	-webkit-animation-duration:500ms;
	animation-duration:500ms;
}

.altum-animate-fill-both {
	-webkit-animation-fill-mode:both;
	animation-fill-mode:both;
}

.altum-animate-fill-none {
	-webkit-animation-fill-mode:none;
	animation-fill-mode:none;
}

@-webkit-keyframes fadeIn{
	0% {
		opacity:0
	}
	to {
		opacity:1
	}
}
@keyframes fadeIn{
	0% {
		opacity:0
	}
	to {
		opacity:1
	}
}
.altum-animate-fade-in {
	-webkit-animation-name:fadeIn;
	animation-name:fadeIn
}

/* Images, icons */
.svg-sm, .svg-sm svg {
	width: 1rem;
	height: 1rem;
}

.svg-md, .svg-md svg {
	width: 1.25rem;
	height: 1.25rem;
}

.svg-lg, .svg-lg svg {
	width: 1.5rem;
	height: 1.5rem;
}

/* Modals */
.modal-header {
	padding: 1rem;
	border-bottom: 0;
}

.modal-content {
	padding: 1rem;
	border: none;
	box-shadow: none;
	-webkit-box-shadow: none;
	border-radius: calc(2 * var(--border-radius));
}

/* New york */
.new-york-logo {
	width: 110px;
	height: 110px;
	object-fit: cover;
	border-radius: 50rem;
	background: var(--white);
	position: absolute;
	top: -3.2rem;
	border: 2px solid var(--white);
}

/* San Francisco */
.san-francisco-logo {
	width: 100px;
	height: 100px;
	object-fit: cover;
	border-radius: .25rem;
	background: var(--white);
	border: 2px solid var(--gray-100);
}

.san-francisco-button {
	display: block;
	padding: .5rem .75rem;
	margin: .5rem 0;
	transition: .3s background;
	word-break: break-all;
}

.san-francisco-button:hover {
	background: var(--gray-100);
	border-radius: .25rem;
}

.san-francisco-button .icon {
	width: 2.5rem;
	height: 2.5rem;
	min-width: 2.5rem;
	min-height: 2.5rem;
	background: var(--gray-100);
	transition: .3s background;
}
.san-francisco-button:hover .icon {
	background: var(--gray-200);
}

.san-francisco-card {
	padding: 2.25rem;
}

/* Los Angeles */
.los-angeles-logo {
	width: 125px;
	height: 125px;
	object-fit: cover;
	border-radius: 50rem;
	background: var(--white);
	border: 2px solid var(--gray-100);
}

.los-angeles-button {
	display: block;
	padding: .5rem .75rem;
	margin: .5rem 0;
	transition: .3s background;
	background: var(--gray-100);
	border-radius: .25rem;
	word-break: break-all;
}

.los-angeles-button:hover {
	background: var(--gray-200);
}

.los-angeles-button .icon {
	width: 2.5rem;
	height: 2.5rem;
	min-width: 2.5rem;
	min-height: 2.5rem;
	transition: .3s background;
}

.los-angeles-card {
	padding: 2rem;
}

/* Chicago */
.chicago-logo {
	width: 75px;
	height: 75px;
	object-fit: cover;
	/*border-radius: 50rem;*/
	background: var(--white);
}

.chicago-button {
	display: block;
	padding: .5rem .75rem;
	margin: .5rem 0;
	transition: .3s background;
	background: var(--gray-100);
	word-break: break-all;
}

.chicago-button:hover {
	background: var(--gray-200);
}

.chicago-button .icon {
	width: 2.5rem;
	height: 2.5rem;
	min-width: 2.5rem;
	min-height: 2.5rem;
	transition: .3s background;
}
.chicago-button:hover .icon {
	background: var(--gray-200);
}

.chicago-card {
	padding: 2rem;
}

/* vCard Theme Styles */
.vcard-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 20px;
    background: #f5f5f5;
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.vcard-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.vcard-branding {
    text-align: left;
}

.vcard-logo {
    margin: 0;
    line-height: 1;
}

.vcard-logo-img {
    display: block;
    width: 95px;
    height: auto;
}

/* vCard avatar (user's uploaded logo before the full name) */
.vcard-avatar-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 12px;
}

.vcard-avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    background: #fff;
    border: 2px solid #e6e6e6;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.vcard-tagline {
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
}

.vcard-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.vcard-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    color: #333;
    min-width: 80px;
}

.vcard-action-btn:hover {
    background: #f8f9fa;
    border-color: #007bff;
    color: #007bff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.vcard-icon {
    width: 20px;
    height: 20px;
    margin-bottom: 4px;
}

.vcard-action-btn span {
    font-size: 0.8rem;
    font-weight: 500;
}

.vcard-main {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
}

.vcard-profile {
    text-align: left;
}

.vcard-name {
    font-size: 2rem;
    font-weight: 700;
    color: #000;
    margin: 0 0 12px 0;
    line-height: 1.2;
	text-align: center;
}

.vcard-job-title {
    font-size: 1.1rem;
    font-weight: 500;
    color: #666;
    margin-bottom: 5px;
    text-align: center;
}

.vcard-company {
    font-size: 1rem;
    font-weight: 400;
    color: #888;
    margin-bottom: 20px;
    text-align: center;
}

.vcard-contact-section {
    margin: 20px auto 20px auto;
    text-align: center;
    max-width: 100%;
    width: 100%;
}

.vcard-contact-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    width: 100%;
}

.vcard-contact-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 16px 20px;
    text-decoration: none;
    color: #333;
    transition: all 0.2s ease;
    flex: 1;
    max-width: calc(50% - 7.5px);
    justify-content: center;
}

.vcard-contact-btn:hover {
    background: #e9ecef;
    border-color: #007bff;
    color: #007bff;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.vcard-contact-icon {
    width: 18px;
    height: 18px;
    color: #666;
}

.vcard-contact-btn:hover .vcard-contact-icon {
    color: #007bff;
}

.vcard-contact-text {
    font-weight: 500;
    font-size: 0.9rem;
}

.vcard-social-section {
    margin-bottom: 25px;
    text-align: center;
}

.vcard-social-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.vcard-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
	padding-bottom: 8px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid #ddd;
    background: #fff;
}

.github-link {
    background: #fff;
    color: #000;
}

.github-link:hover {
    background: #f6f8fa;
    border-color: #000;
    transform: translateY(-1px);
}

.linkedin-link {
    background: #fff;
    color: #0077b5;
}

.linkedin-link:hover {
    background: #e3f2fd;
    border-color: #0077b5;
    transform: translateY(-1px);
}

.vcard-social-icon {
    width: 20px;
    height: 20px;
}

.vcard-social-icon svg {
    width: 100%;
    height: 100%;
    color: #666;
}

.vcard-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.vcard-detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
}

.vcard-detail-icon {
    width: 20px;
    height: 20px;
    color: #666;
    flex-shrink: 0;
}

.vcard-detail-label {
    font-weight: 600;
    color: #333;
    min-width: 80px;
}

.vcard-detail-value {
    color: #666;
    flex: 1;
}


.vcard-footer {
    text-align: center;
    padding: 20px 0;
}

.vcard-footer-line {
    width: 100%;
    height: 1px;
    background: #ddd;
    margin-bottom: 15px;
}

.vcard-footer-text {
    color: #666;
    font-size: 0.9rem;
}

/* Password Page Styles */
.vcard-password-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: #f5f5f5;
    padding: 20px;
}

.vcard-password-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
}

.vcard-password-header {
    text-align: center;
    margin-bottom: 30px;
}

.vcard-password-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    margin: 20px 0 10px 0;
}

.vcard-password-description {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.5;
}

.vcard-password-form {
    width: 100%;
}

.vcard-password-input-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.vcard-password-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.vcard-password-input:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0,123,255,0.1);
}

.vcard-password-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 16px;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.vcard-password-button:hover {
    background: #0056b3;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,123,255,0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .vcard-container {
        padding: 15px;
    }
    
    .vcard-header {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .vcard-branding {
        text-align: center;
    }
    
    .vcard-actions {
        justify-content: center;
    }
    
    .vcard-main {
        padding: 20px;
    }
    
    .vcard-name {
        font-size: 1.5rem;
    }
    
    .vcard-social-section {
        margin-bottom: 20px;
    }
    
    .vcard-contact-buttons {
        gap: 10px;
    }
    
    .vcard-contact-btn {
        max-width: calc(50% - 5px);
        padding: 12px 16px;
    }
    
    .vcard-social-links {
        gap: 10px;
    }
    
    .vcard-password-card {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .vcard-container {
        padding: 10px;
    }
    
    .vcard-main {
        padding: 15px;
    }
    
    .vcard-name {
        font-size: 1.3rem;
    }
    
    .vcard-action-btn {
        min-width: 70px;
        padding: 10px 12px;
    }
    
    .vcard-action-btn span {
        font-size: 0.7rem;
    }
}

/* Accessibility Improvements */
.vcard-action-btn:focus,
.vcard-block-link:focus,
.vcard-social-link:focus {
    outline: 2px solid #007bff;
    outline-offset: 2px;
}

.vcard-action-btn:focus:not(:focus-visible),
.vcard-block-link:focus:not(:focus-visible),
.vcard-social-link:focus:not(:focus-visible) {
    outline: none;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .vcard-container {
        background: #000;
        color: #fff;
    }
    
    .vcard-main,
    .vcard-block-item,
    .vcard-password-card {
        background: #000;
        border-color: #fff;
        color: #fff;
    }
    
    .vcard-logo,
    .vcard-name {
        color: #fff;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .vcard-action-btn,
    .vcard-block-item,
    .vcard-social-link,
    .vcard-password-button {
        transition: none;
    }
    
    .vcard-action-btn:hover,
    .vcard-block-item:hover {
        transform: none;
    }
}

/* QR Code Modal Styles */
.vcard-qr-modal {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.vcard-qr-modal .modal-header {
    border-bottom: 1px solid #e0e0e0;
    padding: 15px 20px;
    background: #f8f9fa;
}

.vcard-qr-modal .modal-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.vcard-qr-modal .modal-body {
    padding: 30px 20px;
    background: #fff;
}

.vcard-qr-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 250px;
}

.vcard-qr-container canvas,
.vcard-qr-container img {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    max-width: 100%;
    height: auto;
}

.vcard-qr-fallback {
    width: 250px;
    height: 250px;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 14px;
    text-align: center;
}

.vcard-qr-modal .modal-footer {
    border-top: 1px solid #e0e0e0;
    padding: 15px 20px;
    background: #f8f9fa;
    justify-content: flex-end;
}

.vcard-qr-close-btn {
    background: #6c757d;
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.vcard-qr-close-btn:hover {
    background: #5a6268;
    color: #fff;
}

.vcard-qr-close-btn:focus {
    box-shadow: 0 0 0 3px rgba(108, 117, 125, 0.25);
}

/* Others */
.btn:focus, .btn:active {
	box-shadow: none !important;
}
