html, body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: "Lato", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #2f2b26;
    background-color: #ffffff;
}

/* NAVBAR */

.navbar {
    background-color: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
}

.navbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.nav-brand {       
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: -225px;
    padding-right: 200px;
}

.nav-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.nav-title {
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.9rem;
    color: #c76c6c;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 0.9rem;
}

.nav-link {
    text-decoration: none;
    color: #726c65;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 500;
    position: relative;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 2px;
    background-color: #c76c6c;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
}

.nav-link:hover::after,
.nav-link.nav-link-active::after {
    transform: scaleX(1);
}

.nav-link.nav-link-active {
    color: #c76c6c;
}

.nav-lang .lang-picker {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lang-picker .flag {
    width: 28px;
    height: 20px;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.lang-picker .flag:hover {
    transform: scale(1.15);
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
}

/* HERO SECTION */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: stretch;
    justify-content: center;
    overflow: hidden;
    background-color: #f7f4f0;
}

/* svetla dijagonalna ploha preko videa na levoj trećini */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #f7f4f0;
    clip-path: polygon(0 0, 40% 0, 30% 100%, 0 100%);
    z-index: 1;
}

.hero-video {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(199, 108, 108, 0.45);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    padding: 72px 7vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-right: 500px;
}

.hero-kicker {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.8rem;
    color: #b0a79d;
    margin: 0 0 12px;
}

.hero-title {
    font-size: 2.7rem;
    line-height: 1.15;
    margin: 0 0 18px;
    max-width: 420px;
}

.hero-text {
    max-width: 460px;
    font-size: 0.98rem;
    line-height: 1.7;
    color: #6e655e;
    margin: 0 0 26px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 26px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.hero-btn-primary {
    background-color: #c76c6c;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(199, 108, 108, 0.45);
}

.hero-btn-primary:hover {
    background-color: #b35b5b;
}

.hero-btn-secondary {
    background-color: rgba(255, 255, 255, 0.9);
    color: #4c4741;
    border-color: rgba(0, 0, 0, 0.08);
}

.hero-btn-secondary:hover {
    background-color: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}




footer{
    width: 100%;
    justify-content: center;
    padding: 20px 0;
    display: flex;
    justify-content: center;
}
footer .footer-inner{
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}
footer .footer-brand .footer-logo{
    width: 80px;
    height: 40px;
    object-fit: contain;
}
footer .footer-brand{
    display: flex;
    align-items: center;
    gap: 10px;    
}

footer .footer-links{
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-icon{
    width: 35px;
    height: 35px;
    
}

/* jednostavan responsive prilagođaj */
@media (max-width: 768px) {
    .navbar-inner {
        padding-inline: 16px;
        gap: 16px;
    }

    .nav-menu {
        display: none;
    }

    .hero {
        align-items: flex-start;
    }

    .hero-content {
        padding: 48px 20px 32px;
    }

    .hero-title {
        font-size: 2.1rem;
    }

    .hero::before {
        clip-path: polygon(0 0, 55% 0, 40% 100%, 0 100%);
    }
}

