/* ========================================
   NOVO - Stilovi za nove sekcije sajta
   ======================================== */

/* --- Stats Section --- */
.stats-section {
    background: linear-gradient(135deg, var(--brand-gold) 0%, #b8a85e 100%);
    padding: 60px 20px;
    margin: 40px 0;
    border-radius: 10px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    color: var(--brand-dark);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

/* --- Video Section --- */
.video-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--brand-gold) 0%, #c9a227 100%);
    margin: 40px 0;
}

.video-section .section-title {
    color: var(--brand-dark);
}

/* Home Video Section - above gallery */
.home-video-section {
    max-width: 1400px;
    margin: 60px auto 40px;
    padding: 0 20px;
}

.home-video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.home-video-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.home-video-item .video-thumbnail-link {
    display: block;
    position: relative;
}

.home-video-item .video-thumbnail-link img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.play-button-small {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(139, 0, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    transition: all 0.3s ease;
}

.home-video-item:hover .play-button-small {
    background: rgba(139, 0, 0, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.home-video-item h3.video-title {
    padding: 15px 18px;
    font-size: 15px;
    font-weight: 600;
    color: var(--brand-dark);
    margin: 0;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .home-video-grid {
        grid-template-columns: 1fr;
    }
    .home-video-item .video-thumbnail-link img {
        height: 200px;
    }
}

/* ========================================
   O NAMA - TABOVI (Istorijat / Sekcije / Članovi / Postani član)
   ======================================== */

.about-tabs {
    margin: 20px 0 26px;
    position: sticky;
    top: 72px;
    z-index: 60;
    padding-top: 8px;
}

.about-tabs {
    scroll-margin-top: 90px;
}

.about-tabs-nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 14px;
    padding: 10px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.06);
}

.about-tab-btn {
    appearance: none;
    -webkit-appearance: none;
    border: 1px solid rgba(0,0,0,0.10);
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    color: var(--brand-dark);
    font-weight: 700;
    font-size: 15px;
    padding: 10px 12px;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 44px;
}

.about-tab-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.08);
    border-color: rgba(0,0,0,0.18);
}

.about-tab-btn:focus {
    outline: none;
}

.about-tab-btn:focus-visible {
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.35);
    border-color: rgba(201, 162, 39, 0.75);
}

.about-tab-btn.active,
.about-tab-btn[aria-selected="true"] {
    background: linear-gradient(135deg, var(--brand-gold) 0%, #c9a227 100%);
    border-color: rgba(0,0,0,0.12);
    color: var(--brand-dark);
    box-shadow: 0 10px 22px rgba(201, 162, 39, 0.25);
}

/* Tab icon and text styling */
.about-tab-btn .tab-icon {
    margin-right: 6px;
}

.about-tab-btn .tab-text {
    white-space: nowrap;
}

.about-tab-panel {
    display: none;
    scroll-margin-top: 110px;
}

.about-tab-panel.active {
    display: block;
}

.about-empty {
    background: #fff;
    border: 1px dashed rgba(0,0,0,0.20);
    border-radius: 12px;
    padding: 18px;
    color: #444;
    text-align: center;
}

/* Responsive tabs */
@media (max-width: 900px) {
    .about-tabs-nav {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
        padding: 8px;
    }
    .about-tab-btn {
        font-size: 13px;
        padding: 8px 6px;
    }
}

@media (max-width: 600px) {
    .about-tabs-nav {
        grid-template-columns: repeat(4, 1fr);
        gap: 6px;
        padding: 6px;
    }
    .about-tab-btn {
        font-size: 20px;
        padding: 12px 8px;
        flex-direction: column;
        gap: 2px;
    }
    .about-tab-btn .tab-text {
        display: none;
    }
    .about-tab-btn .tab-icon {
        font-size: 24px;
        margin-right: 0;
    }
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--brand-dark);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.video-grid.single-video {
    grid-template-columns: 1fr;
    max-width: 700px;
    margin: 30px auto 0;
}

.video-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

/* Gallery Tabs */
.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.gallery-tab {
    padding: 12px 30px;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    color: #595959;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-tab:hover {
    border-color: var(--brand-gold);
    color: var(--brand-dark);
}

.gallery-tab.active {
    background: var(--brand-gold);
    border-color: var(--brand-gold);
    color: var(--brand-dark);
}

.tab-count {
    font-weight: 400;
    opacity: 0.8;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

@media (max-width: 480px) {
    .gallery-tabs {
        flex-direction: column;
        align-items: center;
    }
    .gallery-tab {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
}

.video-gallery-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.video-gallery-item .video-thumbnail-link {
    display: block;
    position: relative;
}

.video-gallery-item .video-thumbnail-link img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.video-gallery-item:hover .video-thumbnail-link img {
    transform: scale(1.05);
}

.video-gallery-item h3 {
    padding: 12px 15px;
    font-size: 14px;
    color: var(--brand-dark);
    margin: 0;
}

.video-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.video-item:hover {
    transform: translateY(-5px);
}

.video-item iframe {
    width: 100%;
    height: 280px;
    display: block;
}

.video-thumbnail-link {
    display: block;
    position: relative;
    overflow: hidden;
}

.video-thumbnail-link img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.video-thumbnail-link:hover img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(139, 0, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.video-thumbnail-link:hover .play-button {
    background: rgba(139, 0, 0, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-item h3 {
    padding: 15px 20px;
    font-size: 16px;
    color: var(--brand-dark);
    background: #fff;
    margin: 0;
}

@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
    .video-item iframe {
        height: 220px;
    }
}

/* --- Testimonials Section --- */
.testimonials-section {
    padding: 60px 20px;
    background: linear-gradient(180deg, #fff 0%, #f5f5f0 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-item {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    position: relative;
    border-top: 4px solid var(--brand-gold);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.testimonial-item::before {
    content: '"';
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 60px;
    color: var(--brand-gold);
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--brand-gold);
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-quote {
    font-size: 15px;
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-size: 16px;
    color: var(--brand-dark);
    font-weight: bold;
}

.testimonial-position {
    font-size: 13px;
    color: #595959;
    font-weight: normal;
}

/* --- Partners Section --- */
.partners-section {
    padding: 60px 20px;
    background: #fff;
    margin: 40px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 25px;
    align-items: center;
    margin-top: 40px;
}

.partner-item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 25px;
    background: #fafafa;
    border-radius: 10px;
    transition: all 0.3s ease;
    min-height: 100px;
    border: 1px solid #eee;
}

.partner-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    background: #fff;
    border-color: var(--brand-gold);
}

.partner-item img {
    max-width: 100%;
    max-height: 70px;
    object-fit: contain;
    filter: grayscale(80%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* --- O Nama stranica --- */
.page-hero {
    background: linear-gradient(135deg, var(--brand-gold) 0%, #b8a85e 100%);
    padding: 80px 20px 60px;
    text-align: center;
    color: var(--brand-dark);
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-hero .subtitle {
    font-size: 20px;
    color: #333;
}

.about-intro {
    padding: 60px 20px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--brand-dark);
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #555;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
    }
}

.mission-vision {
    background: #f9f9f9;
    padding: 40px 20px;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.mv-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    text-align: center;
}

.mv-card h2 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--brand-dark);
}

.mv-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

@media (max-width: 900px) {
    .mv-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    .mv-card {
        padding: 15px;
    }
    .mv-card h2 {
        font-size: 16px;
    }
    .mv-card p {
        font-size: 13px;
    }
}

@media (max-width: 600px) {
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.sections-info {
    padding: 60px 20px;
}

.sections-info h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
}

.sections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.section-card {
    background: #fff;
    border: 2px solid var(--brand-gold);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
}

.section-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.section-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--brand-dark);
}

.section-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

.section-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.section-card li {
    padding: 8px 0;
    color: #595959;
    font-size: 14px;
}

.section-card li:before {
    content: "→ ";
    color: var(--brand-gold);
    font-weight: bold;
}

.management {
    background: #f9f9f9;
    padding: 60px 20px;
}

.management h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
}

.management-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.member-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.member-image {
    width: 100px;
    height: 100px;
    margin: 0 auto 15px;
    border-radius: 10px;
    overflow: hidden;
    border: 3px solid var(--brand-gold);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #767676;
}

.member-card h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--brand-dark);
}

.member-role {
    font-size: 14px;
    color: #595959;
}

/* Members Preview Section */
.members-preview {
    padding: 60px 20px;
    background: #f9f9f9;
}

.members-preview h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
    color: var(--brand-dark);
}

.members-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.member-card-small {
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: transform 0.2s;
}

.member-card-small:hover {
    transform: translateY(-3px);
}

.member-image-small {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--brand-gold);
}

.member-image-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-placeholder-small {
    width: 100%;
    height: 100%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #767676;
}

.member-info-small h5 {
    font-size: 14px;
    margin: 0 0 4px 0;
    color: var(--brand-dark);
}

.member-role-small {
    font-size: 12px;
    color: #595959;
}

/* Full Members Page */
.members-section {
    margin-bottom: 50px;
}

.section-subtitle {
    font-size: 24px;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--brand-gold);
    color: var(--brand-dark);
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.members-grid-small {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
}

.members-grid .member-card {
    transition: transform 0.2s, box-shadow 0.2s;
}

.members-grid .member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.member-info h4 {
    margin: 0 0 5px 0;
    font-size: 18px;
}

.member-since {
    font-size: 12px;
    color: #767676;
    margin-top: 5px;
}

.achievements {
    padding: 60px 20px;
}

.achievements h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
}

.achievements-list {
    max-width: 800px;
    margin: 0 auto;
}

.achievement-item {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #f9f9f9;
    margin-bottom: 15px;
    border-radius: 8px;
    border-left: 4px solid var(--brand-gold);
}

.achievement-item .year {
    font-size: 24px;
    font-weight: bold;
    color: var(--brand-gold);
    min-width: 80px;
    margin-right: 20px;
}

.achievement-item .award {
    font-size: 16px;
    color: #555;
}

.membership-info {
    background: #f9f9f9;
    padding: 60px 20px;
    text-align: center;
}

.membership-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.membership-content {
    max-width: 800px;
    margin: 0 auto;
}

.membership-content > p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
}

.membership-benefits {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
    text-align: left;
}

.membership-benefits h3 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

.membership-benefits ul {
    list-style: none;
    padding: 0;
}

.membership-benefits li {
    padding: 12px 0;
    font-size: 16px;
    color: #555;
    border-bottom: 1px solid #eee;
}

.membership-benefits li:last-child {
    border-bottom: none;
}

/* --- FAQ Stranica --- */
.faq-section {
    padding: 40px 20px 60px;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    font-size: 18px;
    color: var(--brand-dark);
    cursor: pointer;
    position: relative;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f9f9f9;
}

.faq-question:after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: var(--brand-gold);
    font-weight: bold;
}

.faq-item.active .faq-question:after {
    content: "−";
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 20px 20px;
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 10px;
}

.faq-answer ul {
    margin: 15px 0;
    padding-left: 20px;
}

.faq-answer li {
    margin-bottom: 8px;
    color: #555;
}

.faq-answer a {
    color: var(--brand-gold);
    text-decoration: underline;
}

.faq-cta {
    background: var(--brand-gold);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin-top: 40px;
}

.faq-cta h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--brand-dark);
}

.faq-cta p {
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
}

/* --- Pretraga Stranica --- */
.search-header {
    background: linear-gradient(135deg, var(--brand-gold) 0%, #b8a85e 100%);
    padding: 80px 20px 60px;
    text-align: center;
}

.search-header h1 {
    font-size: 48px;
    margin-bottom: 30px;
    color: var(--brand-dark);
}

.search-form-main {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    gap: 10px;
}

.search-form-main input {
    flex: 1;
    padding: 15px 20px;
    font-size: 16px;
    border: 2px solid #fff;
    border-radius: 8px;
}

.search-form-main button {
    padding: 15px 30px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.search-info {
    margin-top: 20px;
    font-size: 16px;
    color: #333;
}

.search-results {
    padding: 60px 20px;
}

.results-section {
    margin-bottom: 50px;
}

.results-section h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--brand-dark);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
}

.result-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.result-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.result-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.result-content {
    padding: 20px;
}

.result-type {
    display: inline-block;
    padding: 5px 12px;
    background: var(--brand-gold);
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    border-radius: 4px;
    margin-bottom: 10px;
}

.result-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.result-card h3 a {
    color: var(--brand-dark);
    text-decoration: none;
}

.result-card h3 a:hover {
    color: var(--brand-gold);
}

.result-date,
.result-location {
    font-size: 14px;
    color: #595959;
    margin-bottom: 10px;
}

.result-excerpt {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

.btn-link {
    color: var(--brand-gold);
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
}

.btn-link:hover {
    text-decoration: underline;
}

.no-results {
    text-align: center;
    padding: 60px 20px;
}

.no-results h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #767676;
}

.no-results p {
    font-size: 16px;
    color: #595959;
}

.search-suggestions {
    padding: 60px 20px;
}

.search-suggestions h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--brand-dark);
}

.suggestions-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.suggestion-tag {
    padding: 10px 20px;
    background: var(--brand-gold);
    color: #fff;
    text-decoration: none;
    border-radius: 20px;
    font-size: 14px;
    transition: background 0.3s ease;
}

.suggestion-tag:hover {
    background: #b8a85e;
}

.quick-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.quick-link-card {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    text-decoration: none;
    transition: box-shadow 0.3s ease;
}

.quick-link-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.quick-link-card h3 {
    font-size: 20px;
    color: var(--brand-dark);
    margin-bottom: 10px;
}

.quick-link-card p {
    font-size: 14px;
    color: #595959;
}

/* --- Breadcrumbs --- */
.breadcrumbs {
    padding: 15px 20px;
    background: #f9f9f9;
    font-size: 14px;
}

.breadcrumbs a {
    color: var(--brand-gold);
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.breadcrumbs span {
    color: #595959;
}

/* --- Social Share --- */
.social-share {
    margin: 30px 0;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    text-align: center;
}

.social-share h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--brand-dark);
}

.social-share a {
    display: inline-block;
    margin: 0 10px;
    padding: 10px 20px;
    background: var(--brand-gold);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    transition: background 0.3s ease;
}

.social-share a:hover {
    background: #b8a85e;
}

.social-share-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.social-share-buttons .social-btn {
    margin: 0;
    flex: 0 1 auto;
    min-width: 120px;
    text-align: center;
}

@media (max-width: 480px) {
    .social-share-buttons {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .social-share-buttons .social-btn {
        min-width: unset;
        padding: 12px 10px;
        font-size: 13px;
    }
    
    .social-share {
        padding: 15px;
        margin: 20px 0;
    }
    
    .social-share h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }
}

/* --- Buttons --- */
.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background: var(--brand-gold);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #b8a85e;
}

.btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    background: #ddd;
    color: var(--brand-dark);
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.btn-secondary:hover {
    background: #ccc;
}

/* --- Alerts --- */
.alert {
    padding: 15px 20px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.alert-info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* --- Newsletter Subscribe Form --- */
.newsletter-section {
    padding: 0;
    margin: 60px 0 0 0;
}

.newsletter-subscribe {
    background: linear-gradient(135deg, var(--brand-gold) 0%, #d4c98a 100%);
    padding: 50px 30px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.newsletter-subscribe h3 {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--brand-dark);
}

.newsletter-subscribe p {
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    min-width: 200px;
    padding: 14px 18px;
    border: 2px solid rgba(255,255,255,0.8);
    border-radius: 8px;
    font-size: 15px;
    background: rgba(255,255,255,0.9);
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--brand-dark);
    background: #fff;
}

.newsletter-form button {
    padding: 14px 30px;
    background: var(--brand-dark);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 32px;
    }
    
    .search-form-main {
        flex-direction: column;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}

/* ========================================
   ISTORIJAT - Timeline stilovi
   ======================================== */
.history-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #f9f9f9 0%, #fff 100%);
}

.history-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    color: var(--brand-dark);
}

.history-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}

.history-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--brand-gold) 0%, var(--brand-dark) 100%);
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 50%;
    position: relative;
    margin-bottom: 40px;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 50%;
}

.timeline-year {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand-gold);
    color: var(--brand-dark);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.timeline-content {
    background: #fff;
    padding: 20px 25px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    margin: 0 30px;
    max-width: 350px;
    border-left: 4px solid var(--brand-gold);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-item:nth-child(even) .timeline-content {
    border-left: none;
    border-right: 4px solid var(--brand-gold);
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.timeline-content h4 {
    color: var(--brand-dark);
    margin: 0 0 10px 0;
    font-size: 18px;
}

.timeline-content p {
    color: #595959;
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

.history-quote {
    max-width: 800px;
    margin: 60px auto 0;
    text-align: center;
}

.history-quote blockquote {
    font-style: italic;
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    padding: 30px;
    background: linear-gradient(135deg, #f9f9f9 0%, #fff 100%);
    border-left: 5px solid var(--brand-gold);
    border-radius: 0 10px 10px 0;
    margin: 0;
}

/* Timeline mobile */
@media (max-width: 768px) {
    .history-timeline::before {
        left: 20px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(even) {
        padding-left: 60px;
        padding-right: 0;
        justify-content: flex-start;
    }
    
    .timeline-year {
        left: 20px;
        transform: translateX(-50%);
    }
    
    .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin: 0;
        max-width: 100%;
        border-left: 4px solid var(--brand-gold);
        border-right: none;
    }
    
    .history-quote blockquote {
        font-size: 16px;
        padding: 20px;
    }
}

