:root {
    --gold: #C5A059;
    --beige: #F9F7F2;
    --dark: #2C2C2C;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Osnovna podešavanja */
* { margin: 0; padding: 0; box-sizing: border-box; }

body { 
    font-family: 'Montserrat', sans-serif; 
    background-color: var(--beige); 
    color: var(--dark); 
    line-height: 1.6; 
}

/* Header & Banner */
.header-banner { 
    height: 0; 
    display: none; 
}

.header-content { 
    padding: 25px 20px; 
    text-align: center; 
    background: white; 
    border-bottom: 1px solid #f0f0f0; 
}

.logo { 
    font-family: 'Playfair Display', serif; 
    font-size: 2rem; 
    color: var(--gold); 
    text-transform: uppercase; 
    font-weight: 700; 
    text-decoration: none; 
}

/* Navigacija - UVEK NA VRHU */
nav { 
    padding: 15px 0; 
    text-align: center; 
    position: -webkit-sticky; 
    position: sticky; 
    top: 0; 
    z-index: 9999; 
    background: var(--white); 
    border-bottom: 1px solid #f0f0f0; 
    box-shadow: 0 4px 12px rgba(0,0,0,0.1); 
}

nav a { 
    margin: 0 15px; 
    text-decoration: none; 
    color: var(--dark); 
    font-size: 0.85rem; 
    letter-spacing: 2px; 
    text-transform: uppercase; 
    font-weight: 600; 
    transition: 0.3s; 
    display: inline-block;
}

nav a:hover { color: var(--gold); }

/* Sekcije */
.page-section { 
    padding: 80px 20px; 
    max-width: 1200px; 
    margin: 0 auto; 
    text-align: center; 
}

.section-title { 
    font-family: 'Playfair Display', serif; 
    font-size: 2.8rem; 
    margin-bottom: 40px; 
    color: var(--gold); 
    position: relative; 
    padding-bottom: 15px; 
    text-transform: uppercase; 
}

.section-title::after { 
    content: ''; 
    width: 60px; 
    height: 2px; 
    background: var(--gold); 
    position: absolute; 
    bottom: 0; 
    left: 50%; 
    transform: translateX(-50%); 
}

/* --- KONTAKT STRANICA FIX --- */
/* Sprečava dupliranje ikonica iz bilo kog starog koda */
.contact-item::before, 
.contact-item::after { 
    content: none !important; 
}

.contact-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 30px; 
    margin-bottom: 40px;
}

.contact-item {
    background: white;
    padding: 50px 20px;
    box-shadow: var(--shadow);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Glavna zlatna ikona na kontaktu */
.main-icon {
    font-size: 2.5rem !important;
    color: var(--gold) !important;
    margin-bottom: 20px !important;
    display: block !important;
}

.contact-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.contact-text {
    font-size: 1rem;
    color: #444;
}

/* WhatsApp ikonica na kontaktu */
.wa-link {
    color: #25D366;
    font-size: 2rem;
    text-decoration: none;
    margin-bottom: 10px;
    display: inline-block;
}

/* Mapa */
.map-wrapper {
    width: 100%;
    height: 450px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.map-wrapper iframe {
    filter: grayscale(0.1) contrast(1.1);
}

/* Kartice Usluga (Početna) */
.services-container { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); 
    gap: 40px; 
}

.service-box { 
    background: var(--white); 
    box-shadow: var(--shadow); 
    text-align: center; 
    overflow: hidden;
    padding-bottom: 30px;
}

.service-info { padding: 30px; }

.service-info h3 {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-size: 1.6rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}

/* Dugme Saznaj Više */
.btn-saznaj { 
    display: inline-block; 
    margin-top: 20px; 
    padding: 12px 30px; 
    border: 1px solid var(--gold); 
    color: var(--gold); 
    text-decoration: none; 
    text-transform: uppercase; 
    font-size: 0.8rem; 
    font-weight: 600; 
    letter-spacing: 1px;
    transition: all 0.3s ease; 
    background: transparent;
}

.btn-saznaj:hover { 
    background-color: var(--gold); 
    color: white; 
}

/* Footer */
footer { 
    padding: 80px 20px; 
    background: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.85)), url('https://files.oaiusercontent.com/file-K7lA5fR0oWvK8MRE6A8m5Nf4') no-repeat center center/cover; 
    background-attachment: fixed; 
    color: var(--white); 
    text-align: center; 
}

.footer-socials a {
    color: white;
    font-size: 1.8rem;
    margin: 0 15px;
    transition: 0.3s;
}

.footer-socials a:hover { color: var(--gold); }

/* Dugme za poziv (Fiksno) */
.call-btn { 
    position: fixed; 
    bottom: 30px; 
    right: 30px; 
    background: var(--gold); 
    color: white; 
    width: 60px; 
    height: 60px; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 1.5rem; 
    z-index: 10000; 
    box-shadow: 0 10px 20px rgba(0,0,0,0.2); 
}
/* --- SEKCIJA O NAMA: TEKST LEVO, SLIKA DESNO --- */
/* --- FIKS ZA VELIČINU SLIKE --- */
.about-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

.about-text-side {
    flex: 1;
    text-align: left;
}

.about-image-side {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-photo {
    /* Ovde kontrolišemo veličinu */
    width: 100%;
    max-width: 450px; /* Maksimalna širina slike na desktopu */
    max-height: 550px; /* Maksimalna visina da ne bi "pobegla" */
    object-fit: cover; /* Održava proporcije bez rastezanja */
    border-radius: 15px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(197, 160, 89, 0.2);
}

/* Prilagođavanje za mobilni */
@media (max-width: 768px) {
    .about-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .profile-photo {
        max-width: 300px; /* Smanjujemo je dodatno za telefone */
    }
}

.award-badge-left {
    margin-top: 30px;
    text-align: left;
}

/* Prilagođavanje za mobilne telefone */
@media (max-width: 768px) {
    .about-wrapper {
        flex-direction: column; /* Na mobilnom slaže jedno ispod drugog */
        text-align: center;
    }

    .award-badge-left {
        text-align: center;
    }

    .profile-photo {
        max-width: 100%;
        margin-top: 20px;
    }
}
/* Stilovi za Album/Galeriju */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 40px;
}

.gallery-item {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
}
/* --- MOBILNA RESPONSIVNOST --- */
@media (max-width: 768px) {
    nav {
        padding: 10px 5px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    nav a {
        margin: 0 !important;
        font-size: 0.7rem !important;
        padding: 10px 5px;
        flex: 1 1 40%; 
        background: #fdfcf9;
        border: 1px solid #eee;
        border-radius: 4px;
        text-align: center;
    }

    .logo {
        font-size: 1.4rem !important;
        padding: 10px 0;
    }

    .section-title { font-size: 2rem; }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}