/* Estilos Visuales para AURA | Cuadros & Galería de Arte */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --gallery-gold: #c59b27;
    --gallery-dark: #1c1917;
    --gallery-cream: #faf7f2;
    --gallery-stone: #e7e5e4;
    --gallery-accent: #78350f;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #faf9f6;
    color: #292524;
}

h1, h2, h3, .font-serif {
    font-family: 'Playfair Display', Georgia, serif;
}

/* Scrollbar estética */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: #f5f5f4;
}
::-webkit-scrollbar-thumb {
    background: #d6d3d1;
    border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
    background: #a8a29e;
}

/* Efectos de Lienzo y Tarjetas de Arte */
.art-card {
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.art-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 35px -10px rgba(28, 25, 23, 0.12);
}

/* Acabados de Molduras en el Simulador */
.frame-canvas {
    border-style: solid;
    border-color: #44403c !important;
}

.frame-black {
    border-style: solid;
    border-color: #171717 !important;
    outline: 1px solid rgba(255, 255, 255, 0.15);
}

.frame-oak {
    border-style: solid;
    border-color: #926339 !important;
    background: linear-gradient(135deg, #a47148, #85532a);
}

.frame-white {
    border-style: solid;
    border-color: #ffffff !important;
    outline: 1px solid rgba(0, 0, 0, 0.08);
}

.frame-gold {
    border-style: solid;
    border-color: #d4af37 !important;
    outline: 1px solid rgba(255, 235, 150, 0.4);
}

/* Iluminación de Galería y Pared en el Simulador */
.gallery-wall {
    position: relative;
    background-color: #f3efe6;
    transition: background-color 0.4s ease;
}

.gallery-spotlight {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 50% 25%, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 65%);
}

.floor-shadow {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.12) 0%, transparent 100%);
}

/* Efectos de Texto Editorial */
.text-gradient-gold {
    background: linear-gradient(135deg, #78350f, #c59b27, #92400e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
