:root {
    --primary-color: #25A2DC; 
    --secondary-color: #231F20; 
    --accent-color: #E67E22; 
    --light-bg-color: #F8F4ED; 
    --text-color: #333;
    --white-color: #fff;
    --font-primary: 'Open Sans', sans-serif;
    --font-titles: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white-color);
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    overflow: hidden;
    padding: 0 20px;
}

/* Header & Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 5%; /* Smanjen padding zbog većeg loga */
    background-color: var(--white-color);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    min-height: 80px; /* Osigurava minimalnu visinu headera */
}

.logo-img {
    height: 90px; /* Povećan logo za 50% (sa 60px na 90px) */
    width: auto;
    display: block; /* Za bolje poravnanje ako je potrebno */
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 25px;
}

.nav-links a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 600; 
    font-family: var(--font-titles);
    font-size: 0.9rem;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a.active-link { 
    color: var(--primary-color);
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 5px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white-color);
    position: relative;
    padding-top: 90px; /* Prilagođeno zbog visine headera */
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.55); 
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-family: var(--font-titles);
    font-size: 3.2rem;
    font-weight: 900;
    margin-bottom: 0.7rem;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
}

.hero-content p {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white-color);
    padding: 14px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-family: var(--font-titles);
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.cta-button:hover {
    background-color: #d35400; 
    transform: translateY(-2px);
}

/* Section Styling */
section {
    padding: 70px 0;
}

section h2 {
    text-align: center;
    font-family: var(--font-titles);
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: var(--secondary-color); 
}

/* About Section */
.about-section {
    background-color: var(--light-bg-color);
}
.about-content {
    display: flex;
    gap: 40px;
    align-items: center;
}
.about-text {
    flex: 1.2; 
}
.about-text p {
    margin-bottom: 15px;
    font-size: 1.05rem;
}
.bikers-spot {
    margin-top: 25px;
    display: flex;
    align-items: center;
    background-color: var(--white-color);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.bikers-icon {
    height: 60px; 
    width: auto;
    margin-right: 20px;
}
.bikers-spot p {
    font-weight: 600;
    color: var(--secondary-color);
    font-family: var(--font-titles);
    font-size: 1.1rem;
    margin-bottom: 0;
}
.about-image {
    flex: 1;
    text-align: center;
}
.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}


/* Menu Highlights Section */
.menu-highlights-section {
    background-color: var(--white-color);
}
.menu-intro {
    text-align: center;
    margin-bottom: 40px;
}
.menu-intro .plate-icon {
    height: 50px; 
    margin-bottom: 10px;
}
.menu-intro p {
    font-size: 1.15rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-color);
}

.highlights-grid-container {
    display: flex;
    flex-wrap: wrap; 
    gap: 30px;
    align-items: flex-start; 
}

.highlights-grid {
    flex: 3; 
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}
.highlight-item {
    background-color: var(--light-bg-color);
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex; /* Za bolje poravnanje sadržaja ako visine variraju */
    flex-direction: column;
    justify-content: space-between;
}
.highlight-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.12);
}
.highlight-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 20px;
}
.highlight-item h3 {
    font-family: var(--font-titles);
    font-size: 1.6rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}
.highlight-item p {
    font-size: 0.95rem;
    flex-grow: 1; /* Omogućava da tekst zauzme dostupan prostor */
}

.qr-code-lika {
    flex: 1; 
    text-align: center;
    padding: 20px;
    background-color: var(--light-bg-color);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    align-self: center; /* Centriraj QR kod vertikalno ako je sam */
}
.qr-code-lika img {
    max-width: 180px; 
    width: 100%;
    height: auto;
    margin-bottom: 10px;
    border: 3px solid var(--white-color);
    border-radius: 5px;
}
.qr-code-lika p {
    font-family: var(--font-titles);
    font-weight: 600;
    color: var(--secondary-color);
}


/* Gallery Section */
.gallery-section {
    background-color: var(--light-bg-color);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-grid img:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

/* Contact Section */
.contact-section {
    background-color: var(--white-color);
}
.contact-info-map {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}
.contact-details {
    flex: 1.2;
    min-width: 300px;
}
.contact-details p {
    margin-bottom: 18px;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
}
.contact-icon {
    height: 24px; 
    width: 24px;
    margin-right: 15px;
    object-fit: contain; 
}
.contact-details a {
    color: var(--primary-color); 
    text-decoration: none;
    font-weight: 600;
}
.contact-details a:hover {
    text-decoration: underline;
}
.map-container {
    flex: 1.5;
    min-width: 300px;
}
.map-container iframe {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.social-media {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}
.social-media p { /* Za "Pratite nas:" */
    font-family: var(--font-titles);
    font-weight: 600;
    margin-bottom: 15px !important; 
    font-size: 1.1rem !important;
}
.social-links-container {
    display: flex;
    flex-direction: column; /* Linkovi jedan ispod drugog */
    gap: 15px; /* Razmak između linkova */
}
.social-links-container a {
    display: flex; 
    align-items: center;
    text-decoration: none;
    color: var(--secondary-color);
    font-size: 1rem;
    transition: color 0.3s ease;
    font-weight: 600;
}
.social-links-container a:hover {
    color: var(--primary-color);
}
.social-icon-img { /* Za FB i IG ikone */
    width: 32px; 
    height: 32px;
    margin-right: 10px;
    object-fit: contain;
}


/* Footer */
footer {
    background-color: var(--secondary-color);
    color: var(--light-bg-color); 
    text-align: center;
    padding: 30px 0;
    font-size: 0.9rem;
}
footer p {
    margin-bottom: 8px;
}
footer a {
    color: var(--primary-color);
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media screen and (max-width: 992px) { 
    .navbar {
        min-height: 70px; /* Prilagodi za manji logo na manjim ekranima ako treba */
    }
    .logo-img {
        height: 75px; /* Malo manji logo na tabletima */
    }
    .hero-section {
        padding-top: 80px; /* Prilagoditi ako se visina navbara mijenja */
    }
    .highlights-grid-container {
        flex-direction: column;
        align-items: center; 
    }
    .qr-code-lika {
        width: 100%;
        max-width: 300px; 
        margin-top: 30px;
    }
}


@media screen and (max-width: 768px) {
    .navbar {
        padding: 5px 5%; /* Vraćamo padding od prije */
        min-height: 60px; /* Vraćamo min visinu */
    }
    .logo-img {
        height: 60px; /* Vraćamo originalnu visinu loga za mobitele */
    }
    .hero-section {
        padding-top: 70px; /* Prilagođeno visini headera na mobitelu */
    }
    .nav-links {
        position: absolute;
        right: 0px;
        height: calc(100vh - 70px); /* Prilagođeno visini headera na mobitelu */
        top: 70px; /* Ispod headera */
        background-color: var(--white-color);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center; 
        width: 70%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in-out;
        box-shadow: -3px 0 8px rgba(0,0,0,0.1);
    }
    .nav-links li {
        margin: 25px 0;
        opacity: 0;
    }
    .nav-links a {
        font-size: 1.1rem;
    }
    .burger {
        display: block;
    }
    .nav-active {
        transform: translateX(0%);
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-content p {
        font-size: 1.2rem;
    }

    section h2 {
        font-size: 2.2rem;
        margin-bottom: 30px;
    }

    .about-content {
        flex-direction: column;
    }
    .about-image {
        margin-top: 30px;
    }
    
    .contact-info-map {
        flex-direction: column;
    }
    .map-container {
        height: 250px; 
    }
    .contact-details, .map-container {
        min-width: unset; 
    }
    .social-links-container {
        align-items: flex-start; /* Poravnaj lijevo na mobitelu */
    }
}

/* Nav Link Animation */
@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}
.toggle .line2 {
    opacity: 0;
}
.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Language Switcher Styles - V3 (Force Visibility) */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 20px;
}

/* Osnovni stil - SADA S !important DA NADJAČA DRUGE STILOVE */
.navbar .language-switcher a {
    color: gray !important;       /* KLJUČNA PROMJENA: Forsira boju */
    opacity: 0.7 !important;      /* KLJUČNA PROMJENA: Čini ih lagano prozirnim, ali vidljivim */
    text-decoration: none;
    font-weight: 600;
    padding: 5px 8px;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s, opacity 0.3s;
}

/* Stil kada se prijeđe mišem preko linka */
.navbar .language-switcher a:hover {
    background-color: #A4B06A;
    opacity: 0.5 !important; /* Postaje potpuno vidljiv na hover */
    color: white !important;
}

/* Stil za trenutno aktivni jezik */
.navbar .language-switcher a.active {
    background-color: #A4B06A;
    opacity: 1 !important;     /* Potpuno vidljiv */
    color: #fff !important;
    cursor: default;
}

/* Prilagodba za mobilne uređaje */
@media screen and (max-width: 768px) {
    .language-switcher {
        margin: 20px 0 0 0;
        justify-content: center;
        width: 100%;
    }
}