/*
Theme Name: Moja Tema Voće i Povrće
Theme URI: http://example.com/
Author: ivan v
Description: Minimalna WP tema sa homepage, galerijom i kontaktom
Version: 1.2
License: ive_ivan@hotmail.com
Text Domain: moja-tema
*/

/* Osnovni stil */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f9f9f9;
    color: #333;
}
header {
    background: #4CAF50;
    color: white;
    padding: 20px;
    text-align: center;
}
main {
    padding: 20px;
    max-width: 1000px;
    margin: auto;
}
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 10px;
    margin-top: 40px;
}

/* Navigacija */
.main-nav {
    background: #388E3C;
    padding: 10px 0;
    margin-top: 15px;
    border-radius: 8px;
}
.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 30px;
}
.main-nav ul li {
    display: inline;
}
.main-nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: color 0.3s, border-bottom 0.3s;
    padding: 5px;
}
.main-nav ul li a:hover {
    color: #FFEB3B;
    border-bottom: 2px solid #FFEB3B;
}
.site-title {
    color: white;
    text-decoration: none;
}

/* Galerija i video grid */
.media-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 stavke po redu na desktopu */
    gap: 20px;
    padding: 20px 0;
}

.media-item {
    text-align: center;
}

.media-item img, 
.media-item video {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: transform 0.2s ease;
}

.media-item img:hover, 
.media-item video:hover {
    transform: scale(1.03);
}

/* Responsive za tablete */
@media (max-width: 1024px) {
    .media-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 stavke po redu */
    }
}

/* Responsive za mobitele */
@media (max-width: 600px) {
    .media-grid {
        grid-template-columns: 1fr; /* 1 stavka po redu */
    }
}

/* Lightbox stilovi */
#lightbox-overlay {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
}
#lightbox-overlay img, 
#lightbox-overlay video {
    max-width: 90%;
    max-height: 80%;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(255,255,255,0.5);
}
#lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

/* Pozadina s overlay efektom na početnoj stranici */
body.home {
    position: relative;
    background: url("https://mojevoceipovrce.com/wp-content/themes/tema/vocnjak.jpg") no-repeat center center fixed;
    background-size: cover;
}
body.home::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.1);
    z-index: 0;
    pointer-events: none;
}
body.home main {
    position: relative;
    z-index: 1;
}
.home-main {
    color: white;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}
.home-main h1,
.home-main h2,
.home-main h3,
.home-main p,
.home-main a {
    color: white;
}

/* Sticky footer layout */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}
body {
    display: flex;
    flex-direction: column;
}
main {
    flex: 1;
}
footer {
    text-align: center;
    padding: 20px;
    background: #333;
    color: #fff;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    margin-top: 20px;
}
.video-item {
    text-align: center;
}
.video-title {
    margin-top: 8px;
    font-size: 0.95rem;
}

/* Font za naslov u headeru */
.site-title,
.site-title a {
    font-family: "Arial Nova", Arial, sans-serif;
    font-weight: bold;
    font-size: 2.5rem; /* prilagodi po želji */
    text-decoration: none;
    color: white;
    text-transform: uppercase; /* uvijek velika slova */
}



