/* ==========================================================================
   Art India Jewels - Luxury Business Card Style Sheets
   ========================================================================== */

/* Universal Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: #0c0106;
    color: #fdfbfa;
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
}

/* Presentation Background Glows and Particles */
.ambient-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
    transition: background 0.2s ease;
    background: radial-gradient(circle at 50% 50%, rgba(74, 14, 42, 0.15), transparent 70%);
}

.stars-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.star {
    position: absolute;
    background: #d4af6a;
    border-radius: 50%;
    opacity: 0;
    animation: pulse-star 4s infinite ease-in-out;
}

@keyframes pulse-star {
    0%, 100% { opacity: 0; transform: scale(0.8); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

/* Card Presentation Layout Wrapper */
.presentation-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    min-height: 100vh;
    padding: 60px 20px;
    gap: 10px;
    z-index: 1;
}

.card-container {
    perspective: 1500px;
    padding: 0;
    margin: 40px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: relative;
}

/* Business Card Container */
.business-card {
    position: relative;
    width: 1050px;
    min-width: 1050px;
    max-width: 1050px;
    height: 600px;
    min-height: 600px;
    max-height: 600px;
    background-color: #2c0a1e;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 32px 80px rgba(0, 0, 0, 0.85),
                inset 0 0 100px rgba(0, 0, 0, 0.4);
    transform-style: preserve-3d;
    transition: transform 0.15s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease;
    user-select: none;
    transform-origin: center center;
}

.business-card:hover {
    box-shadow: 0px 48px 100px rgba(0, 0, 0, 0.95),
                0 0 40px rgba(197, 151, 58, 0.1),
                inset 0 0 100px rgba(0, 0, 0, 0.3);
}

/* Texture Overlay with Radial Gradient */
.texture-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(74,14,42,1) 0%, rgba(44,10,30,1) 60%, rgba(26,5,18,1) 100%);
    opacity: 0.85;
    pointer-events: none;
    z-index: 1;
}

/* Borders */
.outer-border {
    position: absolute;
    top: 12px;
    left: 12px;
    width: calc(100% - 24px);
    height: calc(100% - 24px);
    border: 1.5px solid #c9973a;
    border-radius: 4px;
    pointer-events: none;
    z-index: 2;
}

.inner-border {
    position: absolute;
    top: 20px;
    left: 20px;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    border: 0.5px solid #e5c173;
    opacity: 0.5;
    border-radius: 2px;
    pointer-events: none;
    z-index: 2;
}

.inner-frame-accent {
    position: absolute;
    top: 28px;
    left: 28px;
    width: calc(100% - 56px);
    height: calc(100% - 56px);
    border: 0.3px solid #c9973a;
    opacity: 0.35;
    border-radius: 2px;
    pointer-events: none;
    z-index: 2;
}

/* Corner Ornaments */
.corner-ornament {
    position: absolute;
    width: 80px;
    height: 80px;
    pointer-events: none;
    z-index: 3;
}

.corner-tl { top: 8px; left: 8px; }
.corner-tr { top: 8px; right: 8px; }
.corner-bl { bottom: 8px; left: 8px; }
.corner-br { bottom: 8px; right: 8px; }

.corner-ornament svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Core Layout */
.main-layout {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 4;
}

/* Left Panel (Brand Details) */
.left-panel {
    width: 490px;
    height: 100%;
    padding: 48px 40px 48px 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
}

/* Accents */
.top-accent, .bottom-accent {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
}

.accent-line {
    height: 1px;
    flex-grow: 1;
}

.top-accent .accent-line-l {
    background: linear-gradient(to right, rgba(44,10,30,0), #c9973a);
    max-width: 60px;
}

.top-accent .accent-line-r {
    background: linear-gradient(to right, #c9973a, rgba(44,10,30,0));
    max-width: 60px;
}

.bottom-accent .accent-line-l {
    background: linear-gradient(to right, rgba(44,10,30,0), rgba(201,151,58,0.5));
    max-width: 40px;
}

.bottom-accent .accent-line-r {
    background: linear-gradient(to right, rgba(201,151,58,0.5), rgba(44,10,30,0));
    max-width: 40px;
}

.accent-gem {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.gem-l2, .gem-r2, .b-gem-1, .b-gem-3 { width: 3px; height: 3px; }
.gem-l1, .gem-r1, .b-gem-2 { width: 5px; height: 5px; }
.gem-c { width: 8px; height: 8px; }

.accent-gem svg {
    width: 100%;
    height: 100%;
}

/* Brand Logo Container */
.logo-container {
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.logo-container:hover {
    transform: scale(1.08) rotate(2deg);
}

.logo-container svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5)) drop-shadow(0 0 2px rgba(197, 151, 58, 0.3));
}

/* Brand Names Block */
.brand-names-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.brand-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 30px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;
    margin: 0;
    background: linear-gradient(175deg, #c9973a 25%, #f0d080 50%, #c9973a 75%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}

.ornate-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 100%;
}

.ornate-divider .div-line-l {
    background: linear-gradient(to right, rgba(201,151,58,0), #c9973a);
    height: 1px;
    max-width: 40px;
    flex-grow: 1;
}

.ornate-divider .div-line-r {
    background: linear-gradient(to right, #c9973a, rgba(201,151,58,0));
    height: 1px;
    max-width: 40px;
    flex-grow: 1;
}

.tagline {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-style: italic;
    font-size: 16px;
    letter-spacing: 0.05em;
    color: #d4af6a;
    text-transform: capitalize;
    text-align: center;
    margin: 0;
    opacity: 0.9;
}

/* Central Divider */
.central-divider {
    width: 30px;
    height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.central-divider svg {
    width: 100%;
    height: 100%;
}

/* Right Panel (Contact & Owner Info) */
.right-panel {
    width: 530px;
    height: 100%;
    padding: 56px 56px 48px 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 32px;
}

/* Owner Title Block */
.owner-title-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
}

.owner-name {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 40px;
    line-height: 1.1;
    margin: 0;
    background: linear-gradient(174deg, #f0d080 25%, #fdfbfa 45%, #e5c173 75%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}

.badge-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.owner-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #e5c173;
}

.dot-separator {
    width: 17px;
    height: 5px;
    display: flex;
    align-items: center;
}

.dot-separator svg {
    width: 100%;
    height: 100%;
}

.brand-sub {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #9c8a6a;
}

.section-divider {
    display: flex;
    align-items: center;
    gap: 6px;
    width: 100%;
}

.section-div-line {
    height: 1px;
    width: 180px;
    background: linear-gradient(to right, #c9973a, rgba(201,151,58,0.25));
}

.section-div-gem {
    width: 4px;
    height: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-div-gem svg {
    width: 100%;
    height: 100%;
}

/* Contact List */
.contact-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
    width: 100%;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    position: relative;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.address-row {
    align-items: flex-start;
}

.icon-frame {
    width: 34px;
    height: 34px;
    border: 1px solid #c9973a;
    border-radius: 4px;
    background: linear-gradient(to bottom, #4a1528, #3a0e1e);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.contact-row:hover .icon-frame {
    transform: scale(1.1);
    border-color: #f0d080;
    box-shadow: 0 0 12px rgba(240, 208, 128, 0.4), 0 4px 8px rgba(0,0,0,0.3);
}

.icon-svg {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-svg svg {
    width: 100%;
    height: 100%;
}

.contact-text-col {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex-grow: 1;
}

.contact-label {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 9px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #9c8a6a;
}

.contact-value {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #fdfbfa;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-row:hover .contact-value {
    color: #fdfbfa;
    text-shadow: 0 0 8px rgba(253, 251, 250, 0.5);
}

.contact-value.address-text {
    font-size: 13px;
    color: #c4b89a;
    line-height: 1.6;
}

.address-text p {
    margin: 0;
}

/* Micro Dividers */
.micro-divider {
    display: flex;
    align-items: center;
    gap: 4px;
    width: 100%;
}

.micro-divider .md-line {
    height: 1px;
    width: 320px;
    background-color: #c9973a;
    opacity: 0.15;
}

.micro-divider .md-dot {
    width: 3px;
    height: 3px;
    display: flex;
    align-items: center;
}

.micro-divider .md-dot svg {
    width: 100%;
    height: 100%;
}

/* Clipboard Copy Interactivity */
.copy-indicator {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    font-family: 'Manrope', sans-serif;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    color: #e5c173;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    letter-spacing: 0.05em;
}

.contact-row:hover .copy-indicator {
    opacity: 0.8;
    transform: translateY(-50%) translateX(0);
}

.address-row .copy-indicator {
    top: 20px;
    transform: translateX(10px);
}

.address-row:hover .copy-indicator {
    transform: translateX(0);
}

/* Toast Notifications */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: rgba(42, 6, 25, 0.95);
    border: 1px solid #c9973a;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 15px rgba(197,151,58,0.2);
    color: #fdfbfa;
    padding: 12px 24px;
    border-radius: 50px;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Row Flashing Animations */
@keyframes flash {
    0% { background-color: rgba(197, 151, 58, 0); }
    50% { background-color: rgba(197, 151, 58, 0.1); }
    100% { background-color: rgba(197, 151, 58, 0); }
}

.flash-success {
    animation: flash 0.6s ease;
}

/* Responsive Scaling for Layout Details */
.svg-imgCornerOrnamentTl, .svg-imgCornerOrnamentTr, .svg-imgCornerOrnamentBl, .svg-imgCornerOrnamentBr {
    fill: #c9973a;
}

/* Brand Links Section */
.brand-links-section {
    width: 100%;
    max-width: 1050px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: -10px;
    margin-bottom: 60px;
    animation: fadeIn 1s ease;
}

.brand-links-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 26px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #e5c173;
    text-align: center;
    position: relative;
    padding-bottom: 12px;
}

.brand-links-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 1px;
    background: linear-gradient(to right, transparent, #c9973a, transparent);
}

.brand-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
    width: 100%;
}

.brand-link-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(44, 10, 30, 0.4);
    border: 1px solid rgba(197, 151, 58, 0.15);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.brand-link-card:hover {
    background: rgba(74, 14, 42, 0.6);
    border-color: rgba(197, 151, 58, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(197, 151, 58, 0.1);
}

.brand-link-icon-frame {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(197, 151, 58, 0.5);
    border-radius: 6px;
    background: linear-gradient(to bottom, #4a1528, #2c0a1e);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e5c173;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.brand-link-card:hover .brand-link-icon-frame {
    transform: scale(1.08);
    border-color: #e5c173;
    box-shadow: 0 0 10px rgba(229, 193, 115, 0.3);
}

.brand-link-icon-frame svg {
    width: 18px;
    height: 18px;
    display: block;
}

.brand-link-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex-grow: 1;
}

.brand-link-info h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #fdfbfa;
    margin: 0;
}

.brand-link-info p {
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    color: #9c8a6a;
    margin: 0;
}

.brand-link-action {
    font-family: 'Manrope', sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #e5c173;
    border: 1px solid rgba(229, 193, 115, 0.3);
    padding: 6px 12px;
    border-radius: 4px;
    transition: all 0.2s ease;
    background: rgba(229, 193, 115, 0.05);
}

.brand-link-card:hover .brand-link-action {
    background: #e5c173;
    color: #2c0a1e;
    border-color: #e5c173;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Animations for extra link SVGs */
.brand-link-svg {
    stroke: #e5c173;
    transition: stroke 0.3s ease;
}

.brand-link-card:hover .brand-link-svg {
    stroke: #fdfbfa;
}
