/* ===== BLOG SECTION ===== */
.blog {
    padding: 60px 0 40px 0;
    background: var(--background, #181818);
}
.blog__container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}
.blog__title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    text-align: center;
    color: var(--primary, #e63946);
    letter-spacing: 1px;
}
.blog__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 2rem;
}
.blog__post {
    background: var(--card-bg, #232323);
    border-radius: 18px;
    box-shadow: 0 4px 24px 0 rgba(0,0,0,0.10);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid rgba(0,0,0,0.07);
}
.blog__post:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 32px 0 rgba(0,0,0,0.16);
}
.blog__img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
}
.blog__content {
    padding: 1.5rem 1.2rem 1.2rem 1.2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.blog__post-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.7rem;
    color: var(--primary, #e63946);
}
.blog__excerpt {
    color: #bbb;
    font-size: 1rem;
    margin-bottom: 1.2rem;
    flex: 1;
}
.blog__readmore {
    color: var(--primary, #e63946);
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.3em;
    transition: color 0.2s;
}
.blog__readmore:hover {
    color: #fff;
    text-decoration: underline;
}
@media (max-width: 700px) {
    .blog__grid {
        grid-template-columns: 1fr;
    }
    .blog__img {
        height: 140px;
    }
    .blog {
        padding: 40px 0 20px 0;
    }
}
/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html, body {
    overflow-x: hidden;
    max-width: 100vw;
    width: 100%;
}

/* ===== CSS VARIABLES FOR THEMING ===== */
:root {
    --bg-primary: #111;
    --bg-secondary: #1a1a1a;
    --bg-tertiary: #222;
    --text-primary: #fff;
    --text-secondary: #ccc;
    --text-muted: #888;
    --accent-gold: #d4af37;
    --accent-gold-light: #f4d03f;
    --card-bg: #1a1a1a;
    --border-color: #333;
    --shadow-color: rgba(0,0,0,0.3);
}

[data-theme="light"] {
    --bg-primary: #ffffff;
    --bg-secondary: #f5f5f5;
    --bg-tertiary: #e8e8e8;
    --text-primary: #111;
    --text-secondary: #333;
    --text-muted: #666;
    --accent-gold: #b8960c;
    --accent-gold-light: #d4af37;
    --card-bg: #ffffff;
    --border-color: #ddd;
    --shadow-color: rgba(0,0,0,0.1);
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: background 0.3s ease, color 0.3s ease;
}

/* ===== NAVBAR ===== */
.navbar {
    background: var(--bg-primary);
    padding: 0 40px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px var(--shadow-color);
    transition: transform 0.3s ease, background 0.3s ease, backdrop-filter 0.3s ease;
}

.navbar.scrolled {
    background: rgba(17, 17, 17, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

[data-theme="light"] .navbar.scrolled {
    background: rgba(255, 255, 255, 0.85);
}

.navbar.hidden {
    transform: translateY(-100%);
}

/* ===== THEME TOGGLE ===== */
.theme-toggle {
    background: transparent;
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-right: 15px;
}

.theme-toggle:hover {
    background: var(--accent-gold);
    color: var(--bg-primary);
    transform: rotate(180deg);
}

.navbar__logo {
    display: flex;
    align-items: center;
    flex: 1;
}

.navbar__logo img {
    height: 70px;
    filter: brightness(0) invert(1); /* Naredi logo bel */
}

[data-theme="light"] .navbar__logo img {
    filter: brightness(0); /* Naredi logo črn za svetlo temo */
}

.navbar__links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.navbar__links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease, opacity 0.3s ease;
    position: relative;
}

.navbar__links a:hover {
    color: #d4af37;
}

.navbar__links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4af37;
    transition: width 0.3s ease;
}

.navbar__links a:hover::after {
    width: 100%;
}

.navbar__cta {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #111 !important;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.navbar__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212,175,55,0.4);
}

.navbar__cta::after {
    display: none !important;
}

/* Language switcher */
.navbar__lang {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.navbar__lang a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 15px;
    background: transparent;
    border: 1px solid #444;
    border-radius: 20px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.navbar__lang a:hover {
    border-color: #d4af37;
    color: #d4af37;
}

.navbar__lang a::after {
    display: none !important;
}

/* Hamburger menu za mobile */
.navbar__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.navbar__burger span {
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile responsive */
@media (max-width: 1200px) {
    .navbar {
        padding: 0 20px;
    }
    
    .navbar__burger {
        display: flex;
    }
    
    .navbar__links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: #111;
        flex-direction: column;
        padding: 30px 20px;
        gap: 20px;
        transform: translateY(-150%);
        opacity: 0;
        transition: all 0.4s ease;
    }
    
    .navbar__links.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .navbar__links a {
        font-size: 1.1rem;
    }
}

/* Prostor za navbar */
.main-content {
    padding-top: 70px;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('SLIKE ZA SS/2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 0 20px;
    padding-bottom: 25vh;
}

.hero__title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.hero__subtitle {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 80px;
}

.hero__btn {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #111;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero__btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212,175,55,0.4);
}

/* ===== TYPING EFFECT ===== */
.hero__title {
    min-height: 1.2em;
    border-right: 3px solid #d4af37;
    animation: blink-caret 0.75s step-end infinite;
}

.hero__title.typing-done {
    border-right: none;
    animation: none;
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: #d4af37; }
}

/* ===== APP COMING SOON ===== */
.app-coming-soon {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid #d4af37;
    padding: 12px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #d4af37;
    font-size: 0.95rem;
    font-weight: 500;
    animation: pulse-glow 2s ease-in-out infinite;
}

.app-coming-soon i {
    font-size: 1.3rem;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 10px rgba(212, 175, 55, 0.3); }
    50% { box-shadow: 0 0 25px rgba(212, 175, 55, 0.6); }
}

[data-theme="light"] .app-coming-soon {
    background: rgba(184, 150, 12, 0.15);
    border-color: #b8960c;
    color: #b8960c;
}

/* ===== STORITVE SECTION ===== */
.storitve {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f8f9fc;
    padding: 80px 20px;
}

.storitve__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 40px;
}

/* ===== O MENI SECTION ===== */
.about {
    background: #111;
    padding: 100px 20px;
}

.about__container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about__image img {
    width: 100%;
    max-width: 550px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.about__content {
    color: #111;
}

.about__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #111;
}

.about__text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.about__text strong {
    color: #111;
}

.about__btn {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #111;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    margin-top: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about__btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212,175,55,0.4);
}

/* ===== PREDSTAVE SECTION ===== */
.predstave {
    background: #111;
    padding: 100px 20px;
}

.predstave__container {
    max-width: 1200px;
    margin: 0 auto;
}

.predstave__header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.predstave__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 0;
}

.predstave__download {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #111;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.predstave__download:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212,175,55,0.4);
}

.predstave__download svg {
    flex-shrink: 0;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.card {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 28px 24px;
    border: 1px solid #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(212,175,55,0.2);
    border-color: #d4af37;
}

.card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #d4af37;
    margin-bottom: 12px;
}

.card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ccc;
}

/* ===== GALERIJA SECTION ===== */
.galerija {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a2e 40%, #2d1b4e 70%, #4a1a6b 100%);
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.galerija::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212,175,55,0.15) 0%, transparent 50%);
    animation: shimmer 15s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(25%, 25%); }
}

/* ===== VIDEO SECTION ===== */
.video {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 100px 20px;
}

.video__container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.video__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.video__subtitle {
    font-size: 1.1rem;
    color: #aaa;
    margin-bottom: 60px;
}

.video__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.video__item {
    background: #222;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video__item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
}

.video__wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video__wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video__name {
    padding: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #1a1a1a, #252525);
}

@media (max-width: 1100px) {
    .video__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .video__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .video__grid {
        grid-template-columns: 1fr;
    }
    
    .video__title {
        font-size: 2rem;
    }
}

/* ===== SOCIALNA OMREŽJA SECTION ===== */
.social {
    background: #111;
    padding: 80px 20px;
}

.social__container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.social__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.social__subtitle {
    font-size: 1.1rem;
    color: #aaa;
    margin-bottom: 50px;
}

.social__icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.social__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 160px;
    height: 160px;
    background: linear-gradient(145deg, #1f1f1f, #151515);
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid #2a2a2a;
    position: relative;
    overflow: hidden;
}

.social__link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255,255,255,0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social__link:hover::before {
    opacity: 1;
}

.social__link i {
    font-size: 3.5rem;
    transition: transform 0.4s ease, filter 0.3s ease;
}

.social__link span {
    font-size: 0.95rem;
    font-weight: 600;
    color: #ccc;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.social__link:hover {
    transform: translateY(-10px) scale(1.05);
}

.social__link:hover span {
    color: #fff;
}

.social__link:hover i {
    transform: scale(1.15);
    filter: drop-shadow(0 0 15px currentColor);
}

/* YouTube */
.social__link--youtube i {
    color: #FF0000;
}
.social__link--youtube:hover {
    border-color: #FF0000;
    background: linear-gradient(145deg, #2a1515, #1a0a0a);
    box-shadow: 0 15px 50px rgba(255, 0, 0, 0.4), inset 0 0 30px rgba(255, 0, 0, 0.1);
}

/* TikTok */
.social__link--tiktok i {
    color: #fff;
    text-shadow: 2px 2px 0 #69C9D0, -2px -2px 0 #EE1D52;
}
.social__link--tiktok:hover {
    border-color: #69C9D0;
    background: linear-gradient(145deg, #1a2020, #101515);
    box-shadow: 0 15px 50px rgba(105, 201, 208, 0.4), inset 0 0 30px rgba(105, 201, 208, 0.1);
}

/* Instagram */
.social__link--instagram i {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.social__link--instagram:hover {
    border-color: #E1306C;
    background: linear-gradient(145deg, #251520, #150a10);
    box-shadow: 0 15px 50px rgba(225, 48, 108, 0.4), inset 0 0 30px rgba(225, 48, 108, 0.1);
}

/* Facebook */
.social__link--facebook i {
    color: #1877F2;
}
.social__link--facebook:hover {
    border-color: #1877F2;
    background: linear-gradient(145deg, #152035, #0a1020);
    box-shadow: 0 15px 50px rgba(24, 119, 242, 0.4), inset 0 0 30px rgba(24, 119, 242, 0.1);
}

/* ===== KONTAKT SECTION ===== */
.kontakt {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    padding: 100px 20px;
}

.kontakt__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.kontakt__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.kontakt__subtitle {
    font-size: 1.1rem;
    color: #aaa;
    margin-bottom: 40px;
    line-height: 1.6;
}

.kontakt__details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.kontakt__detail {
    display: flex;
    align-items: center;
    gap: 20px;
}

.kontakt__detail i {
    font-size: 1.8rem;
    color: #d4af37;
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kontakt__detail h4 {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 5px;
    font-weight: 500;
}

.kontakt__detail a,
.kontakt__detail span {
    font-size: 1.1rem;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.kontakt__detail a:hover {
    color: #d4af37;
}

.kontakt__form-wrapper {
    background: linear-gradient(145deg, #1f1f1f, #151515);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #2a2a2a;
}

.kontakt__form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.kontakt__form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.kontakt__form-group--full {
    grid-column: 1 / -1;
}

.kontakt__form-group label {
    font-size: 0.9rem;
    color: #ccc;
    font-weight: 500;
}

.kontakt__form-group input,
.kontakt__form-group select,
.kontakt__form-group textarea {
    padding: 14px 18px;
    background: #0a0a0a;
    border: 2px solid #2a2a2a;
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.kontakt__form-group input:focus,
.kontakt__form-group select:focus,
.kontakt__form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.kontakt__form-group input::placeholder,
.kontakt__form-group textarea::placeholder {
    color: #555;
}

.kontakt__form-group select {
    cursor: pointer;
}

.kontakt__form-group select option {
    background: #1a1a1a;
    color: #fff;
}

.kontakt__form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.kontakt__btn {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 40px;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: #111;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kontakt__btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.kontakt__btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.kontakt__btn i {
    font-size: 1.2rem;
}

.kontakt__success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 40px;
}

.kontakt__success i {
    font-size: 4rem;
    color: #4CAF50;
    margin-bottom: 20px;
}

.kontakt__success h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 10px;
}

.kontakt__success p {
    color: #aaa;
    font-size: 1.1rem;
}

@media (max-width: 900px) {
    .kontakt__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .kontakt__form {
        grid-template-columns: 1fr;
    }
    
    .kontakt__form-group--full {
        grid-column: 1;
    }
    
    .kontakt__btn {
        grid-column: 1;
    }
}

.galerija__container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.galerija__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 50px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.galerija__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.galerija__item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="black" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M6.5 12a5.5 5.5 0 1 0 0-11 5.5 5.5 0 0 0 0 11zM13 6.5a6.5 6.5 0 1 1-13 0 6.5 6.5 0 0 1 13 0z"/><path d="M10.344 11.742c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a.6.6 0 0 0-.115-.1 6.538 6.538 0 0 1-1.398 1.4z"/><path fill-rule="evenodd" d="M6.5 3a.5.5 0 0 1 .5.5V6h2.5a.5.5 0 0 1 0 1h-2.5v2.5a.5.5 0 0 1-1 0V7H4a.5.5 0 0 1 0-1h2.5V3.5a.5.5 0 0 1 .5-.5z"/></svg>') 16 16, zoom-in;
    aspect-ratio: 4/3;
}

.galerija__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.galerija__item:hover img {
    transform: scale(1.1);
}

.galerija__item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    transition: background 0.3s ease;
}

.galerija__item:hover::after {
    background: rgba(0,0,0,0.2);
}

.galerija__item--hidden {
    display: none;
}

.galerija__item--hidden.visible {
    display: block;
}

.galerija__btn {
    background: #111;
    color: #fff;
    padding: 16px 40px;
    border: 2px solid #111;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.galerija__btn:hover {
    transform: translateY(-3px);
    background: #000000;
    color: #fff;
    box-shadow: 0 8px 25px rgba(212,175,55,0.4);
}

.galerija__btn.hidden {
    display: none;
}

/* ===== LIGHTBOX ===== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.lightbox.active {
    display: flex;
}

.lightbox__img {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox__close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.lightbox__close:hover {
    color: #d4af37;
}

.lightbox__prev,
.lightbox__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.5rem;
    color: #fff;
    background: rgba(255,255,255,0.1);
    border: none;
    cursor: pointer;
    padding: 20px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.lightbox__prev:hover,
.lightbox__next:hover {
    background: rgba(212,175,55,0.3);
    color: #d4af37;
}

.lightbox__prev {
    left: 20px;
}

.lightbox__next {
    right: 20px;
}

/* Responsive */
@media (max-width: 1100px) {
    .galerija__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

@media (max-width: 1100px) {
    .about__container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about__image img {
        max-width: 100%;
    }
    
    .about__title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .galerija__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .galerija__title {
        font-size: 2rem;
    }
    
    .lightbox__prev,
    .lightbox__next {
        font-size: 1.8rem;
        padding: 15px 12px;
    }
    
    .lightbox__close {
        font-size: 2.5rem;
        top: 15px;
        right: 20px;
    }
    
    .predstave__title {
        font-size: 2rem;
    }
    
    .cards {
        grid-template-columns: 1fr;
    }
    
    .about__container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about__image img {
        max-width: 100%;
    }
    
    .about__title {
        font-size: 2rem;
    }
    
    .hero__title {
        font-size: 2.2rem;
    }
    
    .hero__subtitle {
        font-size: 1.1rem;
    }
}

/* ===== FAQ SECTION ===== */
.faq {
    background: #0a0a0a;
    padding: 100px 20px;
}

.faq__container {
    max-width: 900px;
    margin: 0 auto;
}

.faq__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 50px;
}

.faq__grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq__item {
    background: linear-gradient(145deg, #1a1a1a, #111);
    border-radius: 12px;
    border: 1px solid #2a2a2a;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.faq__item:hover {
    border-color: #d4af37;
}

.faq__item.active {
    border-color: #d4af37;
}

.faq__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
}

.faq__question span {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
}

.faq__question i {
    font-size: 1.3rem;
    color: #d4af37;
    transition: transform 0.3s ease;
}

.faq__item.active .faq__question i {
    transform: rotate(45deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq__item.active .faq__answer {
    max-height: 300px;
}

.faq__answer p {
    padding: 0 25px 20px 25px;
    color: #aaa;
    line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
    background: #0a0a0a;
    border-top: 1px solid #222;
    padding: 60px 20px 30px;
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer__top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #222;
}

.footer__logo {
    height: 60px;
    margin-bottom: 15px;
}

.footer__tagline {
    color: #888;
    font-size: 1rem;
    line-height: 1.6;
}

.footer__links h4,
.footer__contact h4,
.footer__social h4 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer__links a,
.footer__contact a {
    display: block;
    color: #888;
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer__links a:hover,
.footer__contact a:hover {
    color: #d4af37;
}

.footer__contact a i {
    margin-right: 8px;
    color: #d4af37;
}

.footer__social-icons {
    display: flex;
    gap: 12px;
}

.footer__social-icons a {
    width: 42px;
    height: 42px;
    background: #1a1a1a;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer__social-icons a:hover {
    background: #d4af37;
    color: #111;
    transform: translateY(-3px);
}

.footer__bottom {
    text-align: center;
    padding-top: 30px;
}

.footer__bottom p {
    color: #555;
    font-size: 0.9rem;
}

.footer__legal {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.footer__legal a {
    color: #888;
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__legal a:hover {
    color: #d4af37;
}

.footer__legal span {
    color: #444;
}

@media (max-width: 900px) {
    .footer__top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer__top {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer__social-icons {
        justify-content: center;
    }
    
    .faq__title {
        font-size: 2rem;
    }
}

/* ===== LEGAL PAGES ===== */
.legal-page {
    min-height: 100vh;
    padding: 120px 20px 60px;
    background: var(--bg-primary);
}

.legal-page__container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-page__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-page__date {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 40px;
}

.legal-page__section {
    margin-bottom: 35px;
}

.legal-page__section h2 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #d4af37;
}

.legal-page__section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-page__section ul {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-left: 25px;
    margin-bottom: 15px;
}

.legal-page__section ul li {
    margin-bottom: 8px;
}

.legal-page__back {
    margin-top: 50px;
    text-align: center;
}

.legal-page__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: #111;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.legal-page__btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

[data-theme="light"] .legal-page__section h2 {
    color: #111;
}

[data-theme="light"] .legal-page__section p,
[data-theme="light"] .legal-page__section ul {
    color: #333;
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: #111;
    border: none;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}

/* ===== SCROLL FADE IN ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader__spinner {
    text-align: center;
}

.preloader__spinner img {
    width: 120px;
    animation: spin 2s linear infinite, pulse 1s ease-in-out infinite alternate;
}

@keyframes spin {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

@keyframes pulse {
    0% { opacity: 0.5; transform: scale(0.95) rotateY(0deg); }
    100% { opacity: 1; transform: scale(1.05) rotateY(180deg); }
}

/* ===== COOKIE CONSENT ===== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a1a, #222);
    padding: 20px;
    z-index: 9998;
    transform: translateY(100%);
    transition: transform 0.5s ease;
    border-top: 1px solid #333;
    box-shadow: 0 -5px 30px rgba(0,0,0,0.3);
}

.cookie-consent.visible {
    transform: translateY(0);
}

.cookie-consent.hidden {
    transform: translateY(100%);
}

.cookie-consent__content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-consent__content p {
    color: #ccc;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-consent__content p i {
    color: #d4af37;
    font-size: 1.3rem;
}

.cookie-consent__buttons {
    display: flex;
    gap: 10px;
}

.cookie-consent__btn {
    padding: 12px 25px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-consent__btn--accept {
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: #111;
}

.cookie-consent__btn--accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.cookie-consent__btn--decline {
    background: transparent;
    color: #888;
    border: 1px solid #444;
}

.cookie-consent__btn--decline:hover {
    border-color: #888;
    color: #fff;
}

@media (max-width: 600px) {
    .cookie-consent__content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-consent__buttons {
        width: 100%;
        justify-content: center;
    }
}

/* ===== HAMBURGER ANIMATION ===== */
.navbar__burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.navbar__burger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.navbar__burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== CARD HOVER EFFECTS ===== */
.card {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #f4d03f);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.card:hover::before {
    transform: scaleX(1);
}

/* ===== LIGHT THEME OVERRIDES ===== */
[data-theme="light"] .hero {
    background: linear-gradient(rgba(255,255,255,0.3), rgba(255,255,255,0.3)), url('SLIKE ZA SS/2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

[data-theme="light"] .hero__title,
[data-theme="light"] .hero__subtitle {
    color: #111;
    text-shadow: 0 2px 10px rgba(255,255,255,0.8);
}

[data-theme="light"] .storitve,
[data-theme="light"] .predstave,
[data-theme="light"] .video,
[data-theme="light"] .social,
[data-theme="light"] .faq {
    background: var(--bg-secondary);
}

[data-theme="light"] .galerija {
    background: var(--bg-tertiary);
}

[data-theme="light"] .kontakt {
    background: var(--bg-secondary);
}

[data-theme="light"] .card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    box-shadow: 0 5px 20px var(--shadow-color);
}

[data-theme="light"] .card__title,
[data-theme="light"] .card__text {
    color: var(--text-primary);
}

[data-theme="light"] .navbar__links a {
    color: var(--text-primary);
}

[data-theme="light"] .footer {
    background: #222;
}

[data-theme="light"] .faq__item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
}

[data-theme="light"] .faq__question {
    color: var(--text-primary);
}

[data-theme="light"] .faq__question span {
    color: #111;
}

[data-theme="light"] .faq__answer {
    color: var(--text-secondary);
}

[data-theme="light"] .faq__answer p {
    color: #333;
}

[data-theme="light"] .kontakt__form input,
[data-theme="light"] .kontakt__form textarea {
    background: var(--bg-tertiary);
    border-color: var(--border-color);
    color: var(--text-primary);
}

[data-theme="light"] .video__item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
}

[data-theme="light"] .social__link {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
}

[data-theme="light"] .preloader {
    background: #fff;
}

[data-theme="light"] .cookie-consent {
    background: linear-gradient(135deg, #f5f5f5, #e8e8e8);
    border-top: 1px solid #ddd;
}

[data-theme="light"] .cookie-consent__content p {
    color: #333;
}

/* ===== ADDITIONAL LIGHT THEME TEXT FIXES ===== */
[data-theme="light"] .storitve__title,
[data-theme="light"] .storitve__text,
[data-theme="light"] .predstave__title,
[data-theme="light"] .predstave__subtitle,
[data-theme="light"] .galerija__title,
[data-theme="light"] .video__title,
[data-theme="light"] .video__subtitle,
[data-theme="light"] .video__name,
[data-theme="light"] .social__title,
[data-theme="light"] .social__subtitle,
[data-theme="light"] .kontakt__title,
[data-theme="light"] .kontakt__subtitle,
[data-theme="light"] .faq__title {
    color: #111;
}

[data-theme="light"] .social__link span {
    color: #111;
}

[data-theme="light"] .kontakt__info h3,
[data-theme="light"] .kontakt__info p,
[data-theme="light"] .kontakt__info a {
    color: #333;
}

[data-theme="light"] .kontakt__form label {
    color: #333;
}

[data-theme="light"] .galerija__btn {
    background: #f5f5f5;
    color: #111;
    border: 2px solid #b8960c;
}

[data-theme="light"] .galerija__btn:hover {
    background: #b8960c;
    color: #fff;
}

[data-theme="light"] .navbar__burger span {
    background: #111;
}

[data-theme="light"] .back-to-top {
    background: #111;
    color: #fff;
}

[data-theme="light"] .lightbox {
    background: rgba(255,255,255,0.95);
}

[data-theme="light"] .lightbox__close,
[data-theme="light"] .lightbox__prev,
[data-theme="light"] .lightbox__next {
    color: #111;
}

/* ===== ADDITIONAL LIGHT THEME TEXT COLORS ===== */
[data-theme="light"] .storitve__container h2,
[data-theme="light"] .storitve__container p,
[data-theme="light"] .predstave h2,
[data-theme="light"] .predstave p,
[data-theme="light"] .galerija h2,
[data-theme="light"] .video h2,
[data-theme="light"] .video p,
[data-theme="light"] .social h2,
[data-theme="light"] .social p,
[data-theme="light"] .kontakt h2,
[data-theme="light"] .kontakt p,
[data-theme="light"] .faq h2,
[data-theme="light"] h1,
[data-theme="light"] h2,
[data-theme="light"] h3,
[data-theme="light"] h4,
[data-theme="light"] p {
    color: #111;
}

[data-theme="light"] .footer h1,
[data-theme="light"] .footer h2,
[data-theme="light"] .footer h3,
[data-theme="light"] .footer h4,
[data-theme="light"] .footer p,
[data-theme="light"] .footer a {
    color: #fff;
}

[data-theme="light"] .card__icon {
    color: #b8960c;
}

[data-theme="light"] .faq__icon {
    color: #b8960c;
}

[data-theme="light"] .kontakt__icon {
    color: #b8960c;
}

[data-theme="light"] .social__link i {
    color: inherit;
}

[data-theme="light"] a {
    color: #111;
}

[data-theme="light"] .navbar__lang a {
    color: #111;
}

[data-theme="light"] .hero__btn {
    color: #111;
}

/* ===== SKELETON LOADING ===== */
.skeleton {
    background: linear-gradient(90deg, #222 25%, #333 50%, #222 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 8px;
}

[data-theme="light"] .skeleton {
    background: linear-gradient(90deg, #e0e0e0 25%, #f0f0f0 50%, #e0e0e0 75%);
    background-size: 200% 100%;
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.galerija__item img {
    transition: opacity 0.3s ease;
}

.galerija__item img.loading {
    opacity: 0;
}

.galerija__item {
    position: relative;
    overflow: hidden;
}

.galerija__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, #222 25%, #333 50%, #222 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.galerija__item.loading::before {
    opacity: 1;
}

[data-theme="light"] .galerija__item::before {
    background: linear-gradient(90deg, #e0e0e0 25%, #f0f0f0 50%, #e0e0e0 75%);
    background-size: 200% 100%;
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    color: #111;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
}

/* ===== SCROLL PROGRESS BAR ===== */
.scroll-progress {
    position: fixed;
    top: 70px;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-light));
    z-index: 1001;
    transition: width 0.1s ease;
}

/* ===== SCROLL ANIMATIONS (AOS-like) ===== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Animation variations */
.animate-fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-fade-up.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-fade-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-fade-left.animated {
    opacity: 1;
    transform: translateX(0);
}

.animate-fade-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-fade-right.animated {
    opacity: 1;
    transform: translateX(0);
}


.animate-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.animate-scale.animated {
    opacity: 1;
    transform: scale(1);
}

/* ===== LIGHTBOX IMAGE ANIMATION ===== */
.lightbox-animate {
    animation: lightboxSmoothOpen 0.5s ease-out forwards;
}

@keyframes lightboxSmoothOpen {
    0% {
        opacity: 0;
        transform: scale(0.8);
        filter: blur(1px);
    }
    100% {
        opacity: 1;
        transform: scale(1);
        filter: blur(0);
    }
}

/* Lightbox background fade */
.lightbox {
    transition: background 0.4s ease;
}

.lightbox.active {
    background: rgba(0, 0, 0, 0.95);
}

/* Golden glow effect on image */
.lightbox.active .lightbox__content img {
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.3),
                0 0 30px rgba(212, 175, 55, 0.2),
                0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox__content img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* ===== COUNTDOWN TIMER ===== */
.countdown-section {
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
    padding: 60px 20px;
    text-align: center;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.countdown-section__title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.countdown-section__subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.countdown__item {
    background: var(--card-bg);
    border: 2px solid var(--accent-gold);
    border-radius: 12px;
    padding: 20px 25px;
    min-width: 100px;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.countdown__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
}

.countdown__number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    display: block;
    line-height: 1;
}

.countdown__label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
}

/* Countdown pulse animation */
.countdown__number.pulse {
    animation: countdownPulse 0.3s ease;
}

@keyframes countdownPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@media (max-width: 600px) {
    .countdown__item {
        min-width: 70px;
        padding: 15px 18px;
    }
    
    .countdown__number {
        font-size: 1.8rem;
    }
    
    .countdown-section__title {
        font-size: 1.4rem;
    }
}
