@import url('https://fonts.googleapis.com/css2?family=Anton&family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Bebas+Neue&family=Luckiest+Guy&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

html {
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    display: none;
}

.fade-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}


    /* ===== LOADING SCREEN ===== */
        .loading-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #0a0a0a, #121212);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
        }

        .loading-screen.hide {
            opacity: 0;
            visibility: hidden;
        }

        .loading-content {
            text-align: center;
            animation: pulse 1.5s ease-in-out infinite;
        }

        /* Logo v loading screenu */
        .loading-logo {
            width: 100px;
            max-width: 80%;
            margin-bottom: 30px;
            animation: fadeInLogo 0.8s ease forwards;
        }

        /* Loader animacija */
        .loader {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 30px;
        }

        .loader-dot {
            width: 14px;
            height: 14px;
            background: #ffffff;
            border-radius: 50%;
            animation: bounce 0.8s ease-in-out infinite;
        }

        .loader-dot:nth-child(1) {
            animation-delay: 0s;
        }

        .loader-dot:nth-child(2) {
            animation-delay: 0.15s;
        }

        .loader-dot:nth-child(3) {
            animation-delay: 0.3s;
        }

        /* Tekst pod loaderjem */
        .loading-text {
            color: #888;
            font-family: 'Open Sans', sans-serif;
            font-size: 14px;
            letter-spacing: 2px;
            margin-top: 20px;
            text-transform: uppercase;
        }

        /* Animacije */
        @keyframes pulse {
            0% {
                transform: scale(1);
                opacity: 1;
            }
            50% {
                transform: scale(1.02);
                opacity: 0.95;
            }
            100% {
                transform: scale(1);
                opacity: 1;
            }
        }

        @keyframes bounce {
            0%, 100% {
                transform: translateY(0);
                opacity: 0.5;
            }
            50% {
                transform: translateY(-12px);
                opacity: 1;
            }
        }

        @keyframes fadeInLogo {
            0% {
                opacity: 0;
                transform: scale(0.9);
            }
            100% {
                opacity: 1;
                transform: scale(1);
            }
        }
        
        /* ===== INDIKATORJI (PIKICE) ZA SLIDESHOW ===== */
.indicators {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    z-index: 2;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.dot.active {
    background: #c9a34e;
    width: 28px;
    border-radius: 6px;
}

/* ================= COOKIES ================= */

.cookie-popup {
  position: fixed;
  left: 40px;
  bottom: 40px;
  width: min(420px, calc(100% - 40px));
  background: rgba(8,8,8,.96);
  border: 1px solid rgba(212,175,55,.22);
  padding: 28px;
  z-index: 99999;

  transform: translateY(140%);
  opacity: 0;
  transition: .45s ease;

  box-shadow:
    0 25px 70px rgba(0,0,0,.55),
    inset 0 0 0 1px rgba(255,255,255,.03);
}

.cookie-popup.show {
  transform: translateY(0);
  opacity: 1;
}

.cookie-content span {
  display: inline-block;
  color: #d4af37;
  font-size: 11px;
  letter-spacing: .25em;
  margin-bottom: 14px;
}

.cookie-content h3 {
  color: white;
  font-size: 28px;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.cookie-content p {
  color: rgba(255,255,255,.72);
  line-height: 1.7;
  font-size: 15px;
  margin-bottom: 26px;
}

.cookie-popup button {
  width: 100%;
  height: 54px;

  border: 1px solid #d4af37;
  background: #d4af37;
  color: black;

  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;

  transition: .3s ease;
}

.cookie-popup button:hover {
  background: transparent;
  color: #d4af37;
}

@media (max-width: 700px) {

  .cookie-popup {
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: auto;
    padding: 22px;
  }

  .cookie-content h3 {
    font-size: 22px;
  }

}

/* ------------------- NAVBAR ------------------ */

/* ===== HAMBURGER MENI ===== */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding: 15px;
    gap: 5px;
    z-index: 1001;
}

.hamburger span {
    margin: 1px;
    width: 32px;
    height: 4px;
    background-color: white;
    transition: all 0.3s ease;
}

/* Animacija za X (ko je aktiven) */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

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

@media (max-width: 768px) {
    /* Skrij linke na začetku */
    .links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: rgb(12, 12, 12);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: left 0.3s ease;
        z-index: 1000;
        display: flex !important;
        margin: 0;
        padding: 0;
    }
    
    .links.show {
        left: 0;
    }
    
    .navigation_bar {
        display: flex;
        justify-content: center;
        align-items: center;
        position: fixed;
    }
    
    .hamburger {
        display: flex;
        position: static;
        transform: none;
        z-index: 1002;
    }
    
    /* Stil linkov v meniju */
    .links a {
        font-size: 32px;
        padding: 15px;
        width: auto;
        text-align: center;
    }
    
    .links a::after {
        display: none;
    }
}
/* ------- KONEC HAMBURGER MENIJA ----- */

.navigation_bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgb(12, 12, 12);
    z-index: 1000;
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.navigation_bar.hide {
    transform: translateY(-100%);
}


.links {
    display: flex;
    justify-content: center;
    align-items: center;
}

.links a {
    text-decoration: none;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
    color: rgb(236, 236, 236);
    font-size: 25px;
    padding-top: 17px;
    padding-bottom: 17px;
    padding-right: 35px;
    padding-left: 35px;
    position: relative;
    transition: color 0.3s ease;
}

.links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background-color: white;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.links a:hover::after {
    width: 70%;
}


.links a:hover {
    color: #c9a34e;
}

.logo_nav {
    margin-left: 100px;
}


/* ------------ DOMOV ------------- */

        .intro {
            position: relative;
            height: 100vh;
            overflow: hidden;
            user-select: none;
        }

        /* Slideshow container */
        .slideshow-container {
            position: relative;
            width: 100%;
            height: 100%;
        }

        /* Posamezen slide */
        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
        }

        .slide.active {
            opacity: 1;
        }

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

        /* Overlay za boljšo berljivost besedila */
        .slide-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.7));
            z-index: 1;
        }

        /* Vsebina na vrhu slik */
        .slide-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            z-index: 2;
            width: 100%;
            padding: 20px;
        }

        /* Logo */
        .logotip {
            display: block;
            margin: 0 auto;
            width: 450px;
            max-width: 80%;
            animation: fadeUp 0.8s ease forwards;
        }

        /* Opis */
        .predstavitev {
            color: rgb(220, 220, 220);
            font-family: 'Open Sans', sans-serif;
            font-size: 17px;
            font-weight: 400;
            width: 800px;
            max-width: 90%;
            margin: 30px auto;
            text-align: center;
            line-height: 1.6;
            animation: fadeUp 1s ease forwards;
        }

        /* Gumb */
        .button {
            cursor: pointer;
            text-decoration: none;
            text-transform: uppercase;
            background: none;
            color: rgb(220, 220, 220);
            font-family: 'Open Sans', sans-serif;
            font-size: 17px;
            font-weight: 500;
            border: 1.5px solid #f2f2f2;
            padding: 16px 40px;
            letter-spacing: 2px;
            transition: all 0.3s ease;
            display: inline-block;
            animation: fadeUp 1.2s ease forwards;
        }

        .button:hover {
            background: #f2f2f2;
            color: #0a0a0a;
        }

        /* Animacija fadeUp */
        @keyframes fadeUp {
            0% {
                opacity: 0;
                transform: translateY(30px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Indikatorji (pike) */
        .indicators {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 2;
        }

        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s;
        }

        .dot.active {
            background: #c9a34e;
            width: 25px;
            border-radius: 5px;
        }

        /* Tipka za prejšnjo/naslednjo */
        .prev, .next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.5);
            color: white;
            padding: 12px 18px;
            cursor: pointer;
            font-size: 20px;
            z-index: 2;
            transition: 0.3s;
            border-radius: 50%;
        }

        .prev:hover, .next:hover {
            background: #c9a34e;
            color: black;
        }

        .prev {
            left: 20px;
        }

        .next {
            right: 20px;
        }

        /* Responsive */
@media (max-width: 768px) {
    .logotip {
        width: 280px;
    }
    .predstavitev {
        font-size: 14px;
        width: 90%;
    }
    .button {
        font-size: 14px;
        padding: 12px 30px;
    }
    .prev, .next {
        display: none;  /* DODAJ TO VRSTICO */
    }
}

        /* ===== O NAS SEKCIJA ===== */
        .o-nas {
            min-height: 100vh;
            background: linear-gradient(135deg, rgb(8, 8, 8), rgb(15, 15, 15));
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            padding: 80px 0;
        }

        /* Zlati akcentni elementi v ozadju */
        .o-nas::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(201, 163, 78, 0.08), transparent 70%);
            border-radius: 50%;
            z-index: 0;
        }

        .o-nas::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(201, 163, 78, 0.05), transparent 70%);
            border-radius: 50%;
            z-index: 0;
        }

        .o-nas-div {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 80px;
            max-width: 1300px;
            width: 100%;
            margin: 0 auto;
            padding: 0 60px;
            position: relative;
            z-index: 1;
        }

        /* Leva stran z besedilom */
        .o-nas-text {
            flex: 1;
            max-width: 600px;
        }

        /* Zlata oznaka */
        .o-nas-badge {
            display: inline-block;
            background: rgba(201, 163, 78, 0.15);
            color: #c9a34e;
            font-family: 'Open Sans', sans-serif;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            padding: 6px 15px;
            border-radius: 30px;
            margin-bottom: 20px;
            border: 1px solid rgba(201, 163, 78, 0.3);
        }

        .naslov {
            color: white;
            font-family: 'Bebas Neue', sans-serif;
            letter-spacing: 5px;
            font-size: 70px;
            text-transform: uppercase;
            margin-bottom: 25px;
            position: relative;
            display: inline-block;
        }

        /* Zlata črta pod naslovom */
        .naslov::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #c9a34e, transparent);
        }

        .podnaslov {
            color: rgb(180, 180, 180);
            font-family: 'Roboto', sans-serif;
            font-size: 16px;
            line-height: 1.8;
            margin: 30px 0 35px 0;
        }

        /* Zlati poudarek v tekstu */
        .highlight {
            color: #c9a34e;
            font-weight: 600;
        }

        /* Statistika */
        .stats {
            display: flex;
            gap: 40px;
            margin-bottom: 45px;
            flex-wrap: wrap;
        }

        .stat-item {
            text-align: left;
        }

        .stat-number {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 36px;
            color: #c9a34e;
            line-height: 1;
            margin-bottom: 5px;
        }

        .stat-label {
            font-family: 'Open Sans', sans-serif;
            font-size: 11px;
            color: #888;
            letter-spacing: 1px;
            text-transform: uppercase;
            font-weight: 500;
        }

        /* Gumbi */
        .dva-gumba {
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .button-vec-o-nas {
            cursor: pointer;
            text-decoration: none;
            text-transform: uppercase;
            background: #c9a34e;
            color: #000;
            font-family: 'Open Sans', sans-serif;
            font-size: 14px;
            font-weight: 700;
            border: none;
            padding: 14px 32px;
            letter-spacing: 2px;
            display: inline-block;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .button-vec-o-nas::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: #b38b3a;
            transition: all 0.3s ease;
            z-index: -1;
        }

        .button-vec-o-nas:hover::before {
            left: 0;
        }

        .button-vec-o-nas:hover {
            color: white;
        }

        .button-o-nas {
            cursor: pointer;
            text-decoration: none;
            text-transform: uppercase;
            background: transparent;
            color: rgb(220, 220, 220);
            font-family: 'Open Sans', sans-serif;
            font-size: 14px;
            font-weight: 600;
            border: 1.5px solid #c9a34e;
            padding: 14px 32px;
            letter-spacing: 2px;
            display: inline-block;
            transition: all 0.3s ease;
        }

        .button-o-nas:hover {
            background: #c9a34e;
            color: #000;
            border-color: #c9a34e;
        }

        /* Desna stran - slika */
        .o-nas-image {
            flex: 1;
            display: flex;
            justify-content: flex-end;
            align-items: center;
        }

        .image-wrapper {
            position: relative;
            max-width: 500px;
            width: 100%;
        }

        /* Zlati okvir okoli slike */
        .image-wrapper::before {
            content: '';
            position: absolute;
            top: 15px;
            left: 15px;
            right: -15px;
            bottom: -15px;
            border: 2px solid rgba(201, 163, 78, 0.3);
            transition: all 0.3s ease;
            z-index: 0;
        }

        .image-wrapper:hover::before {
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-color: #c9a34e;
        }

        .o-nas-izrezek {
            width: 100%;
            height: auto;
            display: block;
            position: relative;
            z-index: 1;
            filter: drop-shadow(0 15px 25px rgba(0,0,0,0.4));
            transition: all 0.4s ease;
        }

        .image-wrapper:hover .o-nas-izrezek {
            transform: scale(1.02);
        }

        /* Dekorativna zlata črta */
        .gold-line {
            position: absolute;
            bottom: 40px;
            left: 10%;
            width: 80%;
            height: 1px;
            background: linear-gradient(90deg, transparent, #c9a34e, #c9a34e, transparent);
        }

        /* Responsive */
        @media (max-width: 1100px) {
            .o-nas-div {
                gap: 50px;
                padding: 0 40px;
            }
            .naslov {
                font-size: 60px;
            }
        }

        @media (max-width: 900px) {
            .o-nas-div {
                flex-direction: column;
                text-align: center;
                gap: 50px;
                padding: 0 30px;
            }
            .o-nas-text {
                max-width: 100%;
                text-align: center;
            }
            .naslov {
                display: inline-block;
            }
            .naslov::after {
                left: 50%;
                transform: translateX(-50%);
                width: 100px;
            }
            .podnaslov {
                text-align: center;
                margin-left: auto;
                margin-right: auto;
            }
            .stats {
                justify-content: center;
            }
            .stat-item {
                text-align: center;
            }
            .dva-gumba {
                justify-content: center;
            }
            .o-nas-image {
                justify-content: center;
                order: -1;
            }
            .image-wrapper {
                max-width: 400px;
            }
            .image-wrapper::before {
                display: none;
            }
            .gold-line {
                display: none;
            }
        }

        @media (max-width: 600px) {
            .o-nas {
                padding: 60px 0;
            }
            .naslov {
                font-size: 48px;
            }
            .podnaslov {
                font-size: 14px;
            }
            .button-vec-o-nas, .button-o-nas {
                padding: 12px 25px;
                font-size: 12px;
            }
            .stats {
                gap: 25px;
            }
            .stat-number {
                font-size: 30px;
            }
            .o-nas-div {
                padding: 0 20px;
            }
        }

        /* ===== KONCERTI SEKCIJA ===== */
        
        .koncerti {
            background: linear-gradient(135deg, rgb(10, 10, 10), rgb(17, 17, 17));
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .koncerti::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(201, 163, 78, 0.08), transparent 70%);
            border-radius: 50%;
            z-index: 0;
        }

        .koncerti::after {
            content: '';
            position: absolute;
            bottom: -20%;
            left: -5%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(201, 163, 78, 0.05), transparent 70%);
            border-radius: 50%;
            z-index: 0;
        }

        .koncerti-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 50px;
            position: relative;
            z-index: 1;
        }

        .badge-wrapper {
            text-align: left;
            margin-bottom: 15px;
        }

        /* Zlata značka */
        .koncerti-badge {
            display: inline-block;
            background: transparent;
            color: #c9a34e;
            font-family: 'Open Sans', sans-serif;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            transition: all 0.3s ease;
        }

        .koncerti-naslov {
            color: white;
            font-family: 'Bebas Neue', sans-serif;
            letter-spacing: 5px;
            font-size: 70px;
            text-transform: uppercase;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        /* Zlata črta pod naslovom */
        .koncerti-naslov::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #c9a34e, transparent);
        }

        .koncerti-subtitle {
            color: rgb(150, 150, 150);
            font-family: 'Open Sans', sans-serif;
            font-size: 16px;
            margin: 30px 0 40px 0;
            max-width: 500px;
        }

        /* Lista koncertov */
        .koncert-list {
            margin: 50px 0;
        }

        .koncert-item {
            display: flex;
            align-items: center;
            background: rgba(25, 25, 25, 0.8);
            backdrop-filter: blur(2px);
            margin-bottom: 20px;
            transition: all 0.3s ease;
            border-left: 3px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .koncert-item:hover {
            transform: translateX(10px);
            border-left-color: #c9a34e;
            background: rgba(30, 30, 30, 0.9);
        }

        /* Zlati akcent ob hoverju */
        .koncert-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 3px;
            height: 100%;
            background: #c9a34e;
            transform: scaleY(0);
            transition: transform 0.3s ease;
        }

        .koncert-item:hover::before {
            transform: scaleY(1);
        }

        /* Datum */
        .koncert-datum {
            text-align: center;
            min-width: 100px;
            padding: 17px;
            background: rgba(201, 163, 78, 0.1);
            margin-right: 30px;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            justify-content: center;  /* Centrira vsebino vertikalno */
            align-items: center;
        }

        .koncert-item:hover .koncert-datum {
            background: rgba(201, 163, 78, 0.2);
            border-color: #c9a34e;
        }

        .koncert-dan {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 32px;
            color: #c9a34e;
            line-height: 1;
            margin: 0;
        }

        .koncert-mesec {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 18px;
            color: #aaa;
            margin: 5px 0 0 0;
            text-transform: uppercase;
        }

        /* Informacije o koncertu */
        .koncert-info {
            flex: 1;
        }

        .koncert-kraj {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 28px;
            letter-spacing: 2px;
            color: white;
            margin: 0 0 5px 0;
        }

        .koncert-naziv {
            font-family: 'Roboto', sans-serif;
            font-size: 15px;
            color: #aaa;
            margin: 0;
            font-weight: 400;
        }

        /* CTA gumb */
        .koncert-cta {
            margin-left: 20px;
        }

        .koncert-link {
            background: transparent;
            border: 1.5px solid #c9a34e;
            color: #c9a34e;
            padding: 10px 20px;
            font-family: 'Open Sans', sans-serif;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .koncert-link:hover {
            background: #c9a34e;
            color: #000;
        }

        /* Gumb za več koncertov */
        .btn-vec-koncertov {
            text-align: center;
            margin-top: 50px;
        }

        .button-vec-koncertov {
            cursor: pointer;
            text-decoration: none;
            text-transform: uppercase;
            background: transparent;
            color: rgb(220, 220, 220);
            font-family: 'Open Sans', sans-serif;
            font-size: 14px;
            font-weight: 600;
            border: 1.5px solid #c9a34e;
            padding: 14px 35px;
            letter-spacing: 2px;
            display: inline-block;
            transition: all 0.3s ease;
        }

        .button-vec-koncertov:hover {
            background: #c9a34e;
            color: #000;
            transform: translateY(-2px);
        }

        /* Če ni koncertov */
        .no-concerts {
            text-align: center;
            padding: 60px;
            background: rgba(25, 25, 25, 0.6);
            color: #aaa;
            font-family: 'Open Sans', sans-serif;
            font-size: 18px;
        }

        /* Responsive */
        @media (max-width: 900px) {
            .koncerti-container {
                padding: 0 30px;
            }
            .koncerti-naslov {
                font-size: 50px;
            }
            .koncerti-naslov::after {
                left: 50%;
                transform: translateX(-50%);
                width: 100px;
            }
            .koncerti-badge, .koncerti-subtitle {
                text-align: center;
                display: block;
                margin-left: auto;
                margin-right: auto;
            }
            .koncerti-subtitle {
                text-align: center;
            }
            .koncert-item {
                flex-wrap: wrap;
                padding: 20px;
            }
            .koncert-datum {
                margin-right: 20px;
                margin-bottom: 10px;
            }
            .koncert-cta {
                margin-left: 0;
                margin-top: 15px;
                width: 100%;
                text-align: center;
            }
            .koncert-link {
                display: inline-block;
                width: 100%;
                text-align: center;
            }
        }

        @media (max-width: 600px) {
            .koncerti {
                padding: 60px 0;
            }
            .koncerti-naslov {
                font-size: 40px;
            }
            .koncert-item {
                flex-direction: column;
                text-align: center;
            }
            .koncert-datum {
                margin-right: 0;
                margin-bottom: 15px;
            }
            .koncert-info {
                text-align: center;
            }
            .koncert-kraj {
                font-size: 24px;
            }
        }

                /* ===== MODALNO OKNO ===== */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 2000;
            justify-content: center;
            align-items: center;
            backdrop-filter: blur(5px);
        }

        .modal.show {
            display: flex;
            animation: modalFadeIn 0.3s ease forwards;
        }

        @keyframes modalFadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        .modal-content {
            background: linear-gradient(135deg, #121212, #0a0a0a);
            border-left: 4px solid #c9a34e;
            max-width: 550px;
            width: 90%;
            padding: 45px 40px 40px 40px;
            position: relative;
            transform: translateY(30px);
            opacity: 0;
            transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
        }

        .modal.show .modal-content {
            transform: translateY(0);
            opacity: 1;
        }

        /* Zapri gumb */
        .modal-close {
            position: absolute;
            top: 20px;
            right: 25px;
            font-size: 32px;
            color: #666;
            cursor: pointer;
            transition: all 0.3s ease;
            line-height: 1;
        }

        .modal-close:hover {
            color: #c9a34e;
            transform: rotate(90deg);
        }

        /* Naslov - levo poravnan, večji */
        .modal-title {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 48px;
            letter-spacing: 3px;
            color: #c9a34e;
            text-align: left;
            margin-bottom: 30px;
            border-left: 4px solid #c9a34e;
            padding-left: 20px;
            line-height: 1.2;
        }

        /* Podatki - levo poravnani */
        .modal-info {
            margin-top: 10px;
        }

        .modal-info-label {
            font-family: 'Open Sans', sans-serif;
            font-size: 11px;
            color: #888;
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }

        .modal-info-value {
            font-family: 'Roboto', sans-serif;
            font-size: 18px;
            color: #f0f0f0;
            word-break: break-word;
            font-weight: 500;
        }

        /* Zlati ločilni črti */
        .modal-divider {
            height: 1px;
            background: linear-gradient(90deg, #c9a34e, transparent);
            margin: 25px 0;
        }

        .modal-divider-light {
            height: 1px;
            background: rgba(201, 163, 78, 0.2);
            margin: 20px 0;
        }


        .modal-description .modal-info-value {
            font-size: 16px;
            line-height: 1.6;
            color: #ccc;
        }

        /* Instagram gumb */
        .modal-instagram {
            margin-top: 30px;
            text-align: left;
        }

        .modal-instagram a {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: transparent;
            border: 1.5px solid #c9a34e;
            color: #c9a34e;
            padding: 12px 28px;
            text-decoration: none;
            font-family: 'Open Sans', sans-serif;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }

        .modal-instagram a:hover {
            background: #c9a34e;
            color: #000;
            transform: translateX(5px);
        }

        .modal-instagram a i {
            font-size: 18px;
        }

        /* Responsive */
        @media (max-width: 600px) {
            .modal-content {
                padding: 35px 25px 30px 25px;
            }
            .modal-title {
                font-size: 36px;
                padding-left: 15px;
            }
            .modal-info-value {
                font-size: 16px;
            }
        }

/* -------------- POSLUSAJ NAS ------------------ */

 /* POSLUŠAJ NAS SEKCIJA */
        .poslusaj-nas {
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        /* Ozadje z efektom */
        .poslusaj-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0,0,0,0.9), rgba(0,0,0,0.7));
            z-index: 0;
        }

        .poslusaj-nas > * {
            position: relative;
            z-index: 1;
        }

        .poslusaj-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 50px;
        }

        /* Header */
        .poslusaj-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .poslusaj-header h2 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 70px;
            letter-spacing: 5px;
            text-transform: uppercase;
            color: #c9a34e;
            margin-bottom: 20px;
        }

        .poslusaj-header p {
            font-family: 'Open Sans', sans-serif;
            font-size: 16px;
            color: #aaa;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Glavna vsebina */
        .poslusaj-main {
            display: flex;
            gap: 50px;
            flex-wrap: wrap;
        }

        /* LEVI DEL - FEATURED SONG */
        .featured-song {
            flex: 1;
            min-width: 300px;
            background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
            border: 1px solid rgba(201, 163, 78, 0.3);
            padding: 40px;
            border-radius: 20px;
            transition: transform 0.3s, border-color 0.3s;
        }

        .featured-song:hover {
            transform: translateY(-5px);
            border-color: #c9a34e;
        }

        .song-label {
            display: inline-block;
            background: #c9a34e;
            color: #000;
            padding: 5px 15px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }

        .featured-song h3 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 36px;
            letter-spacing: 2px;
            margin-bottom: 10px;
            color: white;
        }

        .song-year {
            color: #c9a34e;
            font-size: 14px;
            margin-bottom: 20px;
        }

        .song-description {
            color: #aaa;
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 30px;
        }

        /* Glasbeni predvajalnik (mockup) */
        .music-player {
            background: #0a0a0a;
            border-radius: 15px;
            padding: 20px;
            margin: 20px 0;
        }

        .player-controls {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 15px;
        }

        .play-btn {
            width: 50px;
            height: 50px;
            background: #c9a34e;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: 0.3s;
        }

        .play-btn:hover {
            background: #b38b3a;
            transform: scale(1.05);
        }

        .play-btn i {
            font-size: 20px;
            color: #000;
            margin-left: 3px;
        }

        .track-info {
            flex: 1;
        }

        .track-title {
            font-weight: 600;
            margin-bottom: 5px;
        }

        .track {
            color: white;
        }

        .track-artist {
            font-size: 12px;
            color: #888;
        }

        .progress-bar {
            height: 4px;
            background: #2a2a2a;
            border-radius: 2px;
            cursor: pointer;
        }

        .progress {
            width: 45%;
            height: 100%;
            background: #c9a34e;
            border-radius: 2px;
        }

        .time-info {
            display: flex;
            justify-content: space-between;
            margin-top: 8px;
            font-size: 11px;
            color: #666;
        }

        .listen-btn {
            display: inline-block;
            background: #c9a34e;
            color: #000;
            text-decoration: none;
            padding: 12px 30px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 14px;
            transition: 0.3s;
            margin-top: 10px;
            text-align: center;
        }

        .listen-btn:hover {
            background: #b38b3a;
            transform: scale(1.02);
        }

        /* DESNI DEL - PLATFORME */
        .platforms {
            flex: 1;
            min-width: 300px;
        }

        .platforms h3 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 32px;
            letter-spacing: 2px;
            margin-bottom: 25px;
            border-left: 4px solid #c9a34e;
            padding-left: 20px;
            color: white;
        }

        .platform-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }

        .platform-card {
            background: #131313;
            padding: 20px;
            display: flex;
            align-items: center;
            gap: 15px;
            transition: all 0.3s;
            text-decoration: none;
            color: #fff;
            border: 1px solid #222;
        }

        .platform-card:hover {
            background: #1e1e1e;
            transform: translateX(5px);
            border-color: #c9a34e;
        }

        .platform-card i {
            font-size: 35px;
            color: #c9a34e;
        }

        .platform-info h4 {
            font-size: 16px;
            margin-bottom: 3px;
        }

        .platform-info p {
            font-size: 12px;
            color: #888;
        }

        /* DISCOGRAFIJA */
        .discography {
            margin-top: 60px;
            text-align: center;
        }

        .discography h3 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 32px;
            letter-spacing: 2px;
            margin-bottom: 30px;
        }

        .discography-grid {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }

        .album-card {
            background: #131313;
            padding: 20px;
            width: 180px;
            text-align: center;
            transition: 0.3s;
            border: 1px solid #222;
        }

        .album-card h4 {
            color: rgb(143, 143, 143);
        }

        
        .album-card p {
            color: rgb(37, 37, 37);
        }

        .album-card:hover {
            transform: translateY(-5px);
            border-color: #c9a34e;
        }

        .album-cover {
            width: 100%;
            aspect-ratio: 1;
            background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .album-cover i {
            font-size: 50px;
            color: #c9a34e;
        }

        .album-card h4 {
            font-size: 14px;
            margin-bottom: 5px;
        }

        .album-card p {
            font-size: 12px;
            color: #888;
        }

        /* Responsive */
        @media (max-width: 900px) {
            .poslusaj-header h2 {
                font-size: 50px;
            }
            .platform-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 600px) {
            .poslusaj-container {
                padding: 0 20px;
            }
            .featured-song {
                padding: 25px;
            }
            .featured-song h3 {
                font-size: 28px;
            }
        }


/* ===== PRVA SEKCIJA - SAMO NASLOV IN PUŠČICA ===== */
.hero-section {
    position: relative;
    height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)), url("podstrani/slike/KL_Photography-22.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 5.5px;
    font-size: 95px;
    text-transform: uppercase;
    color: white;
    margin-bottom: 30px;
    animation: fadeUp 0.8s ease forwards;
}

/* Zlata puščica */
.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 10;
}

.scroll-down i {
    font-size: 40px;
    color: #c9a34e;
    transition: all 0.3s ease;
}

.scroll-down i:hover {
    color: #e0b45a;
    transform: translateY(5px);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-15px);
    }
    60% {
        transform: translateX(-50%) translateY(-8px);
    }
}

/* ===== DRUGA SEKCIJA - OPIS BENDA ===== */
.about-section {
    background: linear-gradient(135deg, rgb(8, 8, 8), rgb(15, 15, 15));
    padding: 100px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
    text-align: center;
}

.about-badge {
    display: inline-block;
    background: rgba(201, 163, 78, 0.15);
    color: #c9a34e;
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 15px;
    border-radius: 30px;
    margin-bottom: 20px;
    border: 1px solid rgba(201, 163, 78, 0.3);
}

.about-title {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 5px;
    font-size: 70px;
    text-transform: uppercase;
    color: white;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #c9a34e, transparent);
}

.about-description {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: rgb(180, 180, 180);
    max-width: 900px;
    margin: 0 auto;
}

.about-description .highlight {
    color: #c9a34e;
    font-weight: 600;
}

/* ===== ZGODOVINA SEKCIJA ===== */
.zgodovina {
    min-height: 100vh;
    padding: 130px 0 100px;
    display: grid;
    place-items: center;
    position: relative;
    transition: background-image 0.5s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.zgodovina::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.85), rgba(0,0,0,0.75));
    z-index: 0;
}

.zgodovina > * {
    position: relative;
    z-index: 1;
}

.o-nas-container {
    margin: 0 auto;
    padding: 0 250px;
    width: 100%;
}

.year-menu {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.year-btn {
    background: none;
    border: none;
    font-size: 48px;
    font-weight: 800;
    color: #3a3a3a;
    cursor: pointer;
    padding: 0.2rem 0;
    transition: all 0.3s ease;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 3px;
    line-height: 1;
}

.year-btn:hover {
    color: #b38b3a;
    transform: translateY(-5px);
}

.year-btn.active {
    color: #c9a34e;
    font-size: 56px;
    transform: scale(1.1);
}

.content-right {
    width: 100%;
}

.year-content {
    display: none;
    border-radius: 0;
    padding: 40px;
    position: relative;
    background: transparent;
}

.year-content.active {
    display: block;
    animation: fadeInContent 0.4s ease forwards;
}

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

.year-header {
    margin-bottom: 35px;
    position: relative;
}

.year-header span {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 3px;
    font-size: 52px;
    font-weight: 500;
    text-transform: uppercase;
    border-left: 5px solid #c9a34e;
    padding-left: 25px;
    background: linear-gradient(135deg, #c9a34e, #e0b45a);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 10px rgba(201, 163, 78, 0.3);
}

.year-description {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #d0d0d0;
    padding: 20px 25px;
    background: rgba(0, 0, 0, 0.4);
    border-left: 3px solid #c9a34e;
}

.event-card {
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(10px);
    padding: 0;
    margin-bottom: 25px;
    border: 1px solid rgba(201, 163, 78, 0.2);
    transition: all 0.3s ease;
    overflow: hidden;
}

.event-card:hover {
    transform: translateY(-5px);
    border-color: #c9a34e;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.event-header {
    display: flex;
    gap: 15px;
    background: linear-gradient(135deg, rgba(80, 80, 80, 0.15), rgba(29, 29, 29, 0.05));
    padding: 18px 25px;
    border-bottom: 1px solid rgba(201, 163, 78, 0.3);
}

.event-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #c9a34e;
    margin: 0;
}

.event-date {
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    color: #888;
    margin-top: 5px;
    display: inline-block;
}

.event-body {
    padding: 25px;
}

.event-body p {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #c0c0c0;
    margin-bottom: 20px;
}

.member-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.chip {
    background: rgba(201, 163, 78, 0.1);
    border: 1px solid rgba(201, 163, 78, 0.3);
    font-family: 'Open Sans', sans-serif;
    padding: 8px 18px;
    font-size: 13px;
    color: #c9a34e;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.chip:hover {
    background: rgba(201, 163, 78, 0.2);
    transform: translateX(3px);
}

.song-highlight {
    background: linear-gradient(135deg, rgba(201, 163, 78, 0.15), rgba(201, 163, 78, 0.05));
    padding: 15px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
    border: 1px solid rgba(201, 163, 78, 0.2);
}

.song-highlight span {
    color: #c9a34e;
    font-weight: 600;
    font-size: 16px;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
}

.song-link {
    background: #c9a34e;
    color: #000;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: 0.3s;
    white-space: nowrap;
}

.song-link-element {
    padding-top: 18px;
    margin-left: auto;
}

.song-link:hover {
    background: #b38b3a;
    transform: translateX(3px);
}

.goals-list {
    list-style: none;
    padding: 0;
}

.goals-list li {
    padding: 12px 0;
    padding-left: 25px;
    position: relative;
    color: #c0c0c0;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.goals-list li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: #c9a34e;
    font-size: 16px;
}

.najemi-section {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.btn-najemi {
    display: inline-block;
    padding: 14px 50px;
    background: #c9a34e;
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 0;
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s;
    font-family: 'Open Sans', sans-serif;
    letter-spacing: 2px;
}

.btn-najemi:hover {
    background: #b38b3a;
    color: white;
}

/* Animacija fadeUp */
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 900px) {

    .hero-title {
        font-size: 60px;
    }
    .about-title {
        font-size: 50px;
    }
    .o-nas-container {
        padding: 0 30px;
    }
    .year-header span {
        font-size: 38px;
        border-left: none;
        padding-left: 0;
        border-bottom: 3px solid #c9a34e;
        padding-bottom: 10px;
        display: inline-block;
    }
    .event-header {
        display: block;
        text-align: center;
    }
    .song-link-element {
        margin-left: 0;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .hero-section {
            background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)), url("podstrani/slike/KL_Photography-66.jpg");
    }

    .hero-title {
        font-size: 48px;
    }
    .about-title {
        font-size: 40px;
    }
    .about-description {
        font-size: 14px;
    }
    .year-content {
        padding: 20px;
        text-align: center;
    }
    .year-description {
        padding: 15px;
        font-size: 14px;
        text-align: left;
    }
    .year-header span {
        font-size: 32px;
    }
    .event-title {
        font-size: 22px;
    }
    .song-highlight {
        flex-direction: column;
        text-align: center;
    }
    .song-link {
        width: 100%;
        text-align: center;
    }
}
        
/* -------------- ADMIN ------------------ */

.admin-form  {
    font-size: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}


button.btn.btn-primary {
    margin-top: 10px;
    font-size: 15px;
}


       /* ==================== FOOTER ==================== */
footer {
    background: linear-gradient(180deg, #0a0a0a 0%, #080808 100%);
    padding: 70px 60px 50px;
    position: relative;
    border-top: 1px solid rgba(201, 163, 78, 0.25);
}

/* Zlata črta na vrhu */
footer::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #c9a34e, #c9a34e, transparent);
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

/* Footer kolone */
.footer-col {
    flex: 1;
    min-width: 180px;
}

/* Logo kolona - malo večja */
.footer-logo-col {
    flex: 1.2;
    min-width: 220px;
}

.footer-logo {
    width: 200px;
    height: auto;
    opacity: 0.8;
    transition: all 0.3s ease;
    margin-bottom: 18px;
    filter: brightness(0.9);
}

.footer-logo:hover {
    opacity: 1;
    filter: brightness(1);
    transform: scale(1.02);
}

.footer-desc {
    color: #6a6a6a;
    font-size: 13px;
    line-height: 1.6;
    max-width: 260px;
    font-weight: 400;
}

/* Naslovi v footerju */
.footer-col h3 {
    color: #c9a34e;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 26px;
    letter-spacing: 1.5px;
    margin-bottom: 22px;
    position: relative;
    display: inline-block;
    font-weight: 500;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 35px;
    height: 2px;
    background: #c9a34e;
    transition: width 0.3s ease;
}

.footer-col:hover h3::after {
    width: 55px;
}

/* Booking podatki */
footer .booking p {
    margin: 0 0 10px 0;
    color: #7a7a7a;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

footer .booking p i {
    width: 24px;
    color: #c9a34e;
    font-size: 14px;
}

footer .booking p:hover {
    color: #c9a34e;
    transform: translateX(3px);
}

/* Socialna omrežja - SPECIFIČNI SELEKTORJI ZA FOOTER */
footer .social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

footer .social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.25s ease;
    padding: 4px 0;
}

footer .social-link i {
    font-size: 22px;
    color: #6a6a6a;
    transition: all 0.25s ease;
    width: 32px;
    text-align: center;
}

footer .social-link span {
    color: #7a7a7a;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    transition: color 0.25s ease;
}

footer .social-link:hover {
    transform: translateX(5px);
}

footer .social-link:hover i {
    color: #c9a34e;
}

footer .social-link:hover span {
    color: #c9a34e;
}

/* Navigacija - SPECIFIČNI SELEKTORJI ZA FOOTER */
footer .nav-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

footer .nav-link {
    text-decoration: none;
    color: #6a6a6a;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    transition: all 0.25s ease;
    display: inline-block;
    padding: 3px 0;
}

footer .nav-link:hover {
    color: #c9a34e;
    transform: translateX(6px);
}

/* Podfooter */
.pod-footer {
    background: #050505;
    padding: 18px 20px;
    text-align: center;
    border-top: 1px solid rgba(201, 163, 78, 0.1);
}

.copyright {
    font-size: 12px;
    font-weight: 400;
    color: #5a5a5a;
    font-family: 'Open Sans', sans-serif;
    letter-spacing: 0.3px;
}

.copyright a {
    color: #c9a34e;
    text-decoration: none;
    transition: color 0.2s;
}

.copyright a:hover {
    color: #e0b45a;
    text-decoration: underline;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1000px) {
    footer {
        padding: 60px 40px 45px;
    }
    .footer-container {
        gap: 35px;
    }
}

@media (max-width: 850px) {
    footer {
        padding: 50px 30px 40px;
    }
    .footer-container {
        gap: 40px;
    }
    .footer-col {
        min-width: 200px;
    }
}

@media (max-width: 700px) {
    footer {
        padding: 45px 25px 35px;
    }
    .footer-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    .footer-col {
        text-align: center;
    }
    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
    }
    .footer-col:hover h3::after {
        width: 60px;
    }
    .footer-logo {
        margin: 0 auto 15px;
    }
    .footer-desc {
        margin: 0 auto;
        text-align: center;
    }
    footer .booking p {
        justify-content: center;
    }
    footer .social-links {
        align-items: center;
    }
    footer .nav-links {
        align-items: center;
    }
    footer .nav-link:hover {
        transform: translateX(0) translateY(-2px);
    }
    footer .social-link:hover {
        transform: translateX(0) translateY(-2px);
    }
    footer .booking p:hover {
        transform: translateX(0);
    }
}

@media (max-width: 480px) {
    footer {
        padding: 35px 20px 30px;
    }
    .footer-col h3 {
        font-size: 24px;
    }
    .footer-logo {
        width: 160px;
    }
    .footer-desc {
        font-size: 12px;
    }
    footer .booking p, 
    footer .social-link span, 
    footer .nav-link {
        font-size: 13px;
    }
    footer .social-link i {
        font-size: 20px;
        width: 28px;
    }
}

/* ------------ KONTAKT ------------- */

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-image: linear-gradient(to bottom, rgb(10, 10, 10), rgb(17, 17, 17));
            font-family: 'Open Sans', sans-serif;
            color: #fff;
        }

        html {
            scroll-behavior: smooth;
        }

        ::-webkit-scrollbar {
            display: none;
        }


        /* ===== KONTAKT SEKCIJA ===== */
        .kontakt-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 50px 100px;
        }

        .kontakt-header {
            margin-top: 50px;
            text-align: center;
            margin-bottom: 60px;
        }

        .kontakt-header h1 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 70px;
            letter-spacing: 5px;
            text-transform: uppercase;
            color: #c9a34e;
            margin-bottom: 20px;
        }

        .kontakt-header p {
            font-family: 'Open Sans', sans-serif;
            font-size: 16px;
            color: #aaa;
            max-width: 600px;
            margin: 0 auto;
        }

        /* ===== KONTAKT VSEBINA ===== */
        .kontakt-container {
            display: flex;
            gap: 50px;
            flex-wrap: wrap;
        }

        /* LEVI DEL - INFORMACIJE */
        .kontakt-info {
            flex: 1;
            min-width: 280px;
        }

        .info-card {
            background: #131313;
            padding: 30px;
            margin-bottom: 30px;
        }

        .info-card i {
            font-size: 40px;
            color: #c9a34e;
            margin-bottom: 20px;
        }

        .info-card h3 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 28px;
            letter-spacing: 2px;
            margin-bottom: 15px;
            color: #fff;
        }

        .info-card p {
            font-family: 'Open Sans', sans-serif;
            font-size: 15px;
            color: #aaa;
            line-height: 1.6;
        }

        .info-card a {
            color: #c9a34e;
            text-decoration: none;
            transition: 0.2s;
        }

        .info-card a:hover {
            color: #b38b3a;
        }


        .social-links h3 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 28px;
            letter-spacing: 2px;
            margin-bottom: 20px;
            color: #fff;
        }

        .social-icons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .social-icons a {
            display: flex;
            align-items: center;
            gap: 10px;
            background: #1e1e1e;
            padding: 12px 25px;
            text-decoration: none;
            color: #fff;
            font-family: 'Open Sans', sans-serif;
            font-size: 16px;
            transition: 0.3s;
        }

        .social-icons a:hover {
            background: #c9a34e;
            color: #000;
            transform: translateY(-3px);
        }

        .social-icons a i {
            font-size: 20px;
        }

        /* DESNI DEL - KONTAKTNI OBRAZEC */
        .kontakt-form {
            flex: 1;
            min-width: 300px;
            background: #131313;
            padding: 40px;
        }

        .kontakt-form h3 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 32px;
            letter-spacing: 2px;
            margin-bottom: 30px;
            color: #fff;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            background: #1e1e1e;
            border: none;
            color: #fff;
            font-family: 'Open Sans', sans-serif;
            font-size: 14px;
            transition: 0.2s;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-left: 3px solid #c9a34e;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .submit-btn {
            background: #c9a34e;
            color: #000;
            border: none;
            padding: 15px 40px;
            font-family: 'Bebas Neue', sans-serif;
            font-size: 20px;
            letter-spacing: 2px;
            cursor: pointer;
            transition: 0.3s;
            width: 100%;
        }

        .submit-btn:hover {
            background: #b38b3a;
            transform: translateY(-2px);
        }

        /* ===== MAPA ===== */
        .map-section {
            margin-top: 60px;
        }

        .map-section h3 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 32px;
            letter-spacing: 2px;
            margin-bottom: 30px;
            text-align: center;
            color: #fff;
        }

        .map-container {
            background: #131313;
            padding: 20px;
        }

        .map-container iframe {
            width: 100%;
            height: 400px;
            border: none;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 768px) {
            .kontakt-section {
                padding: 40px 20px 80px;
            }

            .kontakt-header h1 {
                font-size: 48px;
            }

            .links a {
                font-size: 18px;
                padding: 12px 20px;
            }

            .social-icons a {
                padding: 10px 20px;
                font-size: 14px;
            }

            .naslov::after {
                display: none;
            }

            .naslov {
                margin-bottom: 0;
            }

            .koncerti-naslov::after {
                display: none;
            }

            .koncerti-naslov {
                text-align: center;
                margin-bottom: 0;
            }
        }


        /* ===== GALERIJA STRAN ===== */
        .galerija-page {
            min-height: 100vh;
            padding: 60px 0 100px;
            position: relative;
            overflow: hidden;
        }

        .galerija-page::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(201, 163, 78, 0.08), transparent 70%);
            border-radius: 50%;
            z-index: 0;
        }

        .galerija-page::after {
            content: '';
            position: absolute;
            bottom: -20%;
            left: -5%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(201, 163, 78, 0.05), transparent 70%);
            border-radius: 50%;
            z-index: 0;
        }

        .galerija-container {
            max-width: 1400px;
            margin: 0 auto;
            margin-top: 100px;
            padding: 0 50px;
            position: relative;
            z-index: 1;
        }

        /* Header */
        .galerija-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .galerija-badge {
            display: inline-block;
            background: transparent;
            color: #c9a34e;
            border: none;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 2px;
            margin-bottom: 20px;
        }

        .galerija-naslov {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 70px;
            letter-spacing: 5px;
            color: #fff;
            margin-bottom: 15px;
        }

        .galerija-subtitle {
            color: #888;
            font-size: 16px;
        }

        /* Admin link */
        .admin-link {
            text-align: center;
            margin-bottom: 40px;
        }

        .admin-link a {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            border: 1px solid rgba(201, 163, 78, 0.3);
            color: #c9a34e;
            padding: 8px 20px;
            text-decoration: none;
            font-size: 13px;
            transition: all 0.3s ease;
        }

        .admin-link a:hover {
            background: #c9a34e;
            color: #000;
            transform: translateY(-2px);
        }

        /* Grid galerije */
        .galerija-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 25px;
        }

        .galerija-item {
            background: rgba(25, 25, 25, 0.8);
            backdrop-filter: blur(2px);
            overflow: hidden;
            transition: all 0.3s ease;
            cursor: pointer;
            border: 1px solid rgba(201, 163, 78, 0.1);
        }

        .galerija-item:hover {
            transform: translateY(-8px);
            border-color: #c9a34e;
        }

        .galerija-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .galerija-item:hover img {
            transform: scale(1.05);
        }

        .galerija-info {
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid rgba(255,255,255,0.05);
        }

        .galerija-name {
            color: #aaa;
            font-size: 12px;
            font-family: 'Open Sans', sans-serif;
        }

        .galerija-date {
            color: #666;
            font-size: 11px;
        }

        /* Lightbox */
        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 2000;
            justify-content: center;
            align-items: center;
            backdrop-filter: blur(5px);
        }

        .lightbox.show {
            display: flex;
            animation: fadeIn 0.3s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .lightbox-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
        }

        .lightbox-content img {
            max-width: 100%;
            max-height: 85vh;
            object-fit: contain;
            border: 2px solid rgba(201, 163, 78, 0.3);
        }

        .lightbox-close {
            position: absolute;
            top: -40px;
            right: 0;
            font-size: 35px;
            color: #c9a34e;
            cursor: pointer;
            transition: 0.3s;
        }

        .lightbox-close:hover {
            transform: rotate(90deg);
        }

        .lightbox-caption {
            position: absolute;
            bottom: -35px;
            left: 0;
            right: 0;
            text-align: center;
            color: #888;
            font-size: 14px;
        }

        /* No images */
        .no-images {
            text-align: center;
            padding: 80px;
            background: rgba(25, 25, 25, 0.6);
            border: 1px solid rgba(201, 163, 78, 0.2);
        }

        .no-images i {
            font-size: 60px;
            color: #c9a34e;
            margin-bottom: 20px;
            display: block;
        }

        .no-images p {
            color: #aaa;
            font-size: 18px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .galerija-container {
                padding: 0 20px;
            }
            .galerija-naslov {
                font-size: 50px;
            }
            .galerija-grid {
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
                gap: 15px;
            }
            .galerija-item img {
                height: 200px;
            }
        }

        @media (max-width: 480px) {
            .galerija-naslov {
                font-size: 40px;
            }
            .galerija-subtitle {
                font-size: 14px;
            }
        }