﻿/* ==========================================================================
   NATASHA ATELIER FASHION SHOW 2026 - PREMIUM CSS SYSTEM
   ========================================================================== */

:root {
    /* Refined Color Palette */
    --ink:      #0C0A08;
    --ink-2:    #161310;
    --ink-3:    #1E1B18;
    --gold:     #D4AF37;       /* More vibrant premium gold */
    --gold-l:   #F3E5AB;
    --gold-d:   #AA8C2C;
    --white:    #FDFCFA;
    --muted:    #9A8F7F;
    
    /* Gradients and Glassmorphism */
    --glass-bg: rgba(22, 19, 16, 0.4);
    --glass-border: rgba(212, 175, 55, 0.15);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --gold-grad: linear-gradient(135deg, #D4AF37 0%, #AA8C2C 100%);
    
    /* Typography */
    --disp:     'Playfair Display', serif;
    --body:     'Jost', sans-serif;
    
    /* Spacing */
    --section-pad: clamp(50px, 7vw, 100px);
}

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

html {
    font-family: var(--body);
    background-color: var(--ink);
    color: var(--white);
    scroll-behavior: auto; /* Lenis handles smooth scroll */
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    cursor: none; 
}

@media (pointer: coarse) { body { cursor: auto; } }
@media (pointer: coarse) { a, button, input, select, textarea { cursor: pointer; } }
a { color: inherit; text-decoration: none; cursor: none; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4, h5, h6 { font-family: var(--disp); font-weight: 400; }

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
.font-disp { font-family: var(--disp); }
.font-body { font-family: var(--body); }
.text-gold { color: var(--gold); }
.text-white { color: var(--white); }
.text-muted { color: var(--muted); }
.text-center { text-align: center; }
.italic { font-style: italic; }
.uppercase { text-transform: uppercase; }

.eyebrow {
    font-size: clamp(12px, 1.5vw, 14px);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

h2 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 2rem;
    font-weight: 500;
}

p {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    line-height: 1.7;
    color: var(--muted);
    margin-bottom: 1.8rem;
}

/* ==========================================================================
   COMPONENTS
   ========================================================================== */
/* Buttons */
button, .btn {
    font-family: var(--body);
    border: none;
    background: none;
    cursor: none;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-gold {
    background: var(--gold-grad);
    color: var(--ink);
    padding: 18px 45px;
    position: relative; 
    border-radius: 4px;
}

.btn-gold:hover { 
    transform: translateY(-4px); 
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.25); 
}

.btn-outline {
    border: 1px solid rgba(253, 252, 250, 0.3);
    color: var(--white);
    padding: 18px 45px;
    border-radius: 4px;
    backdrop-filter: blur(5px);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--ink);
    border-color: var(--white);
}

/* Forms */
input, textarea, select {
    width: 100%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--white);
    padding: 20px 25px;
    font-family: var(--body);
    font-size: 16px;
    transition: all 0.3s ease;
    outline: none;
    border-radius: 4px;
}

input:focus, textarea:focus, select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
    background: rgba(22, 19, 16, 0.8);
}

textarea { resize: vertical; min-height: 150px; }
::placeholder { color: rgba(154, 143, 127, 0.6); }

/* Glass Card Mixin-like Class */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    box-shadow: var(--glass-shadow);
}

/* ==========================================================================
   LAYOUT & SECTIONS
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 5%;
}

section {
    padding-top: var(--section-pad);
    padding-bottom: var(--section-pad);
    position: relative;
    overflow: hidden; /* prevents overlapping elements from breaking layout */
}

/* Header */
header {
    position: fixed;
    top: 0; left: 0; width: 100%;
    padding: 35px 0;
    z-index: 100;
    transition: all 0.5s ease;
}

header.scrolled {
    padding: 15px 0;
    background: rgba(12, 10, 8, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: var(--disp); font-weight: 700; font-size: clamp(1.2rem, 2vw, 1.5rem); letter-spacing: 3px; }
.logo span { color: var(--gold); font-style: italic; }

.nav-links { display: flex; align-items: center; gap: 40px; }
.nav-links a { font-size: 13px; text-transform: uppercase; letter-spacing: 2px; transition: color 0.3s; }
.nav-links a:hover { color: var(--gold); }
.nav-links .btn-gold { padding: 12px 25px; font-size: 12px; }

.mobile-menu-btn {
    display: none; flex-direction: column; gap: 6px; z-index: 101; cursor: pointer;
}
.mobile-menu-btn span { display: block; width: 30px; height: 2px; background: var(--white); transition: 0.3s; }

/* Preloader */
#preloader {
    position: fixed; inset: 0; background: var(--ink); z-index: 9999;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
}
.preloader-text-wrapper { overflow: hidden; }
.preloader-text {
    font-family: var(--disp); font-size: clamp(2rem, 5vw, 4rem); letter-spacing: 5px;
    color: transparent; -webkit-text-stroke: 1px var(--gold);
}
.preloader-line { width: 0%; height: 1px; background: var(--gold); margin-top: 30px; max-width: 400px; }

/* Hero Section */
.hero {
    height: 100vh; min-height: 700px;
    display: flex; align-items: center; justify-content: center;
    text-align: center; position: relative; overflow: hidden;
}
#particles-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; }
.hero-glow {
    position: absolute; inset: 0;
    background: radial-gradient(circle at center, rgba(212,175,55,0.1) 0%, transparent 70%);
    z-index: 2; animation: pulse 8s infinite alternate;
}
@keyframes pulse { 0% { opacity: 0.4; } 100% { opacity: 1; } }

.hero-content { position: relative; z-index: 10; max-width: 1000px; margin-top: 50px; }
.hero-h1 {
    font-size: clamp(4.5rem, 12vw, 140px);
    font-weight: 700; line-height: 1; margin: 15px 0 25px;
    perspective: 1000px;
}
.hero-h1 span.italic { color: var(--gold); font-weight: 400; }
.hero-divider { width: 0px; height: 1px; background: var(--gold); margin: 40px auto; }
.hero-date { font-size: clamp(14px, 2vw, 18px); letter-spacing: 0.3em; margin-bottom: 15px; }
.hero-buttons { margin-top: 50px; display: flex; gap: 20px; justify-content: center; }

.scroll-indicator {
    position: absolute; bottom: 50px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 15px; z-index: 10;
}
.scroll-indicator p { font-size: 11px; text-transform: uppercase; letter-spacing: 3px; margin: 0; }
.scroll-line { width: 1px; height: 60px; background: rgba(212,175,55,0.2); position: relative; overflow: hidden; }
.scroll-line::after {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 50%;
    background: var(--gold); animation: dropDown 2s infinite ease-in-out;
}
@keyframes dropDown { 0% { transform: translateY(-100%); } 100% { transform: translateY(200%); } }

/* Ticker */
.ticker-section {
    background: var(--gold-grad); color: var(--ink); padding: 20px 0;
    overflow: hidden; position: relative; white-space: nowrap;
}
.ticker-wrapper { display: flex; width: max-content; animation: ticker 40s linear infinite; }
.ticker-section:hover .ticker-wrapper { animation-play-state: paused; }
.ticker-content { font-family: var(--body); font-weight: 500; font-size: 15px; letter-spacing: 0.25em; padding-right: 50px; }
@keyframes ticker { 0% { transform: translate3d(0, 0, 0); } 100% { transform: translate3d(-50%, 0, 0); } }

/* Countdown */
.countdown-section {
    background: linear-gradient(to bottom, var(--ink), var(--ink-2));
    text-align: center; border-bottom: 1px solid rgba(255,255,255,0.05);
}
.countdown-grid { display: flex; justify-content: center; gap: clamp(15px, 3vw, 40px); margin-top: 50px; flex-wrap: wrap; }
.countdown-box {
    background: var(--glass-bg); border: 1px solid var(--glass-border);
    padding: 35px 25px; min-width: clamp(120px, 15vw, 160px); border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.countdown-num {
    font-family: var(--disp); font-size: clamp(3rem, 6vw, 5rem); color: var(--gold);
    line-height: 1; margin-bottom: 15px; display: inline-block;
}
.countdown-label { font-size: 12px; text-transform: uppercase; color: var(--muted); letter-spacing: 3px; font-weight: 500; }
.flip-anim { animation: flipTop 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
@keyframes flipTop { 0% { transform: rotateX(90deg); opacity: 0; } 100% { transform: rotateX(0deg); opacity: 1; } }

/* About Grid Layouts (Shared) */
.about-grid, .organizer-grid, .contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(40px, 8vw, 100px);
    align-items: center;
}

/* Stats */
.stats-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 30px; margin-top: 50px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.05);
}
.stat-num { font-family: var(--disp); font-size: clamp(2.5rem, 4vw, 3.5rem); color: var(--white); margin-bottom: 10px; }
.stat-label { font-size: 12px; text-transform: uppercase; color: var(--gold); letter-spacing: 2px; }

/* Organizer Section */
.organizer-section { background: var(--ink-2); }
.image-wrapper { position: relative; width: 100%; max-width: 500px; margin: 0 auto; }
.image-wrapper::before {
    content: ''; position: absolute; bottom: -20px; right: -20px;
    width: 100%; height: 100%; border: 1px solid var(--gold); z-index: 1; transition: all 0.5s ease;
}
.image-wrapper img { position: relative; z-index: 2; width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.image-wrapper:hover::before { bottom: -30px; right: -30px; }

.link-gold {
    color: var(--gold); text-decoration: none; border-bottom: 1px solid var(--gold);
    padding-bottom: 4px; display: inline-block; margin-top: 30px; letter-spacing: 1px;
    transition: all 0.3s;
}
.link-gold:hover { color: var(--white); border-color: var(--white); }

/* Face of the Show */
.face-section {
    background: radial-gradient(circle at center, #1E1912 0%, var(--ink) 100%);
    border-top: 1px solid rgba(212,175,55,0.2);
    border-bottom: 1px solid rgba(212,175,55,0.2);
    position: relative;
}
.face-badge {
    display: inline-block; padding: 10px 20px; border: 1px solid var(--gold);
    color: var(--gold); font-size: 11px; letter-spacing: 3px; margin-bottom: 40px;
    background: rgba(212,175,55,0.05);
}
.face-h2 { font-size: clamp(3.5rem, 8vw, 7rem); line-height: 1; margin-bottom: 2rem; }
.face-image-container { position: relative; width: 100%; max-width: 600px; margin: 0 auto; }
.face-image-container img { aspect-ratio: 4/5; object-fit: cover; width: 100%; border-radius: 4px; }
.face-label {
    position: absolute; bottom: -30px; left: -30px;
    background: var(--gold-grad); color: var(--ink); padding: 20px 40px;
    font-family: var(--disp); font-weight: 700; font-size: clamp(1rem, 2vw, 1.4rem);
    letter-spacing: 2px; box-shadow: 0 15px 30px rgba(0,0,0,0.4); z-index: 5;
}

/* Models Grid */
.models-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 40px; margin-top: 80px;
}
.model-card {
    position: relative; aspect-ratio: 3/4; overflow: hidden; border-radius: 8px;
    background: var(--ink-3); cursor: none;
}
@media (pointer: coarse) { .model-card { cursor: pointer; } }
.model-card.featured { grid-column: span 2; grid-row: span 2; }
.model-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1); }
.model-placeholder {
    width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
    font-family: var(--disp); font-size: 5rem; color: var(--gold); background: var(--ink-2);
}
.model-overlay {
    position: absolute; inset: 0; background: linear-gradient(to top, rgba(12,10,8,0.95) 0%, transparent 60%);
    opacity: 0.8; transition: opacity 0.5s ease;
}
.model-info { position: absolute; bottom: 0; left: 0; width: 100%; padding: 40px 30px; transition: transform 0.4s ease; }
.model-name { font-family: var(--disp); font-size: clamp(1.5rem, 2.5vw, 2rem); margin-bottom: 8px; }
.model-role { font-size: 11px; color: var(--gold); text-transform: uppercase; letter-spacing: 2px; }
.model-badge {
    position: absolute; top: 25px; right: 25px; background: var(--gold-grad); color: var(--ink);
    font-size: 10px; padding: 6px 12px; font-weight: 600; letter-spacing: 1px; border-radius: 20px;
}

.model-card:hover .model-img { transform: scale(1.08); }
.model-card:hover .model-overlay { opacity: 1; }
.model-card:hover .model-info { transform: translateY(-8px); }

/* Gallery Masonry */
.gallery-grid { columns: 3; column-gap: 20px; margin-top: 80px; }
.gallery-item { break-inside: avoid; margin-bottom: 20px; position: relative; overflow: hidden; border-radius: 8px; cursor: none; }
@media (pointer: coarse) { .gallery-item { cursor: pointer; } }
.gallery-item img { width: 100%; display: block; transition: transform 0.5s ease; }
.gallery-placeholder {
    aspect-ratio: 1; background: var(--ink-2); display: flex; align-items: center;
    justify-content: center; border: 1px solid var(--border); color: var(--muted); border-radius: 8px;
}
.gallery-overlay {
    position: absolute; inset: 0; background: rgba(212,175,55,0.3);
    backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: all 0.4s ease;
}
.gallery-overlay svg { width: 40px; height: 40px; stroke: var(--white); transform: scale(0.5); transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover .gallery-overlay svg { transform: scale(1); }

/* Lightbox */
#lightbox {
    position: fixed; inset: 0; background: rgba(12, 10, 8, 0.98); z-index: 10000;
    display: none; align-items: center; justify-content: center; opacity: 0;
}
#lightbox.active { display: flex; animation: fadeIn 0.4s forwards; }
.lb-content { position: relative; max-width: 90vw; max-height: 90vh; }
.lb-img { max-width: 100%; max-height: 90vh; transform: scale(0.9); transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1); border-radius: 4px; }
#lightbox.active .lb-img { transform: scale(1); }
.lb-close, .lb-prev, .lb-next { position: absolute; background: none; border: none; color: var(--white); font-size: 3rem; cursor: none; padding: 20px; transition: color 0.3s; z-index: 10001; }
@media (pointer: coarse) { .lb-close, .lb-prev, .lb-next { cursor: pointer; } }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { color: var(--gold); }
.lb-close { top: -60px; right: -60px; }
.lb-prev { left: -80px; top: 50%; transform: translateY(-50%); }
.lb-next { right: -80px; top: 50%; transform: translateY(-50%); }

/* Sponsors Packages */
.sponsors-section { background: url('data:image/svg+xml;utf8,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="%230C0A08"/><circle cx="50" cy="50" r="1" fill="%23D4AF37" opacity="0.1"/></svg>') repeat; }

.packages-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px; margin-top: 80px; align-items: stretch;
}
.package-card {
    background: var(--glass-bg); backdrop-filter: blur(15px); border: 1px solid var(--glass-border);
    padding: 50px 30px; text-align: center; position: relative; transition: all 0.4s ease;
    height: 100%; display: flex; flex-direction: column; border-radius: 12px;
}
.package-card.featured {
    transform: scale(1.05); border-color: var(--gold);
    box-shadow: 0 20px 50px rgba(212,175,55,0.15); z-index: 2; background: var(--ink);
}
.package-badge {
    position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%);
    background: var(--gold-grad); color: var(--ink); font-size: 11px; font-weight: 600;
    padding: 6px 16px; letter-spacing: 2px; white-space: nowrap; border-radius: 20px;
}
.pkg-icon { font-size: 32px; color: var(--gold); margin-bottom: 25px; }
.pkg-name { font-size: 1.6rem; margin-bottom: 35px; letter-spacing: 1px; }
.pkg-features { text-align: left; margin-bottom: 40px; flex-grow: 1; }
.pkg-features li { font-size: 15px; margin-bottom: 18px; color: var(--muted); padding-left: 25px; position: relative; }
.pkg-features li::before { content: 'âœ“'; position: absolute; left: 0; color: var(--gold); font-size: 12px; }
.pkg-price { font-style: italic; color: var(--gold); margin-bottom: 25px; font-size: 1.1rem; }
.pkg-btn {
    width: 100%; padding: 16px; border: 1px solid rgba(212,175,55,0.3); background: transparent;
    color: var(--gold); transition: all 0.4s; font-family: var(--body); border-radius: 4px;
}
.pkg-btn:hover, .package-card.featured .pkg-btn { background: var(--gold-grad); color: var(--ink); border-color: transparent; }

/* Contact Section */
.contact-form { padding: 50px; border-radius: 12px; }
.form-row { display: flex; gap: 30px; margin-bottom: 25px; }
.form-group { flex: 1; }
.submit-btn { width: 100%; margin-top: 10px; }
.success-msg { display: none; text-align: center; padding: 40px; color: var(--gold); font-size: 1.2rem; }

/* Footer */
footer { border-top: 1px solid rgba(255,255,255,0.05); padding: 80px 0 40px; text-align: center; }
.footer-logo { font-size: 2.5rem; margin-bottom: 20px; }
.footer-links { display: flex; justify-content: center; gap: 40px; margin: 40px 0; flex-wrap: wrap; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 40px; display: flex; justify-content: space-between; color: var(--muted); font-size: 14px; }

/* ==========================================================================
   MAGNETIC CURSOR
   ========================================================================== */
.cursor-dot, .cursor-ring { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 10000; }
.cursor-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; transform: translate(-50%, -50%); }
.cursor-ring { width: 40px; height: 40px; border: 1px solid var(--gold); border-radius: 50%; transform: translate(-50%, -50%); transition: width 0.3s, height 0.3s, background-color 0.3s, border-color 0.3s; }

/* ==========================================================================
   RESPONSIVE DESIGN (FIXING OVERLAPS)
   ========================================================================== */

/* Tablet & Smaller Desktop */
@media (max-width: 1024px) {
    .models-grid { grid-template-columns: repeat(2, 1fr); }
    .model-card.featured { grid-column: span 2; grid-row: span 1; }
    .gallery-grid { columns: 2; }
    
    .packages-grid { grid-template-columns: repeat(2, 1fr); }
    .package-card.featured { grid-column: span 2; max-width: 500px; margin: 0 auto; transform: scale(1.02); }
    
    /* Ensure the face section stacks properly if it's too cramped */
    .face-section .about-grid { gap: 50px; }
}

/* Mobile */
@media (max-width: 768px) {
    :root { --section-pad: 80px; }
    
    .nav-links {
        position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
        background: rgba(12, 10, 8, 0.98); flex-direction: column; justify-content: center;
        align-items: center; font-size: 1.5rem; opacity: 0; pointer-events: none; transition: opacity 0.4s;
    }
    .nav-links.active { opacity: 1; pointer-events: auto; }
    .nav-links .btn-gold { margin-top: 30px; font-size: 1.2rem; }
    .mobile-menu-btn { display: flex; }
    .mobile-menu-btn.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
    .mobile-menu-btn.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    .countdown-grid { gap: 15px; }
    .countdown-box { min-width: 45%; padding: 25px 15px; }

    /* Fix grids overlapping by using column stacking */
    .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 50px; }
    
    /* Force proper stacking for sections with images */
    .organizer-section .organizer-grid { display: flex; flex-direction: column-reverse; gap: 50px; }
    .face-section .about-grid { display: flex; flex-direction: column; gap: 60px; }
    
    .face-image-container { margin-top: 20px; }
    .face-label { left: 10px; bottom: -20px; padding: 15px 25px; font-size: 1rem; }
    
    .models-grid { grid-template-columns: 1fr; gap: 30px; }
    .model-card.featured { grid-column: span 1; }
    
    .gallery-grid { columns: 1; }
    
    .packages-grid { grid-template-columns: 1fr; gap: 30px; }
    .package-card.featured { grid-column: span 1; transform: scale(1); max-width: 100%; }
    
    .contact-form { padding: 30px 20px; }
    .form-row { flex-direction: column; gap: 20px; }
    
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }

    /* Hide custom cursor on mobile */
    .cursor-dot, .cursor-ring { display: none !important; }
    
    /* Adjust lightbox controls */
    .lb-close { top: -40px; right: 0; }
    .lb-prev { left: 0; }
    .lb-next { right: 0; }
}

@media (max-width: 480px) {
    .hero-buttons { flex-direction: column; width: 100%; padding: 0 20px; }
    .btn-gold, .btn-outline { width: 100%; }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Placeholder Box ("SLIKE NA CEKANJU") */
.placeholder-box {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ink-2);
    border: 1px dashed var(--gold);
    color: var(--gold);
    font-family: var(--disp);
    font-size: clamp(1rem, 2vw, 1.5rem);
    text-align: center;
    letter-spacing: 2px;
    padding: 20px;
    width: 100%;
    height: 100%;
    min-height: 200px;
    box-shadow: inset 0 0 50px rgba(0,0,0,0.5);
    border-radius: 4px;
}
.placeholder-box::before {
    content: '📸';
    display: block;
    font-size: 2rem;
    margin-bottom: 10px;
    opacity: 0.5;
}
.placeholder-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

