/* ─── PROJECT PAGE (project-template.html) inline styles ────────────── */
@media (max-width: 768px) {
    img { max-width: 100%; height: auto; }
    .proj-visit-btn { width: 100%; justify-content: center; box-sizing: border-box; }
}
#proj-hero-photo { background-size: cover; background-position: center center; background-repeat: no-repeat; }
@media (max-width: 768px) {
    #proj-hero-photo { background-position: center 20% !important; background-size: 85% auto !important; background-repeat: no-repeat !important; background-color: #0d0d0d; }
    #proj-hero { min-height: 100svh; }
}
.mockup-placeholder { background: linear-gradient(135deg, #0a1200, #1a2400, #0d1800); }
.proj-visit-btn { display: inline-flex; align-items: center; gap: 8px; background: var(--accent-color, #C2D10F); color: #010101; padding: 12px 28px; border-radius: 12px; font-family: 'Inter', sans-serif; font-weight: 700; font-size: 14px; text-decoration: none; text-transform: uppercase; letter-spacing: 0.08em; margin-top: 32px; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.proj-visit-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(194, 209, 15, 0.3); }

.mockup-screens-scroll { display: flex; overflow-x: auto; gap: 16px; padding: 0; scroll-snap-type: x mandatory; scroll-behavior: smooth; scrollbar-width: thin; scrollbar-color: var(--accent-color, #C2D10F) #0a0a0a; -webkit-overflow-scrolling: touch; }
.mockup-screens-scroll::-webkit-scrollbar { height: 8px; }
.mockup-screens-scroll::-webkit-scrollbar-track { background: #0a0a0a; border-radius: 4px; }
.mockup-screens-scroll::-webkit-scrollbar-thumb { background: var(--accent-color, #C2D10F); border-radius: 4px; }
.mockup-screen-item { flex: 0 0 100%; aspect-ratio: 16 / 10; height: auto; max-height: 600px; scroll-snap-align: start; overflow: hidden !important; position: relative; touch-action: pan-x; }
.mockup-screen-item img { height: 100% !important; width: 100% !important; display: block !important; object-fit: cover !important; object-position: top center !important; }
.mockup-controls { position: relative; width: 100%; margin-top: 15px; display: flex; flex-direction: column; align-items: center; gap: 12px; }
#scroll-hint { font-family: 'DM Sans', sans-serif; color: var(--accent-color, #C2D10F); font-size: 11px; text-transform: uppercase; letter-spacing: 0.15em; opacity: 1; transition: opacity 0.5s ease, transform 0.5s ease; }
.dot-indicators { display: flex; gap: 8px; justify-content: center; }
.dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255, 255, 255, 0.3); transition: background 0.3s ease, transform 0.3s ease; }
.dot.active { background: var(--accent-color, #C2D10F); transform: scale(1.3); }
.mockup-arrows { display: none; }
@media (min-width: 1025px) {
    .mockup-arrows { display: block; }
    .m-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; background: rgba(0, 0, 0, 0.4); border: 1px solid rgba(194, 209, 15, 0.2); color: #C2D10F; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 5; transition: all 0.3s ease; backdrop-filter: blur(5px); }
    .m-arrow:hover { background: #C2D10F; color: #010101; border-color: #C2D10F; }
    .m-arrow.prev { left: -60px; }
    .m-arrow.next { right: -60px; }
    #scroll-hint { display: none; }
}
@media (max-width: 768px) {
    .m-arrow { display: none !important; }
}
