/* ========================= */
/* MOBILE VERSION - DELUJOČ HAMBURGER */
/* ========================= */

/* LOGO - centriran */


.logo {
    display: flex;
    justify-content: center; /* horizontalno */
    align-items: center;     /* vertikalno */
    height: 120px;           /* višina containerja */
}


.logo img {
    display: block;
    margin: 10px auto 0 auto;
    height: 90px;
    position: relative;
	align-self: center;
}



/* HAMBURGER - centered under logo */
.hamburger {
    display: block;
    text-align: center;
    font-size: 34px;
    cursor: pointer;
    padding: 10px;
    background-color: #F0F0F0;
    z-index: 2000;
	margin-top: 3.5%;
	margin-bottom: 2%;
}

/* NAVIGACIJA - reset desktop grid */
#menu {
    display: none !important; /* pomembno, override desktop CSS */
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    list-style: none;
    position: relative;
    z-index: 1000;
}

/* prikaži ko kliknemo hamburger */
#menu.show {
    display: block !important;
}

/* MENU ITEMS */
#menu li {
    width: 100%;
}

#menu a {
    display: block;
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

/* reset desktop grid pozicije */
.box1, .box2, .box3, .box4 {
    grid-column: auto !important;
    grid-row: auto !important;
}

/* odstrani hover */
#menu a:hover {
    background: white;
    color: black;
}

/* GALERIJA - 1 slika na vrstico */
.galerija {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 20px;
    padding: 10px;
}

.galerija img {
    width: 100%;
    height: auto;
}

/* HOME SLICE */
.home img {
    width: 100%;
    padding: 0;
}

/* ABOUT */
.img-about-me {
    width: 90%;
    margin: auto;
    display: block;
}

.text-about-me {
    margin: 20px;
}

/* FOOTER */
.footer {
    margin-left: 0;
    margin-right: 0;
}

.footer a {
    color: white;
    text-decoration: none;
}