* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-family: 'Poppins';
    color: black;
    width: 100vw;
    max-width: 100%;
    height: 100%;
    overflow-x: hidden;
    scroll-snap-type: y mandatory;
    scroll-padding-top: 80px;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
}





/* Navigacijska vrstica */
#navigacijska-vrstica {
    width: 100vw;
    z-index: 1000;
    position: fixed;
    top: 0;
    background-color: white;
    height: 80px;
    box-shadow: 0px 15px 15px 0 rgba(0, 0, 0, 0.1);
}

#zgornji-menu {
    width: 85%;
    height: 100%;
    margin: 0 auto;
    color: black;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

#zgornji-menu li:first-child {
    margin-right: auto;
    z-index: 1101;
    font-size: small;
}

nav a {
    font-size: x-large;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: black;
}

#zgornji-menu .logo {
    font-size: xx-large;
}

#stranski-menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 100vw;
    z-index: 1100;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: transform 0.4s ease, opacity 0.4s ease, visibility 0s linear 0.4s;
}

#stranski-menu.odprto {
    transform: translateX(0%);
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

#stranski-menu .zapri-menu {
    align-self: flex-end;
    margin-right: 7.5%;
    margin-top: 25px;
}

#stranski-menu li,
#stranski-menu .link {
    list-style-type: none;
    margin-top: 30px;
}

@media (max-width: 992px) {
    .skrij {
        display: none;
    }
}

@media (min-width: 993px) {
    #navigacijska-vrstica {
        height: 100px;
    }
    #zgornji-menu .logo {
        font-size: 3rem;
    }
    .skrij {
        font-size: 1.5rem;
        padding: 0 20px;
    }
    .menu,
    .stranski-menu,
    .index-hero-mobile,
    .index-slider-mobile,
    .index-slider-okvir-mobile {
        display: none;
    }
}










/* index.html */
/* Hero */
.index-hero {
    display: none;
}

section {
    scroll-snap-align: center;
    scroll-snap-stop: always;
}

.index-hero-mobile {
    padding-bottom: 100px;
    max-width: 85vw;
    margin: 0 auto;
}

.index-slider-mobile {
    padding: 100px 0;
    width: 85vw;
    min-height: 60svh;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    z-index: 1;
}

.index-slider-okvir-mobile {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.slike-mobile {
    display: flex;
    aspect-ratio: 9 / 16;
    width: 100%;
    max-width: 100%;
    max-height: 80svh;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scroll-snap-stop: always;
    box-shadow: 0 1.5rem 3rem -0.75rem rgba(0, 0, 0, 0.75);
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.index-slider-okvir-mobile img {
    flex: 1 0 100%;
    width: 100%;
    max-width: 100%;
    max-height: 80svh;
    object-fit: contain;
    scroll-snap-align: start;
}

.slike-navigacija-mobile {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}

.slike-navigacija-mobile a {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s;
}

@media (min-width: 400px) {
    .index-slider-mobile {
        height: auto;
        min-height: 90svh;
        scroll-snap-align: center;
    }
}

@media (min-width: 500px) {
    .slike-mobile {
        max-height: 90svh;
    }
    .index-slider-okvir-mobile img {
        max-height: 90svh;
    }
}

@media (min-width: 600px) {
    .index-slider-div {
        height: calc(100vh - 100px);
    }

    .index-hero-mobile {
        display: none;
    }

    .index-hero {
        display: block;
        width: 85vw;
        margin: 140px auto 0;
    }

    .index-slider {
        margin: auto;
        display: flex;
        justify-content: center;
        width: 100%;
        padding-top: 40px;
        scroll-snap-align: start;
        scroll-snap-stop: always;
        position: relative;
        height: auto;
    }

    .index-slider-okvir {
        position: relative;
        width: 100%;
        margin: 0 auto;
        height: auto;
    }

    .slike {
        display: flex;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        scroll-snap-stop: always;
        box-shadow: 0 1.5rem 3rem -0.75rem rgba(0, 0, 0, 0.75);
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        min-width: 100%;
        max-height: 100%;
    }

    .slike img {
        flex: 1 0 100%;
        object-fit: cover;
        width: 100%;
        max-width: 100%;
        scroll-snap-align: start;
        max-height: 100%;
    }

    .slike-navigacija {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 10px;
        z-index: 2;
    }

    .slike-navigacija a {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.7);
        border: 1px solid rgba(0, 0, 0, 0.2);
        transition: background-color 0.3s;
        cursor: pointer;
    }
}

@media (min-width: 993px) {
    .index-hero-mobile {
        display: none;
    }

    .index-hero {
        display: block;
        width: 65vw;
        margin: 140px auto 0;
    }

    .index-slider {
        margin: auto;
        display: flex;
        justify-content: center;
        width: 100%;
        padding-top: 40px;
        scroll-snap-align: start;
        scroll-snap-stop: always;
        position: relative;
        height: auto;
    }

    .index-slider-okvir {
        position: relative;
        width: 100%;
        margin: 0 auto;
        height: auto;
    }

    .slike {
        display: flex;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        scroll-snap-stop: always;
        box-shadow: 0 1.5rem 3rem -0.75rem rgba(0, 0, 0, 0.75);
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        min-width: 100%;
    }

    .slike img {
        flex: 1 0 100%;
        object-fit: cover;
        width: 100%;
        max-width: 100%;
        max-height: 85vh;
        scroll-snap-align: start;
    }
}






/* Pristop */
@media (min-width: 300px) {
    #index-pristop-mobile {
        width: 85vw;
        margin: 30px auto 0;
        padding: 30px 20px 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        scroll-snap-align: center;
        scroll-snap-stop: always;
        box-shadow: 0 1.5rem 3rem -0.75rem rgba(0, 0, 0, 0.75);
        background-color: white;
        z-index: 10;
        position: relative;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    .index-vrstica {
        margin: 0 auto;
        padding: 20px 10px;
        text-align: center;
    }

    .index-stolpec q {
        font-size: medium;
    }

    .index-stolpec p {
        width: 80%;
        margin: 10px auto;
        font-size: small;
        text-align: center;
    }

    .index-stolpec img {
        width: 80%;
        box-shadow: 0 1rem 2rem -0.75rem rgba(0, 0, 0, 0.75);
    }
}

@media (min-width: 400px) {
    #index-pristop-mobile {
        height: auto;
        min-height: 80svh;
    }
}

@media only screen and (min-width: 600px) {
    #index-pristop {
        padding-top: 50px;
        display: block;
        padding-bottom: 100px;
    }

    #index-pristop .index-vrstica {
        padding: 0;
        display: flex;
        width: 100%;
        height: 80vh;
        margin: 0 auto;
        box-shadow: 0 1.5rem 3rem -0.75rem rgba(0, 0, 0, 0.75);
    }
    
    #index-pristop .index-vrstica .index-stolpec {
        width: 50%;
        height: 100%;
        display: flex;
        flex-direction: column;
        overflow-y: hidden;
    }
    
    #index-pristop .index-vrstica .index-stolpec #citat {
        font-size: large;
        width: 70%;
        text-align: center;
        align-items: center;
        margin: 100px auto;
    }

    #index-pristop .index-vrstica .index-stolpec p {
        width: 70%;
        margin: 0px auto;
        font-size: medium;
        text-align: center;
        text-align: justify;
    }

    #index-pristop .index-vrstica .index-stolpec img {
        height: 100%;
        object-fit: contain;
    }

    #index-pristop .index-vrstica .index-stolpec-slika {
        width: 50%;
        height: 100%;
        background-image: url('assets/index-mobile/DSC06722.jpg');
        background-size: contain;
        margin-left: auto;
        background-repeat: no-repeat;
        background-position: right;
    }
}

@media only screen and (min-width: 993px) {
    #index-pristop {
        padding-top: 50px;
        display: block;
        padding-bottom: 100px;
    }

    #index-pristop .vrstica {
        display: flex;
        width: 75%;
        margin: 0 auto;
        box-shadow: 0 1.5rem 3rem -0.75rem rgba(0, 0, 0, 0.75);
        height: 80vh;
    }
    
    #index-pristop .vrstica .stolpec {
        width: 50%;
        height: 100%;
        display: flex;
        flex-direction: column;
        overflow-y: hidden;
    }

    #index-pristop .vrstica .stolpec img {
        height: 100%;
        object-fit: contain;
    }
    
    #index-pristop .vrstica .stolpec #citat {
        font-size: large;
        width: 70%;
        text-align: center;
        align-items: center;
        margin: 100px auto;
    }

    #index-pristop .vrstica .stolpec p {
        width: 70%;
        margin: 100px auto;
        font-size: medium;
        text-align: center;
        text-align: justify;
    }

    .stolpec-slika {
        width: 50%;
        height: 100%;
        background-image: url('assets/index-mobile/DSC06722.jpg');
        background-size: contain;
        margin-left: auto;
        background-repeat: no-repeat;
        background-position: right;
    }
}




































/* //////////////////// galerija.html //////////////////// */
.galerija-hero {
    padding-top: 100px;
    padding-bottom: 20px;
    width: 85vw;
    margin: 0 auto;
}

.galerija-vrstica {
  display: block;
}

.galerija-stolpec {
    display: block;
    text-decoration: none;
    flex: 1;
    aspect-ratio: 3 / 2;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    cursor: pointer;
    overflow: hidden;
    transition: filter 0.3s ease;
}


.galerija-stolpec .besedilo {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    text-align: center;
    padding: 1rem;
}

.galerija-vrstica a {
    margin-bottom: 10px;
    box-shadow: 0px 15px 15px 0px rgba(0, 0, 0, 0.5);
}

.galerija-stolpec:hover .besedilo {
  opacity: 1;
}

@media only screen and (min-width: 993px) {
    .galerija-hero {
        padding-top: 120px;
        width: 60vw;
        margin: 0 auto;
    }

    .galerija-vrstica {
        display: flex;
    }

    .galerija-stolpec {
        display: block;
        text-decoration: none;
        color: inherit;
    }

    .galerija-stolpec:hover {
        filter: brightness(80%);
    }

    .galerija-stolpec .besedilo {
        position: absolute;
        inset: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        color: white;
        font-weight: 700;
        font-size: 1.5rem;
        opacity: 0;
        transition: opacity 0.3s ease;
        pointer-events: none;
        text-align: center;
        padding: 1rem;
    }
 
    .galerija-vrstica a {
        margin-bottom: 0;
        box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.5);
    }

}










/* //////////////////// koncertna.html //////////////////// */
.koncertna-hero {
    padding-top: 100px;
    width: 85vw;
    margin: 0 auto;
}

.koncertna-hero img {
    width: 100%;
    padding-bottom: 10px;
}

@media only screen and (min-width: 600px) {
    .koncertna-hero {
        padding-top: 110px;
        width: 85vw;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
    }

    .koncertna-vrstica {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 10px;
        align-items: stretch;
    }

    .koncertna-vrstica img {
        height: auto;
        width: auto;
        max-height: 250px;
        object-fit: contain;
        display: block;
    }
}

@media only screen and (min-width: 993px) {
    .koncertna-vrstica img {
        max-height: 400px;
    }
}

@media only screen and (min-width: 1200px) {
    .koncertna-vrstica img {
        max-height: 500px;
    }
}

@media only screen and (min-width: 1400px) {
    .koncertna-vrstica img {
        max-height: 550px;
    }
}










/* //////////////////// crnobela.html //////////////////// */
.hero-crnobela {
    padding-top: 100px;
    width: 85vw;
    margin: 0 auto;
}

.hero-crnobela img {
    width: 100%;
    padding-bottom: 10px;
}

@media only screen and (min-width: 600px) {
    .hero-crnobela {
        padding-top: 110px;
        width: 85vw;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
    }

    .vrstica-crnobela {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 10px;
        align-items: stretch;
    }

    .vrstica-crnobela img {
        height: auto;
        width: 50%;
        max-height: 250px;
        object-fit: contain;
        display: block;
    }
}

@media only screen and (min-width: 993px) {
    .vrstica-crnobela img {
        max-height: 400px;
    }
}

@media only screen and (min-width: 1200px) {
    .vrstica-crnobela img {
        max-height: 500px;
    }
}

@media only screen and (min-width: 1400px) {
    .vrstica-crnobela img {
        max-height: 550px;
    }
}










/* //////////////////// informacije.html //////////////////// */
.hero-informacije {
    display: none;
}

.hero-informacije-mobile {
    margin: 0 auto;
    margin-top: 110px;
    padding: 20px 0;
    padding-top: 0;
    width: 85vw;
    box-shadow: 10px 0px 10px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 29px;
}

.avtoportret {
    width: 80%;
    margin: 0 auto;
    padding: 30px 0;
}

.avtoportret img {
    width: 100%;
    box-shadow: 10px 0px 10px 10px rgba(0, 0, 0, 0.15);
}

.hero-informacije-mobile .quote {
    width: 80%;
    margin: 0px auto;
}

@media only screen and (min-width: 700px) {


}

@media only screen and (min-width: 768px) {
    .hero-informacije-mobile {
        display: none;
    }

    .hero-informacije {
        display: block;
        margin: 0 auto;
        margin-top: 140px;
        width: 85vw;
        box-shadow: 10px 0px 10px 10px rgba(0, 0, 0, 0.1);
        padding: 60px 0px;
    }

    .informacije-vrstica {
        width: 80%;
        margin: 0 auto;
        display: flex;
        gap: 40px;
    }

    .informacije-stolpec {
        width: 50%;
    }

    .informacije-stolpec img {
        width: 100%;
        margin-left: auto;
        box-shadow: 10px 0px 10px 10px rgba(0, 0, 0, 0.1);
    }


}

@media only screen and (min-width: 1200px) {
    .hero-informacije {
        width: 60vw;
    }
}










/* //////////////////// kontakt.html //////////////////// */
.hero-kontakt {
    margin: 0 auto;
    margin-top: 120px;
    padding: 20px;
    width: 85vw;
    box-shadow: 10px 0px 10px 10px rgba(0, 0, 0, 0.1);
}

@media only screen and (min-width: 993px) {
    .hero-kontakt {
        margin: 0 auto;
        margin-top: 140px;
        padding: 50px;
        width: 60vw;
        box-shadow: 10px 0px 10px 10px rgba(0, 0, 0, 0.1);
    }
}