@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Parisienne&display=swap');

:root {
    --bg-main: #ffffff;
    --bg-white: #ffffff;
    --text-main: #2e2e2e;
    --text-soft: #6f6f6f;
    --accent: #9b7b5f;
    --border-soft: #e4e1dc;
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--bg-main);
    font-family: 'Montserrat', sans-serif;
    color: var(--text-main);
    line-height: 1.9;
}

/* LAYOUT */
.container {
    max-width: 1400px;
    margin: auto;
    padding: 0 24px;
}

.narrow {
    max-width: 1060px;
}

.container.narrow hr {
    margin: 40px 0;
    border: none;
    border-top: 1px solid #e5e5e5;
}

.container.narrow h4 {
    margin-top: 25px;
    font-size: 20px;
}

.container_treatment {
    display: flex;
    gap: 20px;
    /* razmak između kolona */
}

.container_treatment_left,
.container_treatment_right {
    flex: 1;
    /* obe zauzimaju po 50% širine */
    padding: 20px;
    background-color: #f2f2f2;
}

/* HEADER */
header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-soft);
}

/* Top row: logo + lang switcher */
.header-top {
    border-bottom: 1px solid var(--border-soft);
    padding: 22px 0 18px;
}

.header-top-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
}

.logo h1 {
    font-family: 'Parisienne', cursive;
    font-size: 38px;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1;
}

.logo span {
    display: block;
    font-size: 13px;
    color: var(--text-soft);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-top: 3px;
}

/* Bottom row: nav bar */
.header-nav-bar {
    background: var(--bg-main);
}

.header-nav-bar .container {
    display: flex;
    justify-content: center;
}

/* NAVIGATION */
nav>ul {
    list-style: none;
    display: flex;
    gap: 0;
}

nav>ul>li {
    position: relative;
}

nav a {
    display: block;
    text-decoration: none;
    color: var(--text-main);
    font-size: 14px;
    padding: 16px 20px;
    letter-spacing: 0.03em;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s ease, color 0.2s ease;
}

nav a:hover,
nav a.active {
    border-color: var(--accent);
    color: var(--accent);
}

/* Submenu arrow */
.has-submenu>a::after {
    content: " ▾";
    font-size: 11px;
}

/* SUBMENU (VERTICAL) */
.submenu {
    list-style: none;
    position: absolute;
    top: 100%;
    left: 0;
    display: block;
    min-width: 260px;
    padding: 8px 0;
    margin: 0;
    background: var(--bg-white);
    border: 1px solid var(--border-soft);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.2s ease;
    z-index: 1000;
}

.submenu li {
    display: block;
}

.submenu li a {
    display: block;
    padding: 10px 20px;
    font-size: 13px;
    color: var(--text-main);
    white-space: nowrap;
    border-bottom: none;
    letter-spacing: 0;
}

.submenu li a:hover {
    background: var(--bg-main);
    color: var(--accent);
    border-color: transparent;
}

/* Desktop hover */
.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* LANGUAGE */
.lang-switch {
    display: flex;
    gap: 6px;
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
}

.lang-switch button {
    background: none;
    border: 1px solid var(--border-soft);
    padding: 5px 10px;
    font-size: 12px;
    cursor: pointer;
    letter-spacing: 0.05em;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.lang-switch button:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* Mobile hamburger */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    padding: 8px;
    position: absolute;
    top: 18px;
    right: 24px;
}


/* PAGE */
.page {
    background: var(--bg-white);
    margin: 60px auto;
    padding: 90px 0;
}

.page h2 {
    font-size: 34px;
    margin-bottom: 42px;
}

.page p {
    color: var(--text-soft);
    margin-bottom: 26px;
}

.highlight {
    color: var(--text-main);
    font-weight: 500;
}

/* SERVICES */
.service-list {
    list-style: none;
}

.service-list li {
    padding: 14px 0;
    border-bottom: 1px solid var(--border-soft);
    color: var(--text-soft);
}

.service_treatment_right-section {
    text-align: center;
    padding: 30px 20px;
    max-width: 400px;
    margin: 40px auto;

    border: 1px solid #e5e5e5;
    border-radius: 12px;
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.service_treatment_right-title {
    margin-bottom: 40px;
}

.service_treatment_right-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 350px;
}

.service_treatment_right-list li {
    margin-bottom: 15px;
    font-size: 14px;
}

.service-box {
    background: #ffffff;
    border: 1px solid #e6e6e6;
    padding: 40px;
    margin-bottom: 40px;
    border-radius: 6px;
}

.service-box h2,
.service-box h3 {
    text-align: center;
    margin-bottom: 25px;
}

.program-item {
    margin-bottom: 25px;
}

.program-item h4 {
    margin-bottom: 8px;
    color: #7a8c8d;
}

/* CONTACT */
.contact-form {
    margin-top: 40px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 18px;
    border: 1px solid var(--border-soft);
    font-size: 14px;
}

.contact-form button {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 14px;
    cursor: pointer;
}

/* MAP */
.map iframe {
    width: 100%;
    height: 360px;
    border: 0;
    margin-top: 40px;
}

/* FOOTER */
footer {
    background: var(--bg-white);
    border-top: 1px solid var(--border-soft);
    text-align: center;
    padding: 26px 0;
    font-size: 14px;
    color: var(--text-soft);
}

.about-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    max-width: 1400px;
    /* veća maksimalna širina kontejnera */
    margin: 0 auto;
    padding: 60px 20px;
}

.about-left {
    flex: 2;
    /* veća leva kolona */
    min-width: 0;
    /* sprečava neželjeno sužavanje u flexbox-u */
}

.about-right {
    flex: 1;
    display: flex;
    justify-content: center;
    min-width: 0;
    /* ne dozvoljava koloni da se previše suzi */
}

.about-image {
    width: 100%;
    max-width: 450px;
    /* veće ograničenje slike */
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

.home-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    display: block;
    margin-bottom: 40px;
}

/* MOBILE */
@media (max-width: 768px) {

    header {
        position: relative;
    }

    .header-top-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .header-nav-bar {
        display: none;
    }

    .header-nav-bar.open {
        display: block;
    }

    nav>ul {
        flex-direction: column;
        gap: 0;
    }

    nav a {
        padding: 12px 16px;
    }

    .page {
        margin: 30px 12px;
        padding: 60px 0;
    }

    .page h2 {
        font-size: 26px;
    }

    /* Mobile submenu */
    .submenu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        border: none;
        background: transparent;
    }

    .has-submenu.open .submenu {
        display: block;
    }
}

@media (max-width: 900px) {
    .about-layout {
        flex-direction: column;
        gap: 40px;
    }

    .about-right {
        flex: none;
    }

    .about-image {
        max-width: 300px;
    }
}