/* --- Variables --- */
:root{
  --brand-gold: #cbbf7a;
  --brand-red: #a32020;
  --brand-dark: #111111;
}

/* --- Reset / container --- */
* { box-sizing: border-box; margin:0; padding:0; }
html, body {
    font-family: Arial, sans-serif;
    background: #fff;
    color: var(--brand-dark);
    min-height: 100%;
}
body {
    display: flex;
    flex-direction: column;
}

/* --- Accessibility: Visually Hidden --- */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* --- Header --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--brand-gold);
    border-bottom: 1px solid rgba(0,0,0,.06);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.brand { display:flex; align-items:center; margin-right:18px; }
.brand-img { height:56px; }

.header-center {
    flex:1;
    display:flex;
    justify-content:center;
}
.site-title {
    font-family: Georgia, "Times New Roman", serif;
    font-weight:700;
    font-size:20px;
    text-align:center;
}

/* --- Navigation --- */
.nav-buttons {
    list-style:none;
    display:flex;
    gap:10px;
    transition: max-height 0.4s ease-in-out;
    flex-direction: row;
}
.nav-buttons li a {
    display:inline-block;
    padding:12px 20px;
    background: var(--brand-gold);
    color: var(--brand-dark);
    text-decoration:none;
    border-radius:5px;
    font-weight:600;
    text-align:center;
    transition: background 0.3s, transform 0.2s;
    min-height: 44px;
}
.nav-buttons li a:hover {
    background: var(--brand-red);
    color:#fff;
    transform: scale(1.05);
}
.nav-buttons li.active a {
    background: var(--brand-red);
    color:#fff;
    font-weight:bold;
}

/* Hamburger */
.menu-toggle {
    display:none;
    font-size:28px;
    cursor:pointer;
    padding:10px;
    color:var(--brand-dark);
}

/* --- Main content --- */
.site-main {
    flex:1;
    padding-bottom: 60px; /* prostor za footer */
}

/* Skip link (accessibility) */
.skip-link {
    position: absolute;
    top: -40px;
    left: 10px;
    background: #000;
    color: #fff;
    padding: 8px 12px;
    z-index: 2000;
    border-radius: 4px;
}
.skip-link:focus {
    top: 10px;
}

/* --- Hero Banner --- */
.header-banner {
    width: 100%;
    padding: 0;
    position: relative;
    margin-top: -25px;
}

.banner-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.banner-slide {
    display: none;
    width: 100%;
}

.banner-slide.active {
    display: block;
}

.banner-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 0;
    display: block;
}

.banner-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.banner-dot {
    width: 10px;
    height: 10px;
    padding: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.banner-dot:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.2);
}

.banner-dot.active {
    background: white;
    width: 12px;
    height: 12px;
}

/* Mobile banner styles */
@media(max-width:768px) { 
    .header-banner {
        margin-top: 0;
    }
    .banner-img {
        height: 200px;
    }
    .banner-dots {
        bottom: 15px;
    }
    .banner-dot {
        width: 8px;
        height: 8px;
        padding: 8px;
    }
    .banner-dot.active {
        width: 10px;
        height: 10px;
    }
}

/* --- Index specific --- */
.index-main {
    margin-top: 55px;
}

/* --- Container za centriranje dve kolone --- */
.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Two column layout (vesti + raspored) --- */
.two-column {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    justify-content: flex-start; /* levo */
    flex-wrap: wrap;
}
.column {
    flex: 1 1 500px; /* fleksibilno, min 500px */
    background:#fff;
    padding:20px;
    border-radius:6px;
    box-shadow:0 6px 18px rgba(0,0,0,.03);
}
.column h2 { font-size:28px; margin-bottom:20px; color:var(--brand-dark); }

/* --- News / Schedule --- */
.news-list, .schedule-list { list-style:none; padding:0; margin:0; }
.news-item, .schedule-item { padding:12px 0; border-bottom:1px solid rgba(0,0,0,.06); }
.news-item a, .schedule-item a { display:block; text-decoration:none; font-weight:600; color: var(--brand-dark); }
.news-meta { font-size:13px; color:#595959; margin-top:4px; }

/* View All Button */
.btn-view-all {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background: var(--brand-gold);
    color: var(--brand-dark);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s, transform 0.2s;
}
.btn-view-all:hover {
    background: #c9a227;
    transform: translateY(-2px);
}

/* --- Gallery --- */
.home-gallery { max-width:1400px; margin:80px auto; padding:0 20px; }
.gallery-title { text-align:center; font-size:28px; letter-spacing:3px; margin-bottom:50px; color:#222; }
.gallery-title a { text-decoration:none; color:inherit; }
.gallery-title a:hover{text-decoration:underline;}

/* Gallery Page */
.page-title {
    text-align: center;
    font-size: 32px;
    letter-spacing: 3px;
    margin: 30px 0 30px;
    color: #222;
}

/* Events List - Card View */
.events-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.event-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0,0,0,.15);
}

.event-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.event-card-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    flex-shrink: 0;
}

.event-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.event-card:hover .event-card-image img {
    transform: scale(1.05);
}

.event-card-overlay {
    position: absolute;
    bottom: 0;
    right: 0;
    background: rgba(0,0,0,.7);
    color: #fff;
    padding: 8px 12px;
    font-size: 13px;
    border-radius: 4px 0 0 0;
}

.event-card-content {
    padding: 20px;
}

.event-card-title {
    font-size: 20px;
    color: var(--brand-red);
    margin-bottom: 10px;
}

.event-card-meta {
    font-size: 14px;
    color: #595959;
}

.event-card-meta span {
    margin-right: 15px;
    display: inline-block;
}

.event-card-excerpt {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-top: 10px;
}

.event-card-no-image {
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.no-image-placeholder {
    text-align: center;
}

.event-card-price {
    margin-top: 8px;
    padding: 6px 12px;
    background: var(--brand-gold);
    color: var(--brand-dark);
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    border-radius: 4px;
}

.page-title {
    font-size: 36px;
    color: var(--brand-dark);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--brand-gold);
}

/* All Photos Grid for Gallery */
.all-photos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.photo-item {
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
}

.photo-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.3s;
}

.photo-item:hover img {
    transform: scale(1.05);
}

/* Event Gallery Detail Page */
.event-header-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 30px 0 30px;
}

.breadcrumb {
    flex-shrink: 0;
}

.breadcrumb a {
    display: inline-block;
    color: #fff;
    background-color: var(--brand-red);
    text-decoration: none;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 6px;
    transition: all 0.3s;
    font-weight: 600;
}

.breadcrumb a:hover {
    background-color: #8a1a1a;
    transform: translateX(-5px);
}

/* Event Article Style (News-like) */
.event-article {
    background: #fff;
    margin-bottom: 40px;
}

.event-featured-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    margin-bottom: 30px;
    border-radius: 8px;
}

.event-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-article-content {
    max-width: 900px;
}

.event-article-title {
    font-size: 36px;
    color: var(--brand-red);
    margin-bottom: 15px;
    line-height: 1.3;
}

.event-article-meta {
    font-size: 15px;
    color: #595959;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(0,0,0,.1);
}

.event-article-meta span {
    margin-right: 25px;
}

.event-article-body {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 40px;
}

.event-article-body p {
    margin-bottom: 15px;
}

/* Gallery Section */
.event-gallery-section {
    margin-top: 50px;
    position: relative;
}

.gallery-section-title {
    font-size: 24px;
    color: var(--brand-red);
    margin-bottom: 30px;
    text-align: center;
}

/* Gallery Slider Container */
.gallery-slider-wrapper {
    position: relative;
    overflow: hidden;
    padding: 0 50px;
}

.gallery-slider {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.gallery-slider::-webkit-scrollbar {
    display: none;
}

.gallery-slider .gallery-item {
    flex: 0 0 calc((100% - 75px) / 6);
    min-width: calc((100% - 75px) / 6);
}

.gallery-slider .gallery-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 4px;
}

.gallery-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    font-size: 24px;
    padding: 18px 16px;
    cursor: pointer;
    z-index: 10;
    border-radius: 4px;
    transition: all 0.3s;
}

.gallery-nav-btn:hover {
    background-color: var(--brand-red);
}

.gallery-nav-prev {
    left: 10px;
}

.gallery-nav-next {
    right: 10px;
}

.event-header {
    flex: 1;
    text-align: center;
}

.event-page-title {
    font-size: 32px;
    color: var(--brand-red);
    margin-bottom: 15px;
}

.event-page-meta {
    font-size: 16px;
    color: #595959;
    margin-bottom: 20px;
}

.event-page-meta span {
    margin: 0 15px;
}

@media(max-width:768px){ 
    .event-header-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .event-article-title {
        font-size: 28px;
    }
    .event-featured-image {
        height: 250px;
    }
    .event-article-body {
        font-size: 15px;
    }
}

.no-events {
    text-align: center;
    font-size: 18px;
    color: #595959;
    padding: 60px 20px;
}

.gallery-grid { display:grid; gap:25px; grid-template-columns:repeat(4,1fr); }
.gallery-grid img { width:100%; height:260px; object-fit:cover; border-radius:4px; }
.gallery-item { overflow: hidden; border-radius: 4px; }
.gallery-item img { transition: transform 0.3s; cursor: pointer; }
.gallery-item:hover img { transform: scale(1.05); }

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    animation: zoom 0.3s;
}

@keyframes zoom {
    from { transform: scale(0.8); }
    to { transform: scale(1); }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    z-index: 10000;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: #ddd;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    padding: 20px;
    user-select: none;
    transition: 0.3s;
    z-index: 10000;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 18px;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    border-radius: 20px;
    z-index: 10000;
}

@media(max-width:1100px){ 
    .gallery-grid{grid-template-columns:repeat(3,1fr);} 
    .events-list { grid-template-columns: repeat(2, 1fr); }
    .all-photos-grid { grid-template-columns: repeat(3, 1fr); }
    .gallery-slider .gallery-item {
        flex: 0 0 calc((100% - 60px) / 5);
        min-width: calc((100% - 60px) / 5);
    }
}
@media(max-width:768px){ 
    .gallery-grid{grid-template-columns:repeat(2,1fr);} 
    .events-list { grid-template-columns: repeat(2, 1fr); }
    .all-photos-grid { grid-template-columns: repeat(2, 1fr); }
    .event-card-image { height: 220px; }
    .lightbox-prev, .lightbox-next { font-size: 35px; padding: 10px; }
    .lightbox-close { font-size: 40px; top: 10px; right: 20px; }
    .event-header-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .event-article-title {
        font-size: 28px;
    }
    .event-featured-image {
        height: 250px;
    }
    .event-article-body {
        font-size: 15px;
    }
    .gallery-slider .gallery-item {
        flex: 0 0 calc((100% - 45px) / 4);
        min-width: calc((100% - 45px) / 4);
    }
    .gallery-slider-wrapper {
        padding: 0 40px;
    }
}
@media(max-width:480px){ 
    .gallery-grid{grid-template-columns:1fr;} 
    .events-list { grid-template-columns: 1fr; }
    .all-photos-grid { grid-template-columns: 1fr; }
    .event-card-image { height: 250px; }
    .lightbox-prev { left: 5px; }
    .lightbox-next { right: 5px; }
    .gallery-slider .gallery-item {
        flex: 0 0 calc((100% - 30px) / 3);
        min-width: calc((100% - 30px) / 3);
    }
    .banner-img {
        height: 150px;
    }
    .banner-dots {
        bottom: 10px;
        gap: 6px;
    }
}

/* --- Footer --- */
.site-footer {
    background: var(--brand-gold);
    color: #050000;
    font-family: Arial,sans-serif;
    margin-top: auto;
    font-size: 13px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.footer-section h4 {
    color: var(--brand-red);
    font-size: 15px;
    margin-bottom: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.footer-section p {
    margin-bottom: 8px;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #050000;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--brand-red);
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(0,0,0,0.2);
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-copy {
    font-size: 12px;
}

.footer-credit {
    font-size: 12px;
    color: #ccc;
}

.footer-credit a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-credit a:hover {
    color: var(--brand-gold);
}

.footer-social a {
    margin-left: 12px;
    color: #140101;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
    padding: 12px 16px;
    border-radius: 4px;
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-social a:hover, .footer-social a:focus {
    background: var(--brand-red);
    color: #fff;
    outline: 2px solid #050000;
}

.to-top {
    background: var(--brand-red);
    color: #fff;
    padding: 12px 16px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    margin-left: 12px;
    font-weight: 600;
    font-size: 14px;
    min-width: 44px;
    min-height: 44px;
}

.to-top:hover { 
    background: #8a1a1a;
}

.to-top:focus {
    outline: 2px solid #050000;
}

@media(max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 15px 20px;
    }
    
    .footer-social a {
        margin: 0 6px;
    }
}

/* View All Button */
.view-all-link {
    text-align: center;
    margin-top: 20px;
}

.view-all-btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: transparent;
    color: #4a4a4a;
    text-decoration: none;
    border: 1px solid #777;
    border-radius: 20px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s;
    min-height: 44px;
}

.view-all-btn:hover {
    background-color: var(--brand-gold);
    border-color: var(--brand-gold);
    color: var(--brand-dark);
}

/* All Events List Page */
.all-events-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.event-list-item {
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(0,0,0,.1);
}

.event-list-link {
    display: block;
    padding: 20px 0;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
}

.event-list-link:hover {
    padding-left: 10px;
    background-color: rgba(203, 191, 122, 0.1);
}

.event-list-title {
    font-size: 18px;
    color: var(--brand-red);
    margin-bottom: 8px;
}

.event-list-meta {
    font-size: 14px;
    color: #595959;
}

.event-list-meta span {
    margin-right: 20px;
}

/* --- Responsive Hamburger --- */
@media(max-width:768px){
    .menu-toggle{display:block}

    .nav-buttons{
        flex-direction: column;
        align-items: stretch;
        max-height:0;
        overflow:hidden;
        width:100%;
        background: var(--brand-gold);
        position:absolute;
        top:72px;
        left:0;
        z-index:9999;
        border-bottom:1px solid rgba(0,0,0,.1);
    }

    .nav-buttons.show{
        max-height:500px;
    }

    .nav-buttons li a{
        width:100%;
        padding:12px;
    }

    .site-title{font-size:16px;}
}

@media(max-width:600px){
    .brand-img{height:42px}
    .nav-wrap{justify-content:space-between}
    .footer-bottom{flex-direction:column; gap:12px; text-align:center;}
    .footer-social a{margin:0 10px;}
}

@media(max-width:480px){
    .site-title{font-size:14px; white-space:normal; line-height:1.2; text-align:center;}
}

/* --- Kontakt stranica --- */
.contact-page {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    padding: 40px 0;
    flex-wrap: wrap;
}
.contact-form, .contact-info {
    flex: 1 1 45%;
    min-width: 300px;
    background: #fff;
    padding: 25px;
    border-radius: 6px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.03);
}
.contact-form h2, .contact-info h2 {
    font-size: 26px;
    margin-bottom: 20px;
    color: var(--brand-dark);
}
.contact-form form {
    display: flex;
    flex-direction: column;
}
.contact-form label { margin-bottom: 6px; font-weight: 600; color: var(--brand-dark);}
.contact-form input, .contact-form textarea {
    margin-bottom: 18px;
    padding: 10px 12px;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    resize: vertical;
    font-family: Arial, sans-serif;
}
.contact-form button {
    padding: 12px 20px;
    background: var(--brand-gold);
    color: var(--brand-dark);
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s, outline 0.2s;
}
.contact-form button:hover {
    background: var(--brand-red);
    color: #fff;
    transform: scale(1.03);
}
.contact-form button:focus {
    outline: 2px solid var(--brand-red);
    outline-offset: 2px;
}
.contact-info p { margin-bottom: 20px; line-height: 1.5; color: var(--brand-dark);}
.contact-info strong { display:block; margin-bottom:6px;}

/* --- Accessibility & Focus states --- */
*:focus-visible {
    outline: 2px solid var(--brand-red);
    outline-offset: 2px;
}
input:focus, textarea:focus {
    border-color: var(--brand-red);
    outline: 2px solid var(--brand-red);
}

/* --- Responsive adjustments for columns --- */
@media(max-width:900px){
    .two-column { flex-direction: column; gap: 20px; justify-content: center; }
    .column { flex: 1 1 100%; }
}

/* --- Raspored detalj (Schedule Detail Page) --- */
.raspored-detalj {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 40px;
    margin: 0;
}

.raspored-slika {
    background: #fff;
}

.raspored-slika img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.raspored-slika .no-image {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #767676;
    border-radius: 8px;
}

.raspored-info {
    padding: 0;
}

.event-header-wrapper {
    margin-bottom: 25px;
}

.event-article-title {
    font-size: 34px;
    color: var(--brand-dark);
    margin: 0 0 20px 0;
    line-height: 1.3;
    font-weight: 700;
}

.raspored-meta {
    background: linear-gradient(to right, #f9f9f9, #ffffff);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 5px solid var(--brand-red);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.meta-item {
    padding: 12px 0;
    border-bottom: 1px solid #e5e5e5;
    font-size: 17px;
    color: #333;
    display: flex;
    align-items: center;
}

.meta-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.meta-item strong {
    display: inline-flex;
    align-items: center;
    min-width: 180px;
    color: var(--brand-dark);
    font-weight: 600;
    font-size: 15px;
}

.raspored-opis {
    margin-bottom: 30px;
    padding: 25px;
    background: #fafafa;
    border-radius: 8px;
}

.raspored-opis h2 {
    font-size: 24px;
    color: var(--brand-dark);
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--brand-gold);
    font-weight: 700;
}

.opis-content {
    font-size: 16px;
    line-height: 1.9;
    color: #444;
}

.opis-content ul,
.opis-content ol {
    margin: 15px 0;
    padding-left: 25px;
}

.opis-content li {
    margin: 8px 0;
}

.raspored-actions {
    margin-top: 30px;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--brand-gold);
    color: var(--brand-dark);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid var(--brand-gold);
    box-shadow: 0 2px 8px rgba(203, 191, 122, 0.3);
}

.btn-back:hover {
    background: var(--brand-red);
    border-color: var(--brand-red);
    color: #fff;
    transform: translateX(-8px);
    box-shadow: 0 4px 12px rgba(163, 32, 32, 0.4);
}

@media(max-width:900px) {
    .raspored-detalj {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .raspored-slika img {
        border-radius: 6px;
    }
    
    .event-article-title {
        font-size: 26px;
    }
    
    .meta-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .meta-item strong {
        margin-bottom: 3px;
        min-width: auto;
        font-size: 14px;
    }
    
    .raspored-meta {
        padding: 20px;
        margin-bottom: 25px;
    }
    
    .raspored-opis {
        padding: 20px;
        margin-bottom: 25px;
    }
    
    .raspored-opis h2 {
        font-size: 22px;
    }
    
    .opis-content {
        font-size: 15px;
        line-height: 1.7;
    }
    
    .btn-back {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }
}

@media(max-width:600px) {
    .main-container {
        padding: 20px 15px !important;
    }
    
    .event-article-title {
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .raspored-meta {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .meta-item {
        font-size: 15px;
        padding: 10px 0;
    }
    
    .meta-item strong {
        font-size: 13px;
    }
    
    .raspored-opis {
        padding: 15px;
    }
    
    .raspored-opis h2 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .opis-content {
        font-size: 14px;
    }
    
    .raspored-actions {
        margin-top: 20px;
    }
    
    .btn-back {
        font-size: 15px;
        padding: 12px 20px;
    }
}

@media(max-width:400px) {
    .event-article-title {
        font-size: 20px;
    }
    
    .raspored-meta {
        padding: 12px;
    }
    
    .meta-item {
        font-size: 14px;
        padding: 8px 0;
    }
    
    .raspored-opis {
        padding: 12px;
    }
    
    .raspored-opis h2 {
        font-size: 18px;
    }
}
