/* =========================
   RESET
========================= */
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    color: #222;
}

/* =========================
   HEADER
========================= */
.header {
    display: flex;
    justify-content: center;
    padding: 20px 0;
    background-color: #b8b4b4;
}

.logo {
    max-width: 200px;
}

/* =========================
   MENU
========================= */
.menu {
    display: flex;
    justify-content: center;
    gap: 50px;
    padding: 18px 0;
    background-color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.menu a {
    text-decoration: none;
    color: #222;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: 0.3s;
}

.menu a:hover {
    color: #d1913e;
}

.menu a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background: #d1913e;
    transition: 0.4s;
}

.menu a:hover::after {
    width: 100%;
}

/* =========================
   HERO
========================= */
.hero {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 6s ease;
}

.hero:hover img {
    transform: scale(1.15);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.55);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-overlay h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #d1913e; /* ISTA BOJA */
}

.hero-overlay p {
    font-size: 1.2rem;
    color: #d1913e; /* ISTA BOJA */
}

/* =========================
   ABOUT
========================= */
.about {
    max-width: 900px;
    margin: 70px auto;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    padding: 0 20px;
}
/* =========================
   ABOUT (nova sekcija)
========================= */
.about {
    max-width: 900px;
    margin: 70px auto 40px auto;
    text-align: center;
    padding: 0 20px;
}

.about h2 {
    color: #d1913e;
    margin-bottom: 20px;
    font-size: 2rem;
}

.about p {
    line-height: 1.8;
    font-size: 1.05rem;
    color: #333;
}

/* =========================
   TEKST U KONTAKTU
========================= */
.contact-text {
    margin-bottom: 20px;
     color: #333;
    line-height: 1.6;
}

/* NASLOVI GLOBALNO */
.contact-box h2 {
    color: #d1913e;
}
/* =========================
   CONTACT BOX
========================= */
.contact {
    display: flex;
    justify-content: center;
    margin-bottom: 100px;
}

.contact-box {
    background: white;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    text-align: center;
    max-width: 500px;
    width: 90%;
}

.contact-box h2 {
    margin-bottom: 30px;
    color: #d1913e;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    color: #222;
    font-size: 1rem;
    margin: 15px 0;
    padding: 12px;
    border-radius: 12px;
    transition: 0.3s;
}

.contact-item img {
    width: 28px;
    height: 28px;
    border-radius: 50%;   /* ZAOBLJENO */
    object-fit: cover;
}

.contact-item:hover {
    background-color: #f2f2f2;
    transform: translateY(-3px);
}

.location {
    margin-top: 20px;
    font-weight: 500;
}

/* =========================
   FOOTER
========================= */
footer {
    text-align: center;
    padding: 25px;
    background-color: #f7f5f5;
    color: black;
}
.footer-content {
    display: flexbox;
    flex-direction: column;
    align-items: center;
    font-family: Arial, sans-serif; 
    color: #fff; 
    text-align: center;
    padding: 5px;
    background-color: #d1913e; 
    border-top: 3px solid #b88b3a; 
    box-shadow: 0 -3px 15px rgba(0,0,0,0.2);
    border-radius: 15px 15px 0 0; 

}

/* SIGNATURE */
.signature {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    opacity: 0.95;
    transition: all 0.3s ease;
}

.signature a {
    color: #000; 
    font-weight: 700;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}

.signature a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #000; 
    transition: width 0.3s ease;
}

.signature a:hover::after {
    width: 100%;
}

.signature a:hover {
    color: #fff;
    text-shadow: 0 0 8px #000;
}

.signature:hover {
    transform: translateY(-2px);
    opacity: 1;
}

/* =========================
   HAMBURGER 
========================= */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    gap: 5px;
    position: absolute;
    right: 20px;
}

.hamburger span {
    width: 24px;   
    height: 2px;  
    background: #222;
    transition: 0.3s ease;
}

/* Animacija u X */
.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* =========================
   RESPONSIVE MENU
========================= */
@media (max-width: 900px) {

    .menu {
        display: none;
        flex-direction: column;
        background: white;
        position: absolute;
        top: 75px; 
        left: 0;
        width: 100%;
        padding: 20px 0;
        gap: 20px;
        box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    }

    .menu a {
        font-size: 14px;
    }

    .menu.active {
        display: flex;
    }

       .hamburger {
        display: flex;
    }
        .footer-content {
        padding: 20px 15px;
    }
    .signature {
        font-size: 13px;
    }
}