/* ========================================================= ODISEJ POD MURVOM 2026 Galerija plakata - Općina Zemunik Donji ========================================================= */ .odisej-wrap { max-width: 1100px; margin: 35px auto 50px; padding: 0 18px; font-family: Arial, Helvetica, sans-serif; color: #173b65; box-sizing: border-box; } .odisej-wrap *, .odisej-wrap *::before, .odisej-wrap *::after { box-sizing: border-box; } /* Naslov */ .odisej-header { text-align: center; margin-bottom: 32px; } .odisej-kicker { display: inline-block; margin-bottom: 8px; color: #248bf1; font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; } .odisej-title { margin: 0; color: #153f70; font-family: Georgia, "Times New Roman", serif; font-size: clamp(30px, 5vw, 48px); font-weight: 400; line-height: 1.15; } .odisej-title::after { content: ""; display: block; width: 80px; height: 4px; margin: 16px auto 0; border-radius: 10px; background: linear-gradient(90deg, #143d6d, #3097f3); } .odisej-intro { max-width: 720px; margin: 18px auto 0; color: #596a7e; font-size: 16px; line-height: 1.7; } /* Galerija */ .odisej-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; } /* Kartica */ .odisej-card { position: relative; overflow: hidden; background: #ffffff; border: 1px solid #e2e9f1; border-radius: 18px; box-shadow: 0 8px 28px rgba(17, 61, 108, 0.10); transition: transform 0.25s ease, box-shadow 0.25s ease; } .odisej-card:hover { transform: translateY(-6px); box-shadow: 0 16px 38px rgba(17, 61, 108, 0.18); } /* Slika */ .odisej-image-link { position: relative; display: block; overflow: hidden; background: #edf3f8; aspect-ratio: 3 / 4; } .odisej-image-link img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease; } .odisej-card:hover .odisej-image-link img { transform: scale(1.035); } /* Overlay na hover */ .odisej-image-link::after { content: "Pogledaj plakat"; position: absolute; left: 50%; bottom: 20px; transform: translate(-50%, 12px); padding: 10px 18px; border-radius: 999px; background: rgba(18, 59, 105, 0.92); color: #ffffff; font-size: 13px; font-weight: 700; white-space: nowrap; opacity: 0; transition: opacity 0.25s ease, transform 0.25s ease; } .odisej-card:hover .odisej-image-link::after { opacity: 1; transform: translate(-50%, 0); } /* Donji dio kartice */ .odisej-card-body { padding: 18px 18px 20px; text-align: center; } .odisej-card-title { margin: 0 0 14px; color: #143d6d; font-size: 17px; font-weight: 700; line-height: 1.4; } .odisej-button { display: inline-block; padding: 10px 20px; border-radius: 999px; background: linear-gradient(90deg, #173f70, #2c91ed); color: #ffffff !important; text-decoration: none !important; font-size: 13px; font-weight: 700; transition: transform 0.2s ease, box-shadow 0.2s ease; } .odisej-button:hover { color: #ffffff !important; transform: translateY(-1px); box-shadow: 0 7px 16px rgba(27, 103, 180, 0.22); } /* ========================================================= POPUP / LIGHTBOX ========================================================= */ .odisej-lightbox { position: fixed; z-index: 999999; inset: 0; display: flex; align-items: center; justify-content: center; padding: 30px 20px; background: rgba(4, 18, 35, 0.93); opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 0.25s ease, visibility 0.25s ease; } .odisej-lightbox:target { opacity: 1; visibility: visible; pointer-events: auto; } /* Klik na pozadinu zatvara popup */ .odisej-lightbox-bg { position: absolute; inset: 0; cursor: zoom-out; } /* Sadržaj popupa */ .odisej-lightbox-content { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; max-width: 95vw; max-height: 94vh; } .odisej-lightbox-image { display: block; width: auto; max-width: 92vw; height: auto; max-height: 82vh; border-radius: 8px; background: #ffffff; box-shadow: 0 25px 70px rgba(0, 0, 0, 0.45); object-fit: contain; } /* X */ .odisej-close-x { position: absolute; top: -18px; right: -18px; display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; border: 3px solid #ffffff; border-radius: 50%; background: #278ce7; color: #ffffff !important; font-family: Arial, sans-serif; font-size: 28px; font-weight: 400; line-height: 1; text-decoration: none !important; box-shadow: 0 5px 18px rgba(0, 0, 0, 0.35); transition: transform 0.2s ease; } .odisej-close-x:hover { color: #ffffff !important; transform: scale(1.08); } /* Tekst ispod slike */ .odisej-lightbox-caption { margin-top: 15px; color: #ffffff; font-size: 15px; font-weight: 600; text-align: center; } .odisej-lightbox-close { display: inline-block; margin-top: 12px; padding: 9px 22px; border: 1px solid rgba(255,255,255,0.55); border-radius: 999px; color: #ffffff !important; text-decoration: none !important; font-size: 13px; font-weight: 600; transition: background 0.2s ease, color 0.2s ease; } .odisej-lightbox-close:hover { background: #ffffff; color: #153f70 !important; } /* Info traka */ .odisej-note { margin-top: 28px; padding: 16px 20px; border-left: 4px solid #288eea; border-radius: 5px 12px 12px 5px; background: #f3f8fd; color: #486177; font-size: 14px; line-height: 1.6; } /* Tablet */ @media (max-width: 850px) { .odisej-gallery { grid-template-columns: repeat(2, 1fr); } .odisej-card:last-child { grid-column: 1 / -1; width: calc(50% - 11px); justify-self: center; } } /* Mobitel */ @media (max-width: 600px) { .odisej-wrap { margin-top: 20px; padding: 0 10px; } .odisej-gallery { grid-template-columns: 1fr; gap: 20px; } .odisej-card:last-child { grid-column: auto; width: 100%; } .odisej-image-link { aspect-ratio: auto; } .odisej-image-link img { width: 100%; height: auto; object-fit: contain; } .odisej-image-link::after { opacity: 1; transform: translate(-50%, 0); } .odisej-lightbox { padding: 20px 10px; } .odisej-lightbox-image { max-width: 94vw; max-height: 78vh; } .odisej-close-x { top: -16px; right: -5px; width: 40px; height: 40px; font-size: 25px; } } Manifestacija Odisej pod murvom 2026. Odisej pod murvom 2026. Pogledaj plakat Program manifestacije Pogledaj plakat Odisej pod murvom Pogledaj plakat × Odisej pod murvom 2026. Zatvori × Odisej pod murvom 2026. – program manifestacije Zatvori × Odisej pod murvom Zatvori