/* ================================================= */
/* 1. OSNOVNE POSTAVKE I TIPOGRAFIJA */
/* ================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fff;
    scroll-behavior: smooth;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

/* Naslovi sekcija */
.section-title {
    text-align: center;
    margin: 60px 0 40px 0;
}

.section-title h1, .section-title h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title p {
    color: #7f8c8d;
    font-style: italic;
}

/* ================================================= */
/* 2. STICKY HEADER & TOP BAR (KREMASTA) */
/* ================================================= */
.sticky-header {
    position: sticky;
    top: 0;
    z-index: 2000;
    width: 100%;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.top-bar {
    background-color: #fdfaf0; /* Kremasta boja */
    border-bottom: 1px solid #f0e6d2;
    padding: 8px 0;
    font-size: 0.85rem;
}

.top-bar-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.top-bar-left { display: flex; gap: 20px; }

.top-link {
    text-decoration: none;
    color: #5d5d5d;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s;
}

.top-link:hover { color: #a38a5e; }

/* Language Dropdown */
.lang-dropdown { position: relative; display: inline-block; }

.lang-dropbtn {
    background: transparent;
    border: 1px solid #f0e6d2;
    padding: 5px 12px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 4px;
    color: #555;
}

.lang-dropbtn i { color: #a38a5e; font-size: 0.7rem; transition: 0.3s; }
.lang-dropdown:hover .lang-dropbtn i { transform: rotate(180deg); }

.lang-dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: #fff;
    min-width: 150px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    z-index: 5000;
    border-radius: 4px;
    border: 1px solid #f0e6d2;
    overflow: hidden;
}

.lang-dropdown-content a {
    padding: 10px 15px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
    transition: background 0.3s;
}

.lang-dropdown-content a:hover { background: #fdfaf0; color: #a38a5e; }
.lang-dropdown:hover .lang-dropdown-content { display: block; }
.flag { width: 18px; height: auto; border-radius: 2px; }

/* ================================================= */
/* 3. NAVIGACIJA */
/* ================================================= */
.navbar {
    background-color: #ffffff;
    padding: 15px 0;
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    font-size: 1.6rem;
    font-weight: bold;
    text-decoration: none;
    color: #2c3e50;
    letter-spacing: 2px;
}

.nav-links { list-style: none; display: flex; gap: 25px; }

.nav-links a {
    text-decoration: none;
    color: #555;
    font-weight: 600;
    transition: 0.3s;
    font-size: 0.95rem;
}

.nav-links a:hover { color: #a38a5e; }

/* ================================================= */
/* 4. LUKSUZNI GUMBI (UNIVERZALNI) */
/* ================================================= */
.btn-hero, .btn-submit, .btn-send, .btn-directions, .btn-rezerviraj, .btn-check {
    background: linear-gradient(135deg, #a38a5e 0%, #8c764d 100%) !important;
    color: #ffffff !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    padding: 16px 35px !important;
    border: none !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    box-shadow: 0 4px 15px rgba(163, 138, 94, 0.3) !important;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.btn-hero:hover, .btn-submit:hover, .btn-send:hover, .btn-directions:hover, .btn-rezerviraj:hover {
    background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%) !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.4) !important;
    color: #fdfaf0 !important;
}
/* ================================================= */
/* 4. LUKSUZNI GUMBI (SJAJNO ZLATO) */
/* ================================================= */

.btn-hero, .btn-submit, .btn-send, .btn-directions, .btn-rezerviraj, .btn-check {
    /* Luksuzni "Champagne Gold" gradijent */
    background: linear-gradient(135deg, #d4af37 0%, #f2d479 50%, #b8860b 100%) !important;
    color: #ffffff !important;
    
    /* Tipografija - Elegantno i prostrano */
    text-transform: uppercase !important;
    letter-spacing: 2.5px !important; /* Povećan razmak za premium izgled */
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    padding: 18px 40px !important;
    
    /* Oblik i obrub */
    border: 1px solid rgba(255, 255, 255, 0.3) !important; /* Tanki bijeli rub za sjaj */
    border-radius: 4px !important;
    cursor: pointer !important;
    
    /* Duboka zlatna sjena */
    box-shadow: 0 10px 20px rgba(184, 134, 11, 0.2) !important;
    
    /* Efekti */
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
    display: inline-block;
    text-decoration: none;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2); /* Sjena na tekstu za bolju čitljivost */
}

/* EFEKT NA PRELAZ MIŠEM (HOVER) */
.btn-hero:hover, .btn-submit:hover, .btn-send:hover, .btn-directions:hover, .btn-rezerviraj:hover {
    /* Prelaz u duboku "Royal Blue" ili "Slate" za luksuzni kontrast */
    background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%) !important;
    
    /* Podizanje gumba */
    transform: translateY(-5px) scale(1.02);
    
    /* Sjajnija sjena na hover */
    box-shadow: 0 15px 30px rgba(44, 62, 80, 0.4) !important;
    color: #fdfaf0 !important;
    border-color: #a38a5e !important;
}

/* Posebna prilagodba za navigacijski gumb (da ostane diskretan ali zlatni) */
.btn-rezerviraj {
    padding: 12px 25px !important;
    font-size: 0.75rem !important;
    letter-spacing: 1.5px !important;
}
/* ================================================= */
/* 5. HERO SLIDER */
/* ================================================= */
.hero-slider {
    position: relative;
    height: 85vh;
    width: 100%;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active { opacity: 1; }
.slide img { width: 100%; height: 100%; object-fit: cover; }

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent !important; 
    display: flex;
    align-items: center;    /* Vertikalno centriranje */
    justify-content: center; /* Horizontalno centriranje bloka */
    z-index: 10;
}

/* OVO JE DIO KOJI POPRAVLJA CENTRIRANJE TEKSTA I GUMBA */
.hero-content { 
    text-align: center;      /* Centriranje teksta i gumba unutar kontejnera */
    width: 100%;
    max-width: 800px;        /* Ograničenje širine za bolju čitljivost */
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 4rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 15px;    /* Razmak između naslova i opisa */
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.8), 0 0 10px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 35px;    /* Razmak između opisa i gumba */
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.8);
}

.dots-container {
    position: absolute; bottom: 30px; left: 50%;
    transform: translateX(-50%); z-index: 20; display: flex; gap: 15px;
}

.dot {
    width: 12px; height: 12px;
    background-color: rgba(255,255,255,0.5);
    border-radius: 50%; cursor: pointer;
}
.dot.active { background-color: #a38a5e; border: 2px solid #fff; }

/* ================================================= */
/* 6. MINI GALERIJA (NASLOVNA) */
/* ================================================= */
.mini-galerija {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.galerija-kartica { text-decoration: none; color: inherit; text-align: center; }

.kartica-slika {
    position: relative;
    height: 250px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.kartica-slika img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }

.kartica-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(163, 138, 94, 0.6);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.4s;
}

.kartica-overlay span {
    color: white; border: 2px solid white; padding: 10px 20px;
    text-transform: uppercase; font-weight: bold; font-size: 0.8rem;
}

.galerija-kartica:hover .kartica-overlay { opacity: 1; }
.galerija-kartica:hover img { transform: scale(1.1); }
.galerija-kartica h3 { margin-top: 15px; color: #2c3e50; font-size: 1.3rem; }

/* ================================================= */
/* 7. SADRŽAJ I SOBE */
/* ================================================= */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px; margin: 40px 0;
}

.amenity-item {
    padding: 20px; background: #fdfaf0; border-radius: 10px; text-align: center;
}

.amenity-item i { font-size: 2rem; color: #a38a5e; margin-bottom: 10px; display: block; }

.room-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px; margin-bottom: 50px;
}

.detail-card {
    background: #fff; padding: 35px; border-radius: 15px;
    border: 1px solid #f0e6d2; text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.detail-card i { font-size: 2.5rem; color: #2c3e50; margin-bottom: 15px; }
.detail-card h4 { color: #a38a5e; text-transform: uppercase; margin-bottom: 15px; }
.detail-card ul { list-style: none; padding: 0; }

/* ================================================= */
/* 8. CIJENE */
/* ================================================= */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px; margin-bottom: 50px;
}

.price-card {
    background: #fff; border: 1px solid #f0e6d2; padding: 40px 20px;
    border-radius: 15px; text-align: center; transition: 0.3s;
}

.price-card.featured {
    border: 2px solid #a38a5e; background: #fdfaf0; transform: scale(1.05);
}

.price-amount .value { font-size: 3rem; font-weight: bold; color: #2c3e50; }
.price-features { list-style: none; padding: 20px 0; text-align: left; display: inline-block; }
.price-features i { color: #27ae60; margin-right: 10px; }

/* ================================================= */
/* 9. KONTAKT FORMA (70/30 RASPORED) */
/* ================================================= */
.contact-wrapper {
    display: flex;
    gap: 40px;
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #f0e6d2;
}

.contact-form { flex: 7; text-align: left; }
.contact-info { flex: 3; background: #2c3e50; color: white; padding: 30px; border-radius: 10px; text-align: left; }

.form-group-row { display: flex; gap: 20px; margin-bottom: 15px; }
.form-group { flex: 1; display: flex; flex-direction: column; }
.form-group label { font-weight: bold; margin-bottom: 5px; color: #2c3e50; }
.form-group input, .form-group textarea {
    padding: 12px; border: 1px solid #ddd; border-radius: 5px; background: #fdfaf0;
}

.contact-info h3 { color: #a38a5e; margin-bottom: 20px; }
.contact-info p { margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }

/* ================================================= */
/* 10. LOKACIJA I MAPA */
/* ================================================= */
.map-container {
    width: 100%; border-radius: 15px; overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1); margin-bottom: 20px;
}
.map-info { text-align: center; margin-bottom: 60px; }

/* ================================================= */
/* 11. GALERIJA PAGE (Grijdi i Modal) */
/* ================================================= */
.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px; padding: 20px 0;
}

.gallery-item {
    position: relative; height: 220px; overflow: hidden; border-radius: 8px; cursor: pointer;
}

.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }

.gallery-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(163, 138, 94, 0.4); display: flex; align-items: center;
    justify-content: center; opacity: 0; transition: 0.3s;
}

.gallery-overlay i { color: white; font-size: 2.5rem; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover img { transform: scale(1.1); filter: blur(2px); }
/* Zlatni sloj preko slika u galeriji - učinimo ga prozirnijim */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Smanjeno sa 0.4 na 0.2 (nježnije zlato) */
    background: rgba(163, 138, 94, 0.2); 
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

/* Slike u velikom prikazu (Modal) */
.modal-content {
    max-width: 85%;
    max-height: 80vh;
    border: 4px solid white;
    /* DODANO: Osiguravamo da velika slika nema nikakvih filtera koji je tamne */
    filter: brightness(1.1) !important; 
    box-shadow: 0 0 50px rgba(255,255,255,0.1); /* Lagani sjaj oko slike */
}
/* Lightbox Modal */
.modal {
    display: none; position: fixed; z-index: 3000; top: 0; left: 0;
    width: 100%; height: 100%; background: rgba(0,0,0,0.95);
    justify-content: center; align-items: center;
}
.modal-content { max-width: 85%; max-height: 80vh; border: 4px solid white; }
.modal-close { position: absolute; top: 20px; right: 30px; color: white; font-size: 40px; cursor: pointer; }
.modal-btn { position: absolute; top: 50%; color: white; font-size: 50px; cursor: pointer; padding: 20px; }
.modal-btn-prev { left: 10px; }
.modal-btn-next { right: 10px; }
.modal-counter { position: absolute; bottom: 30px; color: white; background: rgba(0,0,0,0.6); padding: 8px 20px; border-radius: 30px; }

/* ================================================= */
/* 12. FOOTER - PRISILNO 4 JEDNAKA STUPCA */
/* ================================================= */
.site-footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px 0 30px 0;
    margin-top: 50px;
    text-align: left;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    
    /* PRISILNO AKTIVIRANJE 4 STUPCA */
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important; 
    gap: 30px !important;
}

/* RESETIRANJE BILO KAKVIH STARIH PRAVILA ZA STUPCE */
.footer-column {
    grid-column: auto !important; /* Ovo briše 'span 3' ili slično */
    flex: none !important;        /* Ovo briše 'flex: 7' ili 'flex: 3' */
    width: 100% !important;
}

.footer-column h3 {
    font-size: 1.4rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #a38a5e;
}

.footer-column h4 {
    color: #fdfaf0;
    border-bottom: 2px solid #a38a5e;
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.footer-column p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #bdc3c7;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li { margin-bottom: 10px; }

.footer-column a {
    color: #bdc3c7;
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.9rem;
}

.footer-column a:hover { color: #a38a5e; padding-left: 5px; }

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 20px;
    font-size: 0.8rem;
    color: #7f8c8d;
}

/* --- RESPONZIVNOST (Prilagodba za manje ekrane) --- */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr !important;
        text-align: center;
    }
    .footer-column h4 { margin: 20px auto; display: table; }
}

/* ================================================= */
/* 13. RESPONZIVNOST (MOBITELI) */
/* ================================================= */
@media (max-width: 992px) {
    .mini-galerija, .room-details, .pricing-grid, .contact-wrapper {
        grid-template-columns: 1fr;
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-links { display: none; } /* Ovdje bi inače išao mobilni meni */
    .hero-content h1 { font-size: 2.5rem; }
    .form-group-row { flex-direction: column; }
    .top-bar-container { flex-direction: column; gap: 10px; }
}
@media (max-width: 768px) {
    .hero-content h1 { 
        font-size: 2.2rem !important; 
        letter-spacing: 2px !important;
    }
    .hero-content p { 
        font-size: 1.1rem !important; 
    }
/* --- STRANICA O VILI --- */

.about-description {
    max-width: 900px;
    margin: 0 auto 50px auto;
    text-align: center;
    font-size: 1.15rem;
    line-height: 1.9;
    color: #444;
}

.about-description p { margin-bottom: 25px; }

.quick-amenities {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 70px;
    flex-wrap: wrap;
}

.amenity-card {
    background: #fdfaf0;
    padding: 20px 30px;
    border-radius: 10px;
    border: 1px solid #f0e6d2;
    text-align: center;
    min-width: 180px;
}

.amenity-card i {
    display: block;
    font-size: 2rem;
    color: #a38a5e;
    margin-bottom: 10px;
}

/* Pravila objekta Boxes */
.rules-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 80px;
}

.rule-box {
    background: #fff;
    padding: 35px;
    border-radius: 15px;
    border: 1px solid #f0e6d2;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

.rule-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    border-bottom: 2px solid #a38a5e;
    padding-bottom: 10px;
}

.rule-header i { font-size: 1.8rem; color: #a38a5e; }
.rule-header h3 { text-transform: uppercase; font-size: 1.1rem; color: #2c3e50; }

.rule-box p { margin-bottom: 10px; color: #555; }

.rule-box ul { list-style: none; padding: 0; }
.rule-box ul li { margin-bottom: 12px; display: flex; align-items: flex-start; gap: 10px; color: #555; }
.rule-box ul li i { color: #a38a5e; margin-top: 4px; }

.self-checkin {
    background: #fdfaf0;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    border-left: 4px solid #a38a5e;
}

.self-checkin i { font-size: 1.5rem; color: #a38a5e; margin-bottom: 10px; display: block; }

/* Responzivnost */
@media (max-width: 768px) {
    .rules-container { grid-template-columns: 1fr; }
    .about-description { font-size: 1.05rem; }
}
/* --- STIL ZA NAV TOGGLE (Gumb na mobitelu) --- */
.nav-toggle {
    display: none; /* Skriveno na desktopu */
    background: transparent;
    border: 1px solid #a38a5e;
    color: #2c3e50;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    align-items: center;
    gap: 10px;
    font-family: inherit;
    font-weight: bold;
}

.nav-toggle-text {
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.nav-toggle i {
    font-size: 1.2rem;
    color: #a38a5e;
}

/* --- RESPONZIVNOST --- */

/* Breakpoint na 992px jer imate puno stavki u meniju */
@media (max-width: 992px) {
    .nav-toggle {
        display: flex; /* Prikaži gumb */
    }

    .nav-links {
        display: none; /* Sakrij obične linkove */
        flex-direction: column;
        position: absolute;
        top: 100%; /* Ispod navbar-a */
        left: 0;
        width: 100%;
        background-color: #ffffff;
        padding: 20px;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        z-index: 1000;
        gap: 15px;
        text-align: center;
    }

    /* Klasa koju će JavaScript dodati kad kliknemo */
    .nav-links.open {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid #fdfaf0;
        padding-bottom: 10px;
    }

    .nav-links li:last-child {
        border-bottom: none;
    }
}
/* Gumb za povratak na vrh */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
    color: white;
    border: none;
    border-radius: 50%; /* Okrugli gumb */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 2500;
    
    /* Inicijalno skriveno */
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.back-to-top:hover {
    background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.4);
}

/* Klasa koju će JS dodati kad se skrola dolje */
.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}
/* --- UNAPRIJEĐENA STRANICA O VILI --- */

/* Intro Flexbox */
.about-flex {
    display: flex;
    align-items: center;
    gap: 50px;
    margin: 40px 0 80px 0;
}

.about-text-side { flex: 1.2; text-align: left; }
.about-image-side { flex: 0.8; }

.subtitle {
    color: #a38a5e;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: bold;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.intro-stats {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.stat {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fdfaf0;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid #f0e6d2;
}

.rounded-image {
    width: 100%;
    border-radius: 50% 50% 10px 50%; /* Moderni asimetrični oblik */
    border: 10px solid #fdfaf0;
}

/* Experience Cards */
.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.exp-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.4s;
    text-align: center;
}

.exp-card img { width: 100%; height: 180px; object-fit: cover; }

.exp-content { padding: 25px; }

.exp-content i {
    font-size: 2rem;
    color: #a38a5e;
    margin-top: -50px;
    background: white;
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    margin-bottom: 15px;
}

/* Local Attraction Boxes */
.local-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 80px;
}

.local-box {
    height: 200px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    text-decoration: none;
    color: white;
    background: #2c3e50; /* Boja ako nema slike */
    background-image: url('images/local-bg.jpg'); /* Zamijenite sa slikom Istre */
    background-size: cover;
    transition: 0.3s;
}

.local-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.local-text { position: relative; z-index: 2; }
.local-box:hover { transform: translateY(-5px); }

/* RESPONZIVNOST */
@media (max-width: 992px) {
    .about-flex, .experience-grid, .local-links-grid {
        flex-direction: column;
        grid-template-columns: 1fr;
    }
    .about-image-side { order: -1; } /* Slika ide prva na mobitelu */
}
/* --- PROČIŠĆENA SEKCIJA U BLIZINI (Bez pozadinskih slika) --- */

.local-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 80px;
}

.local-card {
    background: #ffffff;
    border: 1px solid #f0e6d2;
    padding: 30px;
    border-radius: 12px;
    text-align: left;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.local-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(163, 138, 94, 0.1);
    border-color: #a38a5e;
}

.local-card i.fa-solid {
    font-size: 2rem;
    color: #a38a5e; /* Naša zlatna boja */
    margin-bottom: 20px;
}

.local-card h4 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.local-card p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.distance {
    display: block;
    font-size: 0.8rem;
    font-weight: bold;
    color: #888;
    margin-bottom: 20px;
}

.distance i {
    margin-right: 5px;
    font-size: 0.9rem;
}

.link-btn {
    text-decoration: none;
    color: #a38a5e;
    font-weight: bold;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}

.link-btn:hover {
    color: #2c3e50;
    gap: 12px; /* Gumb se lagano "izduži" na hover */
}

/* RESPONZIVNOST */
@media (max-width: 992px) {
    .local-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .local-links-grid {
        grid-template-columns: 1fr;
    }
}