/* ==========================================================================
   ABU Art Gallery - Soft & Elegant Minimalist Theme
   ========================================================================== */

:root {
    --bg-light: #FBFaf8;
    /* Soft pearl/cream */
    --bg-lighter: #FFFFFF;
    --text-primary: #2C2C2C;
    /* Soft black */
    --text-secondary: #7A7571;
    /* Warm grey */
    --accent: #D4B594;
    /* Soft warm sand/gold */
    --accent-hover: #b89876;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(0, 0, 0, 0.06);
    --font-heading: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --radius-soft: 20px;
    --shadow-soft: 0 12px 30px rgba(0, 0, 0, 0.03);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.08);
}

body {
    background-color: var(--bg-light);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    /* Softer weight */
    letter-spacing: -0.01em;
}

.font-serif {
    font-family: var(--font-serif);
}

.text-gold {
    color: #d4af37 !important;
}

.bg-gold {
    background-color: #d4af37 !important;
}

.border-gold {
    border-color: #d4af37 !important;
}

a {
    transition: all 0.3s ease;
}

/* --- BOOTSTRAP OVERRIDES FOR SOFT LIGHT THEME --- */
/* Since content files have dark-theme classes hardcoded, we override them to look light */
.text-white,
.text-light {
    color: #fff !important;
}

.text-secondary,
.text-white-50 {
    color: var(--text-secondary) !important;
}

.btn-outline-light {
    border-color: var(--text-primary) !important;
    color: var(--text-primary) !important;
}

.btn-outline-light:hover {
    background-color: var(--text-primary) !important;
    color: #fff !important;
}

.border-light {
    border-color: rgba(0, 0, 0, 0.1) !important;
}

.bg-dark,
.bg-darker,
.bg-transparent {
    background-color: var(--bg-lighter) !important;
}

.border-secondary {
    border-color: rgba(0, 0, 0, 0.08) !important;
}

.btn-link.text-gold {
    color: var(--accent) !important;
}

/* --- GLASSMORPHISM NAVBAR --- */
/* --- MINIMALIST HEADER & SIDE-SLIDE MENU --- */
.abu-header-minimal {
    padding: 25px 0;
    transition: all 0.5s cubic-bezier(0.7, 0, 0.3, 1);
    /*z-index: 1050;*/
    /*background: #fff;*/
    /*border-bottom: 1px solid rgba(0, 0, 0, 0.05);*/
    /* Subtle separation */
    /*box-shadow: 0 2px 15px rgba(0, 0, 0, 0.02);*/
}

.abu-header-minimal.scrolled {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.header-logo .main-logo {
    max-height: 50px;
    transition: all 0.5s ease;
}

.header-logo .logo-colored {
    display: none;
}

.abu-header-minimal.scrolled .logo-white {
    display: none;
}

.abu-header-minimal.scrolled .logo-colored {
    display: block;
    max-height: 40px;
}

.menu-trigger {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    z-index: 1060;
    padding: 8px 15px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.menu-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: #fff;
    transition: color 0.3s ease;
}

.hamburger-box {
    width: 25px;
    height: 18px;
    position: relative;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 25px;
    height: 2px;
    background-color: #fff;
    position: absolute;
    transition: all 0.3s ease;
}

.hamburger-inner {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger-inner::before {
    content: '';
    top: -8px;
}

.hamburger-inner::after {
    content: '';
    bottom: -8px;
}

.abu-header-minimal.scrolled .menu-text {
    color: var(--text-primary);
}

.abu-header-minimal.scrolled .hamburger-inner,
.abu-header-minimal.scrolled .hamburger-inner::before,
.abu-header-minimal.scrolled .hamburger-inner::after {
    background-color: var(--text-primary);
}

/* SIDE-SLIDE MENU STYLES */
.abu-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    /* Hidden on right */
    width: 450px;
    max-width: 100%;
    height: 100%;
    background: #ffffff;
    /* Solid White for the "strip/block" feel */
    z-index: 2000;
    box-shadow: -15px 0 50px rgba(0, 0, 0, 0.1);
    transition: all 0.6s cubic-bezier(0.7, 0, 0.3, 1);
    display: flex;
    flex-direction: column;
    padding: 60px 40px;
}

.abu-menu-overlay.active {
    right: 0;
}

.overlay-close {
    align-self: flex-end;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-primary);
    transition: transform 0.4s ease;
    margin-bottom: 50px;
}

.overlay-close:hover {
    transform: rotate(90deg) scale(1.1);
    color: var(--accent);
}

.overlay-nav ul {
    margin: 0;
    padding: 0;
}

.nav-item-reveal {
    overflow: hidden;
    margin-bottom: 20px;
}

.overlay-link {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.4s ease;
}

.nav-num {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent);
}

.nav-text {
    font-family: var(--font-serif);
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.2;
    transition: all 0.4s ease;
}

.overlay-link:hover .nav-text {
    transform: translateX(15px);
    color: var(--accent);
}

.overlay-link.active .nav-text {
    font-style: italic;
    color: var(--accent);
}

.overlay-footer-info {
    margin-top: auto;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.overlay-footer-info h5 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.social-links-minimal a {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--text-primary);
    text-decoration: none;
    margin-right: 20px;
    transition: color 0.3s ease;
}

.social-links-minimal a:hover {
    color: var(--accent);
}

.lang-switcher-minimal {
    margin-top: 25px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
}

.lang-switcher-minimal a {
    color: var(--text-secondary);
    text-decoration: none;
}

.lang-switcher-minimal a.active {
    color: var(--accent);
}

.lang-switcher-minimal .sep {
    margin: 0 10px;
    color: #ddd;
}

/* --- FOOTER --- */
.abu-footer {
    background-color: var(--bg-lighter);
    border-top: 1px solid var(--glass-border);
}

.footer-title {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.8rem;
    color: var(--accent);
}

.footer-heading {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 20px;
    height: 2px;
    background-color: var(--accent);
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: var(--bg-light);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--text-secondary);
    margin-right: 10px;
    text-decoration: none;
    transition: all 0.3s transform;
}

.social-icon:hover {
    background: var(--bg-lighter);
    color: var(--accent);
    box-shadow: var(--shadow-soft);
    transform: translateY(-3px);
}

/* --- HERO SECTION (PREMIUM MULTI-SLIDER) --- */
.hero-slider {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    background-color: var(--bg-light);
}

.hero-slides-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.2s;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 5;
}

.hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 1.2s ease;
}

/* Ken Burns Effect */
.ken-burns {
    animation: kenburns 20s infinite alternate linear;
}

@keyframes kenburns {
    0% {
        transform: scale(1) translate(0, 0);
    }

    100% {
        transform: scale(1.15) translate(-2%, -1%);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(251, 250, 248, 0.9) 0%, rgba(251, 250, 248, 0.6) 50%, rgba(251, 250, 248, 0.4) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    padding-top: 60px;
}

.slide-content-box {
    max-width: 650px;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 6vw, 4.8rem);
    font-weight: 500;
    line-height: 1.05;
    margin-bottom: 1.8rem;
    color: var(--text-primary) !important;
}

.hero-desc {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-secondary) !important;
    max-width: 540px;
    margin-bottom: 1rem;
}

/* Custom Buttons */
.btn-abu-primary {
    display: inline-block;
    background-color: var(--text-primary);
    color: #fff !important;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-abu-primary:hover {
    background-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(212, 181, 148, 0.4);
}

.btn-abu-link {
    display: inline-block;
    color: var(--text-primary) !important;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.btn-abu-link:hover {
    color: var(--accent) !important;
    border-bottom-color: var(--accent);
}

/* Animations for slide elements */
.animate-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.hero-slide.active .animate-up {
    opacity: 1;
    transform: translateY(0);
}

.hero-slide.active .curator-badge {
    transition-delay: 0.3s;
}

.hero-slide.active .hero-title {
    transition-delay: 0.5s;
}

.hero-slide.active .hero-desc {
    transition-delay: 0.7s;
}

.hero-slide.active .mt-5 {
    transition-delay: 0.9s;
}

/* Slider Controls */
.hero-controls {
    position: absolute;
    bottom: 60px;
    left: 0;
    width: 100%;
    z-index: 20;
}

.controls-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}

.slider-pagination {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 600;
}

.slider-pagination .current {
    font-size: 1.5rem;
    color: #fff;
}

.slider-pagination .separator {
    color: var(--accent);
    font-size: 1rem;
}

.slider-pagination .total {
    font-size: 1rem;
    color: var(--text-secondary);
}

.slider-arrows {
    display: flex;
    gap: 15px;
}

.slider-arrow {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background: var(--text-primary);
    color: #fff;
    border-color: var(--text-primary);
    transform: scale(1.1);
}

/* Progress Bar */
.hero-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(0, 0, 0, 0.05);
    z-index: 30;
}

.progress-fill {
    height: 100%;
    width: 0;
    background: var(--accent);
    transition: width linear;
}

/* --- VIRTUAL WALL SECTION --- */
.virtual-wall-section {
    padding: 100px 0;
    background: var(--bg-light);
    position: relative;
}

.wall-texture,
.wall-texture-full {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    pointer-events: none;
    background-image: url('data:image/svg+xml,%3Csvg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="%23dcdcdc" fill-opacity="1" fill-rule="evenodd"%3E%3Ccircle cx="3" cy="3" r="1.5"/%3E%3C/g%3E%3C/svg%3E');
}

.art-frame {
    background: #ffffff;
    padding: 15px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    /* Soft edges for frames */
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.5s ease;
    cursor: pointer;
    position: relative;
}

.art-frame:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: var(--shadow-hover);
}

.art-mat {
    padding: 25px;
    background: #FAFAFA;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.02);
    border-radius: 4px;
}

.art-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border-radius: 2px;
}

.art-caption {
    margin-top: 1.5rem;
    text-align: center;
}

.art-caption h4 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: var(--text-primary);
}

.art-caption p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* --- NEWS & ANNOUNCEMENTS SECTION --- */
.news-section {
    padding: 80px 0;
    background: var(--bg-lighter);
}

.news-card {
    background: #ffffff;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-soft);
    overflow: hidden;
    height: 100%;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-soft);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.news-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    color: var(--text-primary);
    padding: 8px 18px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.75rem;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.news-img-wrapper {
    position: relative;
    overflow: hidden;
    padding-top: 60%;
}

.news-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.news-card:hover .news-img-wrapper img {
    transform: scale(1.05);
}

.section-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 500;
    display: block;
    margin-bottom: 1rem;
}

/* --- PAGE HERO FOR INNER PAGES --- */
.page-hero,
.page-hero-artists,
.page-hero-news,
.contact-hero {
    padding: 150px 0 80px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.8) 100%), url('../images/breadcrump-img-2.png') top center/cover no-repeat;
    text-align: center;
    border-bottom: 1px solid var(--glass-border);
}

.page-hero h1,
.page-hero-artists h1,
.page-hero-news h1,
.contact-hero h1 {
    color: #ffffff !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.page-hero .section-subtitle,
.page-hero-artists .section-subtitle,
.page-hero-news .section-subtitle,
.contact-hero .section-subtitle {
    color: var(--accent) !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.page-hero p.text-secondary,
.page-hero-artists p.text-secondary,
.page-hero-news p.text-secondary,
.contact-hero p.text-secondary {
    color: rgba(255, 255, 255, 0.8) !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* --- SERGILER LIST PAGE --- */
.exhibition-card {
    background: #fff;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-soft);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
}

.exhibition-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.exhibition-img {
    height: 280px;
    width: 100%;
    object-fit: cover;
    transition: all 0.7s ease;
}

.exhibition-card:hover .exhibition-img {
    transform: scale(1.04);
}

.exhibition-status {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.active-dot {
    background-color: #4caf7d;
    box-shadow: 0 0 0 3px rgba(76, 175, 125, 0.25);
}

.past-dot {
    background-color: #aaa;
}

.status-active {
    color: #2c6e4a;
}

.status-past {
    color: var(--text-secondary);
}

.exhibition-date {
    color: var(--accent);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 1px;
    font-weight: 500;
}

.curator-info {
    font-size: 0.82rem;
    color: var(--text-secondary);
    border-top: 1px solid var(--glass-border);
    padding-top: 14px;
    margin-top: 14px;
}

.btn-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-arrow:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff !important;
    transform: translateX(3px);
}

/* --- SANATCILAR --- */
.artist-card {
    text-align: center;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    padding: 20px;
    border-radius: var(--radius-soft);
}

.artist-card:hover {
    transform: translateY(-10px);
    background: #fff;
    box-shadow: var(--shadow-hover);
}

.artist-card:hover .artist-img-wrapper {
    transform: scale(1.05);
    border-color: var(--accent);
}

.view-bio-btn {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 15px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.artist-card:hover .view-bio-btn {
    opacity: 1;
    transform: translateY(0);
}

.artist-img-wrapper {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    border: 2px solid var(--glass-border);
    box-shadow: var(--shadow-soft);
    transition: all 0.5s ease;
}

.artist-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- HIGH-END ARTIST MODAL --- */
.premium-modal {
    border: none;
    border-radius: 40px;
    /* More modern, softer edges */
    overflow: hidden;
    background: #fff;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.15);
}

.premium-modal .modal-header {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 10;
}

.premium-modal .btn-close {
    background-color: #fff;
    opacity: 1;
    padding: 15px;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.premium-modal .btn-close:hover {
    transform: rotate(90deg) scale(1.1);
    background-color: var(--accent);
    color: #fff;
}

.modal-artist-side {
    background: linear-gradient(135deg, #FBFaf8 0%, #F5F2EE 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    position: relative;
}

.modal-artist-side::after {
    content: 'ARTIST';
    position: absolute;
    bottom: -20px;
    left: 20px;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.02);
    z-index: 1;
    font-family: var(--font-heading);
    letter-spacing: -5px;
    pointer-events: none;
}

.modal-artist-img-wrapper {
    width: 240px;
    height: 240px;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.modal-artist-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    /* Not a circle, more modern "squircle" */
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.modal-artist-info {
    z-index: 2;
    text-align: center;
}

.modal-artist-info h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.modal-artist-info .artist-title-tag {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    font-weight: 700;
}

.modal-bio-side {
    padding: 80px 60px;
    position: relative;
}

.bio-quote-icon {
    position: absolute;
    top: 50px;
    left: 40px;
    font-size: 4rem;
    color: rgba(212, 181, 148, 0.15);
    font-family: var(--font-serif);
}

.artist-full-bio {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-secondary);
    max-height: 500px;
    overflow-y: auto;
    padding-right: 25px;
    font-weight: 300;
    /* Light weight for elegance */
}

/* Custom Scrollbar for Bio */
.artist-full-bio::-webkit-scrollbar {
    width: 3px;
}

.artist-full-bio::-webkit-scrollbar-track {
    background: transparent;
}

.artist-full-bio::-webkit-scrollbar-thumb {
    background: #eee;
    border-radius: 10px;
}

.artist-full-bio::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* Animation for Modal Content */
.modal.fade .premium-modal {
    transform: translateY(30px);
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal.show .premium-modal {
    transform: translateY(0);
}

/* Staggered entrance for content */
.modal.show .modal-artist-img-wrapper {
    animation: modalFadeInUp 0.8s 0.2s both;
}

.modal.show .modal-artist-info {
    animation: modalFadeInUp 0.8s 0.3s both;
}

.modal.show .modal-bio-side {
    animation: modalFadeInUp 0.8s 0.4s both;
}

@keyframes modalFadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 767px) {
    .modal-artist-side {
        padding: 40px 20px;
    }

    .modal-bio-side {
        padding: 40px 30px;
    }

    .modal-artist-img-wrapper {
        width: 180px;
        height: 180px;
    }

    .modal-artist-info h2 {
        font-size: 1.8rem;
    }
}

.artist-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.artist-card:hover .artist-img-wrapper {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.artist-card:hover .artist-img-wrapper img {
    transform: scale(1.05);
}

.artist-name {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.artist-card:hover .artist-name {
    color: var(--accent);
}

.artist-domain {
    font-size: 0.8rem;
    color: var(--text-secondary);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
}

.artist-bio-brief {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 1rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.artist-card:hover .artist-bio-brief {
    opacity: 1;
    transform: translateY(0);
}

/* --- SANAL DUVAR --- */
.virtual-wall-page {
    padding-top: 100px;
    background: var(--bg-light);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.gallery-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 10;
}

.masonry-grid {
    column-count: 3;
    column-gap: 40px;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 60px;
    display: inline-block;
    width: 100%;
}

.art-frame.interactive:hover::before {
    content: '\f00e';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--bg-lighter);
    background: rgba(0, 0, 0, 0.3);
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 1.5rem;
    z-index: 10;
    opacity: 1;
    backdrop-filter: blur(2px);
}

/* --- HABERLER --- */
.news-list-card {
    background: #fff;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-soft);
    padding: 1.5rem;
    margin-bottom: 2rem;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-soft);
}

.news-list-card a {
    color: var(--text-primary) !important;
}

.news-list-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.news-list-img {
    height: 250px;
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.news-meta {
    font-size: 0.8rem;
    color: var(--text-secondary);
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    display: inline-block;
    font-weight: 500;
}

.pagination .page-link {
    background-color: var(--bg-lighter);
    border-color: var(--glass-border);
    color: var(--text-secondary);
    border-radius: 50% !important;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
}

.pagination .page-item.active .page-link {
    background-color: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.pagination .page-link:hover {
    background-color: var(--bg-light);
}

/* --- ILETISIM --- */
.contact-card {
    background: var(--bg-lighter);
    border: 1px solid var(--glass-border);
    padding: 3.5rem;
    border-radius: var(--radius-soft);
    box-shadow: var(--shadow-soft);
    height: 100%;
}

.contact-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    border: 1px solid var(--glass-border);
}

.form-control-custom {
    background: var(--bg-light);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-primary);
    padding: 1rem 1.2rem;
    transition: all 0.3s;
}

.form-control-custom:focus {
    background: #fff;
    color: var(--text-primary);
    box-shadow: 0 0 0 3px rgba(212, 181, 148, 0.2);
    border-color: var(--accent);
}

.form-control-custom::placeholder {
    color: var(--text-secondary);
    opacity: 0.6;
}

.map-container {
    height: 450px;
    width: 100%;
    border-top: 1px solid var(--glass-border);
    filter: grayscale(80%) opacity(80%);
}

/* --- HELPERS & COMPONENT FIXES (FOR LIGHT THEME) --- */
.fs-7 {
    font-size: 0.85rem !important;
}

.custom-gallery-nav .nav-link {
    border: 1px solid var(--glass-border);
    border-radius: 30px !important;
    margin: 0 5px;
    transition: all 0.3s ease;
    color: var(--text-secondary) !important;
    padding: 0.6rem 1.5rem !important;
}

.custom-gallery-nav .nav-link:hover,
.custom-gallery-nav .nav-link.active {
    background-color: var(--text-primary) !important;
    color: #fff !important;
    border-color: var(--text-primary) !important;
    font-weight: 500;
}

/* Override explicit button classes from content.php for light theme */
.btn-outline-secondary {
    color: var(--text-secondary) !important;
    border-color: var(--glass-border) !important;
    border-radius: 30px;
}

.btn-outline-secondary:hover,
.btn-group .btn.active {
    background-color: var(--text-primary) !important;
    border-color: var(--text-primary) !important;
    color: #fff !important;
}

/* =========================================================
   SERGI DETAY (SINGLE EXHIBITION PAGE)
   ========================================================= */

/* Hero */
.sergi-single-hero {
    position: relative;
    width: 100%;
    height: 72vh;
    min-height: 500px;
    overflow: hidden;
}

.sergi-single-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 8s ease;
}

.sergi-single-hero:hover .sergi-single-hero-img {
    transform: scale(1.04);
}

.sergi-single-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(20, 18, 16, 0.90) 0%, rgba(20, 18, 16, 0.40) 55%, rgba(20, 18, 16, 0.05) 100%);
    display: flex;
    align-items: flex-end;
    padding-bottom: 60px;
}

.sergi-single-hero-overlay .container {
    position: relative;
    z-index: 2;
}

.sergi-breadcrumb {
    display: inline-block;
}

.sergi-breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}

.sergi-breadcrumb a:hover {
    color: var(--accent);
}

.sergi-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 14px;
}

.sergi-single-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 500;
    color: #fff !important;
    line-height: 1.1;
    margin: 0 0 20px;
}

.sergi-single-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.sergi-single-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Body layout */
.sergi-single-body {
    padding-top: 64px;
    padding-bottom: 64px;
}

.sergi-manifesto-title {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 1.2rem;
}

.sergi-manifesto-text {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
}

/* Stats row */
.sergi-stats-row {
    display: flex;
    gap: 0;
    margin-top: 2rem;
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
}

.sergi-stat-box {
    flex: 1;
    padding: 1.5rem 1rem;
    text-align: center;
    border-right: 1px solid var(--glass-border);
    background: #fff;
}

.sergi-stat-box:last-child {
    border-right: none;
}

.sergi-stat-num {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.sergi-stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

/* Visit card */
.sergi-visit-card {
    background: #fff;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-soft);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
}

.sergi-visit-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.sergi-visit-list li {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--glass-border);
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.sergi-visit-list li:last-child {
    border-bottom: none;
}

.visit-icon {
    flex-shrink: 0;
    width: 22px;
    padding-top: 2px;
    text-align: center;
}

.sergi-visit-btn {
    display: block;
    text-align: center;
    background: var(--text-primary);
    color: #fff !important;
    border-radius: 30px;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s;
}

.sergi-visit-btn:hover {
    background: var(--accent);
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 181, 148, 0.35);
}

/* Artworks section */
.sergi-artworks-section {
    padding: 80px 0;
    background: var(--bg-lighter);
    border-top: 1px solid var(--glass-border);
}

/* Participant cards (shared between sergidetay + eserdetay related) */
.participant-card {
    background: #fff;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-soft);
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-soft);
    cursor: pointer;
    text-decoration: none !important;
    display: block;
}

.participant-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent);
}

.participant-thumb-wrap {
    position: relative;
    overflow: hidden;
    height: 230px;
}

.participant-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}

.participant-card:hover .participant-thumb {
    transform: scale(1.06);
}

.participant-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    color: #fff;
    font-size: 1.4rem;
}

.participant-card:hover .participant-overlay {
    opacity: 1;
}

.participant-info {
    padding: 1.2rem 1.4rem;
}

.participant-info h4 {
    color: var(--text-primary);
    font-family: var(--font-serif);
    margin-bottom: 0.2rem;
    font-size: 1.15rem;
    transition: color 0.3s;
}

.participant-card:hover .participant-info h4 {
    color: var(--accent);
}

.participant-title {
    display: block;
    font-size: 0.82rem;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.participant-tech {
    display: block;
    font-size: 0.75rem;
    color: var(--text-secondary);
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

/* Old classes kept for compatibility */
.participant-thumb-old {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

/* =========================================================
   ESER DETAY (SINGLE ARTWORK PAGE)
   ========================================================= */

/* Wall environment */
.ew-wall-env {
    position: relative;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ew-wall-env::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

.ew-wall-env::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.8) 100%);
    pointer-events: none;
    z-index: 1;
}

.ew-wall-spotlight {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 100%;
    background: radial-gradient(ellipse at 50% 0%, rgba(255, 240, 200, 0.25) 0%, transparent 70%);
    pointer-events: none;
    z-index: 2;
}

.ew-painting-frame {
    position: relative;
    z-index: 3;
    max-width: 300px;
    width: 100%;
}

.ew-mat {
    background: #fefefe;
    padding: 5px;
    border: 1px solid #e0ddd8;
    transition: all 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 2;
    transform: rotateX(1deg);
    /* Subtle hanging tilt */
}

.ew-mat::before {
    content: '';
    position: absolute;
    inset: 30px;
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.15);
    pointer-events: none;
    z-index: 5;
}

/* Default Template (Black Wood) */
.template-default .ew-mat {
    background: #fdfdfd;
    box-shadow:
        0 0 0 1px #000,
        0 0 0 12px #1c1a18,
        0 0 0 13px #2d2a26,
        inset 0 0 10px rgba(0, 0, 0, 0.1),
        inset 0 12px 10px -10px rgba(255, 255, 255, 0.1),
        0 25px 50px rgba(0, 0, 0, 0.6),
        0 5px 15px rgba(0, 0, 0, 0.4);
    border: 1px solid #d1cfca;
    border-radius: 2px;
}

/* Classic Template (Ornate Gold) */
.template-classic .ew-mat {
    background: #fffdf7;
    box-shadow:
        0 0 0 2px #8e6d2f,
        0 0 0 15px #d4af37,
        0 0 0 17px #8e6d2f,
        inset 0 0 15px rgba(0, 0, 0, 0.1),
        inset 0 15px 15px -15px rgba(255, 255, 255, 0.4),
        0 30px 60px rgba(0, 0, 0, 0.5),
        0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #c5a059;
    border-radius: 3px;
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.1) 75%, transparent 75%, transparent);
    background-size: 4px 4px;
    /* Subtle texture for the mat */
}

/* Modern Template (Minimalist White) */
.template-modern .ew-mat {
    background: #ffffff;
    box-shadow:
        0 0 0 1px #ddd,
        0 0 0 14px #fff,
        0 0 0 15px #eee,
        0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
    padding: 45px;
}

.template-modern .ew-mat::before {
    inset: 45px;
    box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.05);
}

/* None Template (Frameless) */
.template-none .ew-mat {
    background: transparent;
    padding: 0;
    box-shadow: none;
    border: none;
}

.template-none .ew-mat::before {
    display: none;
}

.template-none .ew-painting-frame {
    /* Wider default for frameless artworks */
}

.template-none .ew-painting-frame:hover .ew-mat {
    transform: scale(1.03);
    /* Slightly more zoom for frameless */
}

/* Video Artworks Specifics */
.ew-painting-frame.is-video {
    max-width: 650px;
}

.ew-painting-frame.is-video .ew-mat {
    padding: 15px;
}

.template-none.ew-wall-env .ew-painting-frame.is-video .ew-mat {
    padding: 0;
}

/* Template Environment Refinements */
.template-classic.ew-wall-env::after {
    background: rgba(44, 36, 29, 0.55);
}

.template-modern.ew-wall-env::after {
    background: rgba(250, 250, 250, 0.75);
}

.template-modern.ew-wall-env .ew-wall-spotlight {
    background: radial-gradient(ellipse at 50% 0%, rgba(255, 255, 255, 0.6) 0%, transparent 75%);
}

.template-modern .ew-nameplate {
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 50%, #f0f0f0 100%);
    color: #333;
    border: 1px solid #ddd;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.ew-painting-frame:hover .ew-mat {
    transform: scale(1.015);
}

.ew-canvas {
    width: 100%;
    height: auto;
    display: block;
}

.ew-nameplate {
    background: linear-gradient(135deg, #8c8c8c, #e6e6e6, #595959, #f2f2f2, #737373);
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5); /* Add text shadow for better readability on metallic background */
    text-align: center;
    padding: 10px 25px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border-radius: 1px;
    box-shadow:
        inset 0 1px 1px rgba(255, 255, 255, 0.5),
        0 4px 12px rgba(0, 0, 0, 0.4),
        0 1px 2px rgba(0, 0, 0, 0.3);
    border: 1px solid #555;
    margin-top: 35px;
    position: relative;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

.ew-nameplate::before,
.ew-nameplate::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.5);
}

.ew-nameplate::before {
    left: 8px;
}

.ew-nameplate::after {
    right: 8px;
}

.ew-nameplate span {
    display: block;
    width: 100%;
}

.ew-nameplate span:first-child {
    font-weight: 800;
    font-size: 0.75rem;
}

.ew-nameplate span:last-child {
    font-size: 0.6rem;
    opacity: 0.9;
}

/* Info section */
.ew-info-wrap {
    padding-top: 60px;
    padding-bottom: 80px;
}

.ew-back-btn {
    display: inline-flex;
    align-items: center;
    color: var(--text-secondary) !important;
    font-size: 0.85rem;
    text-decoration: none;
    margin-bottom: 2rem;
    transition: color 0.2s;
}

.ew-back-btn:hover {
    color: var(--accent) !important;
}

.ew-info-card {
    background: #fff;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-soft);
    padding: 3rem;
    box-shadow: var(--shadow-soft);
    margin-top: -30px;
}

.ew-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--text-primary);
    margin-bottom: 0.4rem;
}

.ew-artist-name {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--accent);
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 1.8rem;
}

.ew-description {
    font-size: 1.02rem;
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 1rem;
}

/* Specs card */
.ew-specs-card {
    background: var(--bg-light);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
}

.ew-specs-heading {
    font-size: 1.15rem;
    color: var(--text-primary);
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 1rem;
    margin-bottom: 1.2rem !important;
}

.ew-spec-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid var(--glass-border);
    font-size: 0.88rem;
    gap: 12px;
}

.ew-spec-row:last-child {
    border-bottom: none;
}

.ew-spec-label {
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    white-space: nowrap;
    flex-shrink: 0;
}

.ew-spec-value {
    color: var(--text-primary);
    font-weight: 500;
    text-align: right;
}

/* Related artworks */
.ew-related-section {
    padding: 80px 0;
    background: var(--bg-lighter);
    border-top: 1px solid var(--glass-border);
}

/* --- GOLD THEME TOKENS --- */
.btn-outline-gold {
    color: #d4af37;
    border: 1px solid #d4af37;
    transition: all 0.3s ease;
}

.btn-outline-gold:hover {
    background: #d4af37;
    color: #000;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.radius-1 {
    border-radius: 15px !important;
}

.hover-zoom {
    transition: transform 0.5s ease;
}

.hover-zoom:hover {
    transform: scale(1.05);
}

.transition-all {
    transition: all 0.3s ease;
}

.hover-gold:hover {
    color: #d4af37 !important;
}

/* --- NEWS DETAIL PAGE --- */
.news-detail-hero {
    padding: 120px 0 80px;
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url('https://images.unsplash.com/photo-1547826039-bfc35e0f1ea8?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
}

.news-hero-title {
    font-size: 2.2em;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    color: #d4af37;
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
    font-weight: 600;
}

.hero-cover-wrapper {
    position: relative;
    z-index: 2;
}

.hero-cover-img {
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    border: 2px solid rgba(212, 175, 55, 0.5);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    transform: rotate(2deg);
    transition: transform 0.5s ease;
}

.hero-cover-img:hover {
    transform: rotate(0deg) scale(1.02);
}

.breadcrumb-item+.breadcrumb-item::before {
    display: none;
}
.breadcrumb-item {
    margin-right: 10px;
}

/* --- ABU BREADCRUMB --- */
.abu-breadcrumb-area {
    position: absolute;
    top: 90px;
    left: 0;
    width: 100%;
    z-index: 50;
}

.abu-breadcrumb-list {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.abu-breadcrumb-link {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    padding: 5px 15px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    transition: all 0.3s;
    background: rgba(0,0,0,0.3);
}

.abu-breadcrumb-link:hover {
    color: #ffffff;
    background: rgba(0,0,0,0.5);
    border-color: rgba(255,255,255,0.4);
}

.abu-breadcrumb-active {
    color: #ffffff;
    padding: 5px 15px;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 20px;
    background: rgba(255,255,255,0.15);
    font-weight: 500;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.news-content {
    line-height: 2;
    font-size: 1.2em;
    color: #000000;
    margin: 0 auto;
    font-weight: 400;
}

.news-content p {
    margin-bottom: 2rem;
    letter-spacing: 0.2px;
}

.news-content h2,
.news-content h3 {
    color: #d4af37;
    font-family: 'Playfair Display', serif;
    margin-top: 4rem;
    margin-bottom: 1.8rem;
    font-weight: 700;
    line-height: 1.3;
}

.news-content strong {
    color: #ffffff;
    font-weight: 600;
}

.news-content blockquote {
    border-left: 4px solid #d4af37;
    padding-left: 30px;
    margin: 3rem 0;
    font-style: italic;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #ffffff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 40px
}

.gallery-item {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-item:hover {
    transform: translateY(-10px);
    border-color: #d4af37;
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.doc-card {
    background: rgba(255, 255, 255, 0.03);
    border-left: 5px solid #d4af37;
    padding: 25px;
    border-radius: 0 20px 20px 0;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.doc-card:hover {
    background: rgba(212, 175, 55, 0.08);
    transform: translateX(10px);
    border-left-width: 8px;
}

.doc-icon {
    font-size: 2.5rem;
    color: #d4af37;
    margin-right: 25px;
}

.hero-slider {
    background-color: #000;
}

.hero-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-title {
    color: #fff !important;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-desc {
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem !important;
}

.btn-abu-link {
    color: #fff !important;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.curator-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background-color: var(--accent);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(212, 181, 148, 0.3);
}

.slider-dots {
    display: flex;
    gap: 15px;
    align-items: center;
}

.slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.slider-dots .dot.active {
    background: var(--accent);
    transform: scale(1.3);
    border-color: rgba(255, 255, 255, 0.5);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- LANGUAGE SWITCHER PILL --- */
.lang-switch-pill {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 4px;
    backdrop-filter: blur(5px);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.lang-switch-pill .lang-option {
    color: var(--text-secondary) !important;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 20px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lang-switch-pill .lang-option:hover {
    color: var(--text-primary) !important;
}

.lang-switch-pill .lang-option.active {
    background: var(--text-primary);
    color: #fff !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.abu-header-minimal {
    background: linear-gradient(to bottom, black, transparent);
}

.vg-room {
    --gallery-shift: 0px;
    --art-shift: 0px;
    --light-shift: 0px;
    position: relative;
    min-height: 100vh;
    padding: 94px 24px 42px;
    overflow: hidden;
    isolation: isolate;
    background: #050505;
}

.vg-room::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -4;
    background-image: url('../images/virtual-gallery/realistic-gallery-wall.png');
    background-size: cover;
    background-position: center calc(50% + var(--gallery-shift));
    filter: brightness(.32) saturate(.72);
    transform: scale(1.06);
    transform-origin: center center;
    transition: filter 1700ms ease, transform 2200ms ease;
}

.vg-room.is-awake::before {
    filter: brightness(.82) saturate(.96);
    transform: scale(1.04);
}

.vg-room::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -3;
    pointer-events: none;
    background:
            radial-gradient(circle at 50% 43%, rgba(255,245,214,0) 0 12%, rgba(255,238,191,.16) 22%, rgba(0,0,0,.18) 45%, rgba(0,0,0,.78) 88%),
            linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.46));
    opacity: .98;
    transition: opacity 1400ms ease 520ms;
}

.vg-room.is-awake::after {
    opacity: .48;
}

.vg-blackout {
    position: absolute;
    inset: 0;
    z-index: 8;
    pointer-events: none;
    background: #020202;
    opacity: .74;
    transition: opacity 1250ms ease 180ms;
}

.vg-room.is-awake .vg-blackout {
    opacity: 0;
}

.vg-beam {
    position: absolute;
    top: 152px;
    left: 48.16%;
    z-index: 4;
    width: min(26vw, 234px);
    height: min(58vh, 560px);
    transform: translateX(-50%) translateY(var(--light-shift));
    clip-path: polygon(45% 0, 55% 0, 88% 102%, 13% 104%);
    background: radial-gradient(ellipse at 50% 72%, rgba(255, 241, 198, .28), rgba(255, 241, 198, 0) 58%), linear-gradient(180deg, rgba(255, 248, 221, .58), rgba(255, 238, 190, .22) 46%, rgba(255, 238, 190, 0));
    filter: blur(1.4px);
    mix-blend-mode: screen;
    pointer-events: none;
    opacity: 0;
    transition: opacity 1050ms ease 650ms;
}

.vg-room.is-awake .vg-beam {
    opacity: .78;
}

.vg-wall-glow {
    position: absolute;
    left: 50%;
    top: 23%;
    z-index: 1;
    width: min(34vw, 470px);
    height: min(42vh, 390px);
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(255,236,188,.54), rgba(255,236,188,.13) 38%, rgba(255,236,188,0) 72%);
    filter: blur(20px);
    pointer-events: none;
    opacity: 0;
    transform: translateX(-50%) translateY(var(--light-shift));
    transition: opacity 1300ms ease 930ms;
}

.vg-room.is-awake .vg-wall-glow {
    opacity: .82;
}

.vg-stage {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: calc(100vh - 136px);
    align-items: center;
    justify-content: center;
    perspective: 1400px;
}

.vg-art-object {
    --frame-w: min(32vw, 300px);
    --frame-h: 39vh;
    --media-gap: 54px;
    position: relative;
    z-index: 3;
    display: flex;
    width: min(92vw, 680px);
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: translateY(calc(-12px + var(--art-shift))) scale(.985);
    transform-style: preserve-3d;
    transition: opacity 900ms ease 1050ms, transform 1100ms cubic-bezier(.2,.8,.2,1) 1050ms;
}

.vg-room.is-awake .vg-art-object {
    opacity: 1;
    transform: translateY(calc(-46px + var(--art-shift))) scale(1);
    right: 40px;
}

.vg-art-object.is-landscape {
    --frame-w: min(56vw, 640px);
    --frame-h: 43vh;
    --media-gap: 48px;
}

.vg-art-object.is-video {
    --frame-w: min(50vw, 560px);
    --frame-h: 42vh;
    --media-gap: 48px;
}

.vg-art-object.is-portrait {
    --frame-w: min(32vw, 300px);
    --frame-h: 39vh;
}

.vg-frame {
    position: relative;
    display: inline-flex;
    max-width: var(--frame-w);
    max-height: var(--frame-h);
    padding: clamp(9px, .95vw, 14px);
    border-radius: 2px;
    cursor: zoom-in;
    background:
            linear-gradient(135deg, rgba(255,255,255,.16), transparent 30%, rgba(0,0,0,.18) 72%, rgba(255,255,255,.08)),
            linear-gradient(135deg, #13110f, #342d25 36%, #0d0c0a 68%, #4b4033);
    box-shadow:
            10px 15px 25px rgba(0,0,0,.3),
            0 5px 10px rgba(0,0,0,.2),
            inset 0 0 0 3px rgba(0,0,0,.42),
            inset 0 0 0 8px rgba(255,255,255,.045);

    transition: all 500ms cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, box-shadow;
}

.vg-frame:hover {
    transform: translateY(0px) scale(1.01);
    filter: saturate(1.02) brightness(1.01);
    box-shadow:
            20px 25px 40px rgba(0,0,0,.4),
            0 12px 20px rgba(0,0,0,.25),
            inset 0 0 0 3px rgba(0,0,0,.42),
            inset 0 0 0 8px rgba(255,255,255,.045);
}

.vg-frame::before {
    content: "";
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(255,255,255,.18);
    pointer-events: none;
}

.vg-frame::after {
    content: "";
    position: absolute;
    inset: 13px;
    background: linear-gradient(112deg, rgba(255,255,255,.18), transparent 28%);
    mix-blend-mode: screen;
    pointer-events: none;
    opacity: .34;
}

.vg-mat {
    position: relative;
    display: flex;
    max-width: calc(var(--frame-w) - 30px);
    max-height: calc(var(--frame-h) - 30px);
    padding: clamp(7px, .8vw, 12px);
    background: linear-gradient(135deg, #faf7ee, #d8d0c1);
    box-shadow: inset 0 0 18px rgba(29, 22, 15, .24);
}

.vg-mat::after {
    content: "";
    position: absolute;
    inset: clamp(7px, .8vw, 12px);
    z-index: 2;
    pointer-events: none;
    background:
            radial-gradient(ellipse at 50% 18%, rgba(255,244,210,.34), rgba(255,244,210,.12) 34%, rgba(255,244,210,0) 70%),
            linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,0) 46%);
    mix-blend-mode: screen;
    opacity: 0;
    transition: opacity 950ms ease 1250ms;
}

.vg-room.is-awake .vg-mat::after {
    opacity: .86;
}

.vg-canvas,
.vg-video {
    position: relative;
    z-index: 1;
    display: block;
    max-width: calc(var(--frame-w) - var(--media-gap));
    max-height: calc(var(--frame-h) - var(--media-gap));
    width: auto;
    height: auto;
    object-fit: contain;
    background: #111;
}

.vg-video {
    width: calc(var(--frame-w) - var(--media-gap));
    aspect-ratio: 16 / 9;
    max-width: calc(var(--frame-w) - var(--media-gap));
}

.vg-art-link {
    position: relative;
    z-index: 1;
    display: flex;
    max-width: 100%;
    max-height: 100%;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.vg-zoom-hint {
    position: absolute;
    left: 50%;
    bottom: 16px;
    z-index: 5;
    color: rgba(255,255,255,.86);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    text-shadow: 0 1px 4px rgba(0,0,0,.48);
    opacity: 0;
    transform: translateX(-50%) translateY(6px);
    transition: opacity 320ms ease, transform 320ms ease;
    pointer-events: none;
    white-space: nowrap;
}

.vg-frame:hover .vg-zoom-hint {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.vg-video-play {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 4;
    display: flex;
    width: 54px;
    height: 54px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.56);
    border-radius: 50%;
    color: rgba(255,255,255,.92);
    background: rgba(0,0,0,.24);
    transform: translate(-50%, -50%);
    transition: transform 320ms ease, background 320ms ease;
    pointer-events: none;
}

.vg-frame:hover .vg-video-play {
    background: rgba(0,0,0,.36);
    transform: translate(-50%, -50%) scale(1.06);
}

.vg-floor-shadow {
    width: min(24vw, 270px);
    height: 20px;
    margin-top: -2px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(0,0,0,.5), rgba(0,0,0,.12) 43%, rgba(0,0,0,0) 74%);
    filter: blur(7px);
    opacity: 0;
    transition: opacity 1100ms ease 1400ms;
}

.vg-room.is-awake .vg-floor-shadow {
    opacity: 1;
}

.vg-nameplate {
    position: absolute;
    left: 50%;
    bottom: clamp(50px, 7vh, 76px);
    z-index: 12;
    width: min(72vw, 720px);
    padding: 0;
    color: rgba(238, 234, 224, .92);
    text-align: center;
    text-transform: none;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 0;
    transform: translateX(-50%) translateY(10px);
    pointer-events: auto;
    transition: opacity 850ms ease 1650ms, transform 850ms ease 1650ms;
}

.vg-room.is-awake .vg-nameplate {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.vg-nameplate strong,
.vg-nameplate span {
    display: block;
    color: rgba(238, 234, 224, .92);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.35;
    letter-spacing: .02em;
    text-shadow: 0 1px 2px rgba(0,0,0,.24);
}

.vg-nameplate strong {
    font-size: clamp(16px, 1.5vw, 22px);
    font-weight: 700;
    letter-spacing: .24em;
    text-transform: uppercase;
    animation: vgNameSpacing 1500ms ease 1700ms both;
}

.vg-nameplate span {
    margin-top: 8px;
    font-size: clamp(11px, .85vw, 14px);
    font-weight: 400;
    opacity: .82;
    letter-spacing: .12em;
    animation: vgNameSpacingSoft 1500ms ease 1780ms both;
}

.vg-room-links {
    display: flex;
    margin-top: 18px;
    align-items: center;
    justify-content: center;
    gap: clamp(22px, 4vw, 58px);
    opacity: 0;
    transform: translateY(8px);
    animation: vgRoomLinksIn 950ms ease 2050ms both;
}

.vg-room-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: rgba(238, 234, 224, .82);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .16em;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 240ms ease, transform 240ms ease;
}

.vg-room-link i {
    font-size: 12px;
    opacity: .76;
}

.vg-room-link:hover {
    color: #fff;
    transform: translateY(-2px);
}

@keyframes vgNameSpacing {
    0% { letter-spacing: .02em; opacity: 0; }
    100% { letter-spacing: .24em; opacity: 1; }
}

@keyframes vgNameSpacingSoft {
    0% { letter-spacing: .02em; opacity: 0; }
    100% { letter-spacing: .12em; opacity: .82; }
}

@keyframes vgRoomLinksIn {
    0% { opacity: 0; transform: translateY(8px); }
    100% { opacity: 1; transform: translateY(0); }
}

.vg-side-nav {
    position: absolute;
    top: 50%;
    z-index: 7;
    display: inline-flex;
    width: 150px;
    height: 112px;
    align-items: center;
    justify-content: center;
    gap: 18px;
    color: rgba(238, 234, 224, .78);
    text-decoration: none;
    opacity: 0;
    transform: translateY(calc(-50% + 8px));
    transition: color 280ms ease, opacity 800ms ease 1500ms, transform 800ms ease 1500ms;
}

.vg-room.is-awake .vg-side-nav {
    opacity: 1;
    transform: translateY(-50%);
}

.vg-side-nav-prev { left: clamp(26px, 7vw, 136px); }
.vg-side-nav-next { right: clamp(26px, 7vw, 136px); }

.vg-side-nav::before {
    content: "";
    display: block;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border-top: 1px solid currentColor;
    border-left: 1px solid currentColor;
    transition: transform 280ms ease;
}

.vg-side-nav-label {
    display: block;
    max-width: 82px;
    color: currentColor;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: .18em;
    line-height: 1.45;
    text-transform: uppercase;
    opacity: .74;
    transition: opacity 280ms ease, transform 280ms ease;
}

.vg-side-nav-prev::before {
    transform: rotate(-45deg);
}

.vg-side-nav-next::before {
    order: 2;
    transform: rotate(135deg);
}

.vg-side-nav-next .vg-side-nav-label {
    order: 1;
    text-align: right;
}

.vg-side-nav:hover {
    color: #fff;
}

.vg-side-nav:hover .vg-side-nav-label {
    opacity: 1;
}

.vg-side-nav-prev:hover::before {
    transform: translateX(-5px) rotate(-45deg);
}

.vg-side-nav-next:hover::before {
    transform: translateX(5px) rotate(135deg);
}

.vg-info-wrap {
    padding: 76px 0;
    background: #f4f0e7;
}

.vg-info-card {
    padding: clamp(28px, 5vw, 58px);
    background: #fff;
    border: 1px solid rgba(20, 20, 20, .08);
    box-shadow: 0 18px 45px rgba(26, 22, 15, .08);
}

.vg-title {
    margin: 8px 0 6px;
    color: #171717;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1;
}

.vg-artist {
    margin-bottom: 24px;
    color: #8a7145;
    font-size: 18px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.vg-description {
    color: #37332d;
    font-size: 17px;
    line-height: 1.8;
}

.vg-spec-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 32px;
}

.vg-spec {
    padding: 15px 16px;
    background: #f8f5ef;
    border-left: 3px solid #b99a5f;
}

.vg-spec small {
    display: block;
    margin-bottom: 4px;
    color: #8a7145;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.vg-spec span {
    color: #25221d;
    font-size: 15px;
}

.vg-related-section {
    position: relative;
    padding: clamp(76px, 9vw, 128px) 0 clamp(92px, 10vw, 140px);
    overflow: hidden;
    background:
            linear-gradient(180deg, rgba(255,255,255,.9), rgba(246,244,238,.96)),
            repeating-linear-gradient(90deg, rgba(0,0,0,0) 0 180px, rgba(0,0,0,.018) 181px 182px);
}

.vg-related-section::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 28px;
    background: linear-gradient(180deg, #1d1b18, #070707);
    opacity: .9;
}

.vg-related-heading {
    margin-bottom: clamp(42px, 6vw, 72px);
}

.vg-related-wall {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(34px, 5vw, 76px);
    align-items: start;
}

.vg-wall-art {
    --wall-frame-w: 300px;
    --wall-frame-ratio: 1.36;
    --wall-tilt-x: 1.2deg;
    --wall-tilt-z: -.45deg;
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: center;
    color: #191713;
    text-decoration: none;
    perspective: 900px;
}

.vg-wall-frame {
    position: relative;
    display: inline-flex;
    width: min(100%, var(--wall-frame-w));
    height: auto;
    aspect-ratio: var(--wall-frame-ratio);
    padding: 5px;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    background:
            linear-gradient(135deg, rgba(255,255,255,.16), transparent 34%, rgba(0,0,0,.16) 72%, rgba(255,255,255,.05)),
            linear-gradient(135deg, #1b1915, #332d25 44%, #14120f);
    box-shadow:
            10px 15px 28px rgba(34,30,24,.16),
            0 5px 11px rgba(34,30,24,.13),
            inset 0 0 0 1px rgba(0,0,0,.52),
            inset 0 0 0 4px rgba(255,255,255,.05);
    transform: rotateX(var(--wall-tilt-x)) rotateZ(var(--wall-tilt-z));
    transform-origin: 50% 16%;
    transition: transform 620ms cubic-bezier(.16, 1, .3, 1), box-shadow 620ms cubic-bezier(.16, 1, .3, 1);
}

.vg-wall-frame::after {
    content: "";
    position: absolute;
    inset: 8px -13px -13px 12px;
    z-index: -1;
    border-radius: 2px;
    background: rgba(34,30,24,.2);
    filter: blur(14px);
    transform: translateZ(-1px);
    pointer-events: none;
}

.vg-wall-art:hover .vg-wall-frame {
    transform: translateY(-7px) scale(1.03) rotateX(calc(var(--wall-tilt-x) * .55)) rotateZ(calc(var(--wall-tilt-z) * .55));
    box-shadow:
            14px 20px 34px rgba(34,30,24,.19),
            0 8px 14px rgba(34,30,24,.15),
            inset 0 0 0 1px rgba(0,0,0,.52),
            inset 0 0 0 4px rgba(255,255,255,.05);
}

.vg-wall-mat {
    display: flex;
    width: calc(100% - 12px);
    height: calc(100% - 12px);
    padding: 6px;
    box-sizing: border-box;
    background: linear-gradient(135deg, #faf8f1, #ded7ca);
    overflow: hidden;
    align-items: center;
    justify-content: center;
}

.vg-wall-thumb {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.vg-wall-art.is-wall-landscape {
    --wall-frame-w: 320px;
    --wall-frame-ratio: 1.72;
}

.vg-wall-art.is-wall-portrait {
    --wall-frame-w: 220px;
    --wall-frame-ratio: .72;
}

.vg-wall-art.is-wall-square {
    --wall-frame-w: 260px;
    --wall-frame-ratio: 1;
}

.vg-wall-art:nth-child(3n + 2) {
    --wall-tilt-x: .7deg;
    --wall-tilt-z: .35deg;
}

.vg-wall-art:nth-child(3n) {
    --wall-tilt-x: 1.4deg;
    --wall-tilt-z: .55deg;
}

.vg-wall-label {
    width: min(100%, var(--wall-frame-w));
    margin-top: 24px;
    text-align: center;
}

.vg-wall-label strong,
.vg-wall-label span {
    display: block;
    color: rgba(29,26,21,.84);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.35;
}

.vg-wall-label strong {
    font-size: 12px;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.vg-wall-label span {
    margin-top: 5px;
    font-size: 11px;
    opacity: .68;
}

@media (prefers-reduced-motion: reduce) {
    .vg-room,
    .vg-room *,
    .vg-room::before,
    .vg-room::after {
        transition: none !important;
    }
}

@media (max-width: 767px) {
    .vg-room {
        min-height: 720px;
        padding: 92px 14px 34px;
    }

    .vg-stage {
        min-height: 610px;
    }

    .vg-frame {
        max-width: var(--frame-w);
        max-height: var(--frame-h);
    }

    .vg-mat,
    .vg-canvas {
        max-width: calc(var(--frame-w) - var(--media-gap));
        max-height: calc(var(--frame-h) - var(--media-gap));
    }

    .vg-art-object {
        --frame-w: min(68vw, 340px);
        --frame-h: 42vh;
        --media-gap: 42px;
    }

    .vg-art-object.is-landscape,
    .vg-art-object.is-video {
        --frame-w: min(86vw, 520px);
        --frame-h: 34vh;
        --media-gap: 42px;
    }

    .vg-art-object.is-portrait {
        --frame-w: min(78vw, 390px);
        --frame-h: min(54vh, 560px);
        --media-gap: 34px;
    }

    .vg-nameplate {
        bottom: 34px;
        width: min(78vw, 360px);
    }

    .vg-room-links {
        flex-direction: column;
        gap: 10px;
    }

    .vg-side-nav {
        width: 84px;
        height: 70px;
        gap: 10px;
    }

    .vg-side-nav::before {
        width: 24px;
        height: 24px;
        flex-basis: 24px;
    }

    .vg-side-nav-label {
        max-width: 44px;
        font-size: 8px;
        letter-spacing: .12em;
    }

    .vg-side-nav-prev { left: 12px; }
    .vg-side-nav-next { right: 12px; }

    .vg-spec-grid {
        grid-template-columns: 1fr;
    }

    .vg-related-wall {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .vg-wall-frame {
        width: min(78vw, var(--wall-frame-w));
    }
}