* {
	font-family: arial;
	}

body {
	background-color: #F0F0F0;
	}

ul a {
	color: black;
	text-decoration: none;
	display: block;
	padding: 15px 20px;
	text-align: center;
	background-color: white;
	
	
}

ul a:hover {
	background-color: #2E416B;
	color: white;
}

/* grid */
ul {
	display: grid;
	justify-content: start;
	grid-template-columns: repeat(4, 150px); /* ENOTNE ŠIRINE GUMBOV */
	grid-template-rows: 100px ;
	list-style: none;
	color: white;
	font-weight: bolder;
	padding: 0;
	margin: 0;
	margin-left: 335px;
	margin-top: 70px;
	margin-bottom: 5%;
	
	}
	
.box1 {
    grid-column: 1 / 2; 
	grid-row: 2 / 3;
}

.box2 {
    grid-column: 2 / 3; 
	grid-row: 2 / 3;
}

.box3 {
    grid-column: 3 / 4; 
	grid-row: 2 / 3;
}

.box4 {
    grid-column: 4 / 5; 
	grid-row: 2 / 3;
}

.box5 {
    grid-column: 5 / 6; 
	grid-row: 2 / 3;
}


.galerija {
	display: grid;
	justify-content: space-around;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	grid-template-rows: repeat (3, auto);
	column-gap: 1%;
	row-gap: 5%;
	padding-top: 0;
	margin-top: -2%;
	padding-left: 2%;
	padding-right: 2%;
}


.galerija img {
	width: 100%;
	height: auto;
	object-fit: cover;
}

.home { 
	display: grid;
	justify-content: space-around;
	grid-template-columns: 100%;
	grid-template-rows: repeat (3, auto);
	padding-top: -3%;
	gap: 1.5%;
}

.home img {
	width: 92vw;
	height: auto;
	display: block;
	/*margin: 0 auto;*/
	padding-left: 50px;

}

/*.logo {
	padding-top: 20px;
	padding-left: 50px;
	padding-bottom: 10px;
	font-size: 40px;
	margin: 0;
}*/

	
/*.logo1 {
	font-size: 60px;
}
	
.logo2 {
	font-weight: bold;
}*/


.galerija img {
    transition: 0.5s;
}

.galerija img:hover {
    transform: scale(1.2);
    filter: brightness(110%);
}

.home img {
	transition: 0.4s;
}

.home img:hover {
	border-radius: 20px;
	
}

#lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 10px;
}

.arrow {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    z-index: 10000;
    transition: background-color 0.3s;
}

.arrow:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.left-arrow {
    left: 20px;
}

.right-arrow {
    right: 20px;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10001;
    transition: color 0.3s;
}

.close-btn:hover {
    color: #ccc;
}

.logo a {
	color: black;
	text-decoration: none;
	display: block;
	
}

.video {
	position: relative;
	width: 100%;
	margin-bottom: 0;
	display: block;
	
}

.logo img {
	position: absolute;
	top: 25px;
	left: 2.5%;
	height: 150px;
	width: auto;
	background: transparent;
	padding-bottom: 0;
	margin-bottom: 0;
}


.img-about-me {
	width: 30%;
	padding: 0;
	margin-left: 2%;
	margin-top: -20px;
}


.text-about-me {
	margin-left: 36%;
	margin-top: -35%;
	line-height: 1.6;
	margin-bottom: 32%;
}

a {
	color: black;
	text-decoration: none;
}

.kontakt-links {
	margin-left: 30px;
}

.footer {
	text-align: center;
	padding: 20px;
	background-color: black;
	color: white;
	margin-top: 7%;
	font-weight: bold;
	margin-left: 2%;
	margin-right: 2%;
}

.hamburger {
	display: none;
}

.footer a {
    color: white;
    text-decoration: underline;
}