/* Dark Atmospheric Luxury & Bespoke Tailoring Styles - Trajes Lorenz Franz */

:root {
    --bg-dark: #05070B;
    --bg-card: #0D131F;
    --bg-card-hover: #121A2B;
    --gold-primary: #D4AF37;
    --gold-brass: #B59A5D;
    --gold-light: #FFF2D1;
    --gold-glow: rgba(212, 175, 55, 0.25);
    --navy-glow: rgba(26, 47, 76, 0.4);
    --text-main: #F3F4F6;
    --text-muted: #9CA3AF;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: #05070B;
}

::-webkit-scrollbar-thumb {
    background: #1F293D;
    border-radius: 9999px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-primary);
}

/* Ambient Glow Backgrounds (Inspired by Reference Image 1) */
.ambient-glow-amber {
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.18) 0%, rgba(181, 154, 93, 0.05) 50%, transparent 70%);
    filter: blur(50px);
    pointer-events: none;
}

.ambient-glow-navy {
    position: absolute;
    width: 550px;
    height: 550px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(29, 78, 216, 0.15) 0%, rgba(15, 28, 46, 0.05) 60%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

.ambient-glow-lime {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(163, 230, 53, 0.12) 0%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
}

/* Gold Metallic Text Gradient */
.gold-gradient-text {
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF3D6 25%, #D4AF37 60%, #B59A5D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gold-gradient-subtle {
    background: linear-gradient(135deg, #E5E7EB 0%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Glassmorphism Cards & Pills (Inspired by Reference Image 1) */
.glass-card {
    background: rgba(13, 19, 31, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(212, 175, 55, 0.18);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.7);
}

.glass-card-hover {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-card-hover:hover {
    transform: translateY(-8px);
    background: rgba(18, 26, 43, 0.85);
    border-color: rgba(212, 175, 55, 0.45);
    box-shadow: 0 30px 60px -15px rgba(212, 175, 55, 0.15);
}

.glass-pill {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Basting Stitch (Hilván Sartorial) */
.basting-stitch {
    border-top: 1.5px dashed rgba(212, 175, 55, 0.4);
}

/* Anatomy Leader Lines & Hotspots (Inspired by Reference Image 2) */
.anatomy-pointer-line {
    position: absolute;
    pointer-events: none;
    border-bottom: 1px dashed rgba(212, 175, 55, 0.6);
}

.anatomy-hotspot-pin {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #D4AF37;
    border: 2px solid #05070B;
    box-shadow: 0 0 10px #D4AF37;
    cursor: pointer;
    position: relative;
    transition: transform 0.3s ease;
}

.anatomy-hotspot-pin::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.6);
    animation: pingSlow 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes pingSlow {
    75%, 100% {
        transform: translate(-50%, -50%) scale(2.4);
        opacity: 0;
    }
}

/* Circulating Marquee Track */
.circulating-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    will-change: transform;
}

/* 3D Canvas Container */
.three-canvas-container {
    position: relative;
    width: 100%;
    height: 100%;
    outline: none;
}

.three-canvas-container canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
}

/* Studio Suit Blend Container (Vanishes white background seamlessly into dark studio) */
.suit-studio-container {
    background: radial-gradient(circle at 50% 45%, #2B374A 0%, #141C2B 55%, #0A0E17 95%);
    position: relative;
    overflow: hidden;
}

.suit-blend-multiply {
    mix-blend-mode: multiply;
    filter: contrast(108%) brightness(1.03);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.suit-card-expanding:hover .suit-blend-multiply {
    transform: scale(1.06) translateY(-4px);
    filter: contrast(115%) brightness(1.08);
}

/* Transparent Suit Card Frame */
.suit-transparent-card {
    background: radial-gradient(circle at 50% 45%, rgba(212, 175, 55, 0.08) 0%, rgba(13, 19, 31, 0.95) 60%, #070A10 100%);
    position: relative;
    overflow: hidden;
}

.suit-card-expanding img {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.suit-card-expanding:hover img {
    transform: scale(1.06) translateY(-6px);
    filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.95)) brightness(1.04);
}
