/* ===================================================
   LLITTL.com - Mid-Century Neon Showroom
   ================================================== */

/* --- RESET & BASE --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-snap-type: y proximity;
    scroll-behavior: smooth;
}

body {
    background: #0d0908;
    color: #e8ddd0;
    font-family: 'Libre Baskerville', serif;
    font-size: 17px;
    line-height: 1.75;
    overflow-x: hidden;
}

/* --- NEON FLICKER ANIMATION --- */
@keyframes neonFlicker {
    0% { opacity: 1; }
    5% { opacity: 0.85; }
    10% { opacity: 1; }
    15% { opacity: 0.9; }
    20% { opacity: 1; }
    100% { opacity: 1; }
}

.neon-flicker {
    animation: neonFlicker 4s ease-in-out infinite;
}

/* --- STARBURST PULSE --- */
@keyframes starburstPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

.starburst-pulse {
    animation: starburstPulse 3s ease-in-out infinite;
}

/* --- SCULPTURE ROTATION --- */
@keyframes sculptureRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* --- MARBLE VEIN TEXTURE (used as background) --- */
.marble-texture-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.08;
    background-image:
        repeating-linear-gradient(
            110deg,
            transparent,
            transparent 40px,
            rgba(139, 92, 246, 0.3) 40px,
            rgba(139, 92, 246, 0.3) 41px,
            transparent 41px,
            transparent 120px
        ),
        repeating-linear-gradient(
            70deg,
            transparent,
            transparent 80px,
            rgba(139, 92, 246, 0.2) 80px,
            rgba(139, 92, 246, 0.2) 81px,
            transparent 81px,
            transparent 200px
        );
}

/* --- WALNUT GRAIN TEXTURE --- */
.walnut-grain {
    background-image:
        repeating-linear-gradient(
            85deg,
            transparent,
            transparent 8px,
            rgba(168, 144, 128, 0.03) 8px,
            rgba(168, 144, 128, 0.03) 9px
        );
}

/* ===================================================
   SIDEBAR
   =================================================== */
#sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 280px;
    height: 100vh;
    background: #2a1810;
    z-index: 100;
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    opacity: 0;
    transition: transform 600ms ease-out, opacity 600ms ease-out;
    /* Walnut grain texture */
    background-image:
        repeating-linear-gradient(
            85deg,
            transparent,
            transparent 8px,
            rgba(168, 144, 128, 0.03) 8px,
            rgba(168, 144, 128, 0.03) 9px
        );
}

#sidebar.visible {
    transform: translateX(0);
    opacity: 1;
}

#sidebar-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 40px 24px;
    overflow-y: auto;
}

/* --- Sidebar Logo --- */
#sidebar-logo {
    text-align: center;
    margin-bottom: 32px;
}

.logo-text {
    font-family: 'Roboto Slab', serif;
    font-weight: 700;
    font-size: 36px;
    letter-spacing: 0.06em;
    color: #ff2d9b;
    text-shadow:
        0 0 10px rgba(255, 45, 155, 0.6),
        0 0 30px rgba(255, 45, 155, 0.3),
        0 0 60px rgba(255, 45, 155, 0.15);
    display: inline-block;
}

/* --- Marble Divider --- */
.marble-divider {
    height: 1px;
    margin: 20px 0;
    background: linear-gradient(
        90deg,
        transparent 0%,
        #f2ede8 20%,
        rgba(139, 92, 246, 0.3) 50%,
        #f2ede8 80%,
        transparent 100%
    );
    opacity: 0.3;
}

/* --- Sidebar Navigation --- */
#sidebar-nav {
    list-style: none;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 16px 0;
}

#sidebar-nav li {
    position: relative;
}

.nav-link {
    display: block;
    padding: 12px 16px;
    text-decoration: none;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #a89080;
    transition: color 200ms ease, box-shadow 300ms ease;
    position: relative;
    overflow: hidden;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 16px;
    right: 16px;
    height: 1px;
    background: #00f0ff;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 300ms ease-out;
    box-shadow: 0 0 6px rgba(0, 240, 255, 0.4);
}

.nav-link:hover {
    color: #ff2d9b;
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.nav-link.active {
    color: #ff2d9b;
    box-shadow: 0 0 6px rgba(255, 45, 155, 0.3);
}

.nav-label {
    color: #00f0ff;
    margin-right: 10px;
    font-family: 'Roboto Slab', serif;
    font-weight: 700;
    font-size: 12px;
}

/* --- Odometer Counter --- */
#odometer {
    text-align: center;
    margin-top: 20px;
}

.odometer-label {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 600;
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #a89080;
    display: block;
    margin-bottom: 10px;
}

.odometer-digits {
    display: flex;
    justify-content: center;
    gap: 3px;
}

.odometer-digit {
    width: 22px;
    height: 30px;
    overflow: hidden;
    background: #0d0908;
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 3px;
    position: relative;
}

.digit-roll {
    display: flex;
    flex-direction: column;
    transition: transform 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.digit-roll span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 30px;
    font-family: 'Roboto Slab', serif;
    font-weight: 700;
    font-size: 16px;
    color: #00f0ff;
    text-shadow: 0 0 8px rgba(0, 240, 255, 0.5);
}

/* --- Sidebar Starburst --- */
.sidebar-starburst {
    text-align: center;
    margin-top: 20px;
    animation: starburstPulse 3s ease-in-out infinite;
}

/* ===================================================
   MOBILE HEADER
   =================================================== */
#mobile-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: #2a1810;
    z-index: 200;
    align-items: center;
    padding: 0 20px;
}

.mobile-logo {
    font-family: 'Roboto Slab', serif;
    font-weight: 700;
    font-size: 24px;
    color: #ff2d9b;
    text-shadow:
        0 0 10px rgba(255, 45, 155, 0.6),
        0 0 30px rgba(255, 45, 155, 0.3);
    margin-left: 16px;
}

#hamburger {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

#hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #e8ddd0;
    transition: all 300ms ease;
}

#hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

#hamburger.open span:nth-child(2) {
    opacity: 0;
}

#hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===================================================
   MAIN CONTENT
   =================================================== */
#main-content {
    margin-left: 280px;
}

/* --- Scene (Section) Base --- */
.scene {
    min-height: 100vh;
    scroll-snap-align: start;
    position: relative;
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

/* --- Section Number (Corner Ticker) --- */
.section-number {
    position: absolute;
    top: 40px;
    right: 60px;
    font-family: 'Roboto Slab', serif;
    font-weight: 700;
    font-size: 96px;
    color: rgba(255, 45, 155, 0.08);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.section-number .ticker {
    display: inline-block;
}

/* --- Stamp Headline Animation --- */
.stamp-headline {
    font-family: 'Roboto Slab', serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.stamp-headline .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
}

.stamp-headline .char.stamped {
    opacity: 1;
    transform: translateY(0);
    transition: transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1), opacity 300ms ease;
}

/* Space character needs explicit width */
.stamp-headline .char-space {
    width: 0.3em;
}

/* ===================================================
   SECTION 1: THE SHOWROOM (HERO)
   =================================================== */
#showroom {
    background: #0d0908;
    align-items: center;
    text-align: center;
    padding-top: 120px;
}

#hero-title {
    font-size: 96px;
    color: #ff2d9b;
    text-shadow:
        0 0 20px rgba(255, 45, 155, 0.4),
        0 0 60px rgba(255, 45, 155, 0.15);
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

#hero-subtitle {
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    font-size: 20px;
    color: #e8ddd0;
    opacity: 0;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

#hero-subtitle.typed {
    opacity: 1;
    transition: opacity 800ms ease;
}

.showroom-content {
    position: relative;
    z-index: 2;
}

.scene-starburst {
    position: absolute;
    top: 120px;
    left: 80px;
    z-index: 1;
    opacity: 0.6;
}

/* --- Marble Pedestal --- */
.pedestal-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.marble-pedestal {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pedestal-top {
    width: 140px;
    height: 12px;
    background: #f2ede8;
    border-radius: 4px 4px 0 0;
    box-shadow:
        0 -2px 20px rgba(255, 45, 155, 0.15),
        0 -2px 40px rgba(0, 240, 255, 0.08);
    /* Marble vein effect */
    background-image:
        linear-gradient(110deg, transparent 30%, rgba(139, 92, 246, 0.1) 50%, transparent 70%);
    background-color: #f2ede8;
}

.pedestal-body {
    width: 120px;
    height: 80px;
    background: #f2ede8;
    border-radius: 0 0 6px 6px;
    background-image:
        repeating-linear-gradient(
            100deg,
            transparent,
            transparent 25px,
            rgba(139, 92, 246, 0.06) 25px,
            rgba(139, 92, 246, 0.06) 26px,
            transparent 26px,
            transparent 60px
        );
    background-color: #f2ede8;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.5),
        0 2px 20px rgba(255, 45, 155, 0.1);
}

.small-pedestal .pedestal-top {
    width: 100px;
    height: 8px;
}

.small-pedestal .pedestal-body {
    width: 80px;
    height: 50px;
}

/* --- Neon Sculpture --- */
.neon-sculpture {
    margin-bottom: 10px;
    filter: drop-shadow(0 0 15px rgba(255, 45, 155, 0.4)) drop-shadow(0 0 30px rgba(0, 240, 255, 0.2));
}

.neon-sculpture.rotating svg {
    animation: sculptureRotate 20s linear infinite;
}

/* ===================================================
   SECTION 2: THE GALLERY
   =================================================== */
#gallery {
    background: #0d0908;
    padding-bottom: 120px;
}

.gallery-headline {
    font-size: 64px;
    color: #00f0ff;
    text-shadow:
        0 0 20px rgba(0, 240, 255, 0.3),
        0 0 60px rgba(0, 240, 255, 0.1);
    margin-bottom: 80px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 40px 40px;
    max-width: 1100px;
}

.gallery-grid .gallery-item:nth-child(3),
.gallery-grid .gallery-item:nth-child(5) {
    /* odd-index small items */
}

/* Alternate rows: swap columns */
.gallery-grid .gallery-item:nth-child(3) {
    grid-column: 1;
}
.gallery-grid .gallery-item:nth-child(4) {
    grid-column: 2;
}

/* Row 2 is reversed: 40/60 */
.gallery-grid .gallery-item:nth-child(3),
.gallery-grid .gallery-item:nth-child(4) {
    /* auto placement handles this, override grid */
}

.gallery-item {
    position: relative;
    padding: 40px;
    background: rgba(42, 24, 16, 0.4);
    border-radius: 8px;
    border: 1px solid rgba(255, 45, 155, 0.06);
    transition: box-shadow 300ms ease;
}

.gallery-item:hover {
    box-shadow: 0 0 40px rgba(255, 45, 155, 0.15);
}

.gallery-large {
    /* Slight overlap effect */
    margin-top: -10px;
}

.gallery-small {
    margin-top: 20px;
}

.gallery-object {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 24px;
}

.neon-object {
    margin-bottom: 10px;
    filter: drop-shadow(0 0 10px rgba(255, 45, 155, 0.3));
    transition: filter 300ms ease;
}

.gallery-item:hover .neon-object {
    filter: drop-shadow(0 0 25px rgba(255, 45, 155, 0.5)) drop-shadow(0 0 40px rgba(0, 240, 255, 0.3));
}

.neon-object svg {
    transition: transform 300ms ease;
}

.neon-object.rotating svg {
    animation: sculptureRotate 15s linear infinite;
}

.gallery-item:hover .neon-object.rotating svg {
    animation-duration: 7.5s;
}

.gallery-caption {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 12px;
    letter-spacing: 0.12em;
    color: #a89080;
    line-height: 1.6;
}

.caption-num {
    font-family: 'Roboto Slab', serif;
    font-weight: 700;
    color: #00f0ff;
    font-size: 11px;
    margin-right: 8px;
    text-shadow: 0 0 6px rgba(0, 240, 255, 0.3);
}

.caption-text em {
    color: #e8ddd0;
    font-family: 'Libre Baskerville', serif;
}

/* Marble divider between gallery rows - done via pseudo element on grid */
.gallery-grid::after {
    content: '';
    grid-column: 1 / -1;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        #f2ede8 15%,
        rgba(139, 92, 246, 0.3) 40%,
        #f2ede8 60%,
        rgba(139, 92, 246, 0.2) 80%,
        transparent 100%
    );
    opacity: 0.15;
    order: 3;
}

/* ===================================================
   SECTION 3: THE LOUNGE
   =================================================== */
#lounge {
    background: #0d0908;
    align-items: center;
    text-align: center;
    position: relative;
}

.lounge-content {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.lounge-headline {
    font-size: 56px;
    color: #ff2d9b;
    text-shadow:
        0 0 20px rgba(255, 45, 155, 0.3),
        0 0 50px rgba(255, 45, 155, 0.1);
    margin-bottom: 60px;
}

/* --- Word Ticker --- */
.word-ticker-container {
    height: 60px;
    overflow: hidden;
    margin-bottom: 50px;
    position: relative;
}

.word-ticker {
    position: relative;
    height: 60px;
}

.ticker-word {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Roboto Slab', serif;
    font-weight: 700;
    font-size: 36px;
    color: #c8ff00;
    text-shadow:
        0 0 15px rgba(200, 255, 0, 0.4),
        0 0 40px rgba(200, 255, 0, 0.15);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 500ms cubic-bezier(0.34, 1.56, 0.64, 1), opacity 400ms ease;
}

.ticker-word.active {
    transform: translateY(0);
    opacity: 1;
}

.ticker-word.exiting {
    transform: translateY(-100%);
    opacity: 0;
}

.lounge-text {
    max-width: 600px;
    margin: 0 auto 40px;
    color: #e8ddd0;
    font-size: 17px;
    line-height: 1.85;
}

.lounge-text em {
    color: #e8ddd0;
}

.lounge-neon-bar {
    margin-top: 40px;
    box-shadow: 0 0 20px rgba(255, 45, 155, 0.3), 0 0 40px rgba(255, 45, 155, 0.1);
}

/* ===================================================
   SECTION 4: THE ARCHIVE
   =================================================== */
#archive {
    background: #0d0908;
    padding-bottom: 160px;
}

.archive-headline {
    font-size: 64px;
    color: #8b5cf6;
    text-shadow:
        0 0 20px rgba(139, 92, 246, 0.4),
        0 0 50px rgba(139, 92, 246, 0.15);
    margin-bottom: 80px;
    text-align: center;
}

/* --- Timeline --- */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline-spine {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        #00f0ff 10%,
        #ff2d9b 50%,
        #8b5cf6 90%,
        transparent 100%
    );
    box-shadow:
        0 0 10px rgba(0, 240, 255, 0.3),
        0 0 20px rgba(255, 45, 155, 0.15);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 80px;
    position: relative;
}

.timeline-left {
    flex-direction: row-reverse;
    text-align: right;
}

.timeline-right {
    flex-direction: row;
    text-align: left;
}

.timeline-node {
    flex-shrink: 0;
    width: 60px;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.timeline-left .timeline-node {
    margin-left: calc(50% - 30px);
}

.timeline-right .timeline-node {
    margin-left: calc(50% - 30px);
}

.timeline-content {
    flex: 1;
    max-width: calc(50% - 60px);
    padding: 0 30px;
}

.timeline-left .timeline-content {
    padding-right: 30px;
    padding-left: 0;
}

.timeline-right .timeline-content {
    padding-left: 30px;
    padding-right: 0;
}

.small-headline {
    font-size: 24px;
    color: #e8ddd0;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

.timeline-content p {
    color: #a89080;
    font-size: 15px;
    line-height: 1.75;
}

.timeline-content p em {
    color: #e8ddd0;
    font-style: italic;
}

/* --- Marble Sphere Nodes --- */
.marble-sphere {
    position: relative;
    width: 40px;
    height: 40px;
}

.sphere-body {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #f2ede8, #e8ddd0 40%, #a89080 100%);
    box-shadow:
        inset -4px -4px 8px rgba(0, 0, 0, 0.3),
        0 4px 15px rgba(0, 0, 0, 0.5);
    /* Marble vein effect */
    background-image:
        radial-gradient(circle at 35% 35%, #f2ede8, #e8ddd0 40%, #a89080 100%),
        linear-gradient(120deg, transparent 40%, rgba(139, 92, 246, 0.15) 50%, transparent 60%);
}

.neon-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid transparent;
    transform: translate(-50%, -50%);
    animation: sculptureRotate 6s linear infinite;
}

.ring-magenta {
    border-color: #ff2d9b;
    box-shadow: 0 0 10px rgba(255, 45, 155, 0.4), 0 0 20px rgba(255, 45, 155, 0.15);
}

.ring-cyan {
    border-color: #00f0ff;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.4), 0 0 20px rgba(0, 240, 255, 0.15);
}

.ring-chartreuse {
    border-color: #c8ff00;
    box-shadow: 0 0 10px rgba(200, 255, 0, 0.4), 0 0 20px rgba(200, 255, 0, 0.15);
}

.ring-violet {
    border-color: #8b5cf6;
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.4), 0 0 20px rgba(139, 92, 246, 0.15);
}

/* ===================================================
   CLICK STARBURST EFFECT
   =================================================== */
.click-starburst {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transform: scale(0);
    transition: none;
}

.click-starburst.burst {
    opacity: 1;
    transform: scale(1.2);
    animation: burstOut 400ms ease-out forwards;
}

@keyframes burstOut {
    0% {
        opacity: 1;
        transform: scale(0);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
    100% {
        opacity: 0;
        transform: scale(1.5);
    }
}

/* ===================================================
   MARBLE HORIZONTAL RULE
   =================================================== */
.marble-rule {
    height: 2px;
    border: none;
    background: linear-gradient(
        90deg,
        transparent 0%,
        #f2ede8 10%,
        rgba(139, 92, 246, 0.4) 30%,
        #f2ede8 50%,
        rgba(139, 92, 246, 0.3) 70%,
        #f2ede8 90%,
        transparent 100%
    );
    opacity: 0.2;
    margin: 0;
}

/* ===================================================
   COLUMN FRAGMENT DECORATIONS (between sections)
   =================================================== */
.scene::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        #f2ede8 15%,
        rgba(139, 92, 246, 0.3) 40%,
        #f2ede8 60%,
        rgba(139, 92, 246, 0.2) 80%,
        transparent 100%
    );
    opacity: 0.12;
}

/* ===================================================
   RESPONSIVE: MOBILE < 768px
   =================================================== */
@media (max-width: 767px) {
    #sidebar {
        position: fixed;
        width: 280px;
        height: 100vh;
        top: 60px;
        transform: translateX(-100%);
        z-index: 150;
    }

    #sidebar.visible {
        transform: translateX(-100%);
    }

    #sidebar.mobile-open {
        transform: translateX(0);
    }

    #mobile-header {
        display: flex;
    }

    #main-content {
        margin-left: 0;
        padding-top: 60px;
    }

    .scene {
        padding: 60px 24px;
    }

    #hero-title {
        font-size: 56px;
    }

    .gallery-headline,
    .lounge-headline,
    .archive-headline {
        font-size: 40px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-large,
    .gallery-small {
        margin-top: 0;
    }

    .section-number {
        font-size: 60px;
        top: 20px;
        right: 20px;
    }

    .scene-starburst {
        top: 70px;
        left: 24px;
    }

    /* Timeline single column */
    .timeline-spine {
        left: 30px;
    }

    .timeline-item {
        flex-direction: row !important;
        text-align: left !important;
    }

    .timeline-left .timeline-node,
    .timeline-right .timeline-node {
        margin-left: 0;
        margin-right: 20px;
    }

    .timeline-content {
        max-width: 100%;
        padding: 0 0 0 20px !important;
    }

    .timeline-left .timeline-content {
        padding-left: 20px !important;
        padding-right: 0 !important;
    }

    .word-ticker-container {
        height: 50px;
    }

    .ticker-word {
        font-size: 28px;
        height: 50px;
    }
}

/* ===================================================
   SCROLLBAR STYLING
   =================================================== */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #0d0908;
}

::-webkit-scrollbar-thumb {
    background: #2a1810;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 45, 155, 0.3);
}

/* ===================================================
   HOVERED 3D OBJECTS - GLOW INTENSIFY
   =================================================== */
.gallery-item:hover {
    box-shadow:
        0 0 20px rgba(255, 45, 155, 0.15),
        0 0 40px rgba(255, 45, 155, 0.05);
}

/* ===================================================
   IONIC COLUMN FRAGMENT SVG (decorative, between sections)
   =================================================== */
.column-fragment {
    position: absolute;
    bottom: -20px;
    opacity: 0.15;
    z-index: 1;
}

.column-fragment-left {
    left: 60px;
}

.column-fragment-right {
    right: 60px;
}
