/* ============================================
   RESTORAN STANIŠIĆ — style.css
   Elegantna rekonstrukcija: bela pozadina,
   Cormorant Garamond + Inter, zlatni akcenti
============================================ */

:root {
    --white: #ffffff;
    --cream: #faf8f4;
    --ink: #211a12;
    --ink-soft: #3a3128;
    --muted: #6d6156;
    --gold: #b08540;
    --gold-dark: #8a6428;
    --line: #eae3d8;
    --dark: #17120d;
    --dark-soft: #241c14;

    --font-main: "Inter", sans-serif;
    --font-heading: "Cormorant Garamond", serif;

    --container: 1180px;
    --radius: 12px;
    --transition: 0.3s cubic-bezier(0.25, 0.6, 0.3, 1);
    --shadow-soft: 0 14px 40px rgba(33, 26, 18, 0.08);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
}

body {
    font-family: var(--font-main);
    background: var(--white);
    color: var(--ink);
    line-height: 1.65;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.no-scroll {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Sprečava Safari/iOS plavo bojenje detektovanih brojeva telefona */
:where(a[href^="tel:"]) {
    color: inherit;
    text-decoration: none;
    -webkit-text-fill-color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
}

::selection {
    background: var(--gold);
    color: var(--white);
}

.container {
    width: min(100% - 40px, var(--container));
    margin: 0 auto;
}

/* Skip link (pristupačnost) */

.skip-link {
    position: absolute;
    top: -60px;
    left: 16px;
    z-index: 3000;
    background: var(--ink);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 0 0 8px 8px;
    font-size: 14px;
    font-weight: 600;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 0;
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--gold-dark);
    outline-offset: 3px;
    border-radius: 2px;
}

/* ============================================
   LOADING SCREEN
============================================ */

.loader {
    position: fixed;
    inset: 0;
    z-index: 5000;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.65s ease, visibility 0.65s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-inner {
    text-align: center;
    padding: 0 24px;
}

.loader-label {
    display: block;
    font-size: 12px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--gold-dark);
    font-weight: 600;
    margin-bottom: 10px;
    opacity: 0;
    animation: loaderFade 0.9s ease 0.15s forwards;
}

.loader-name {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(44px, 9vw, 72px);
    font-weight: 600;
    line-height: 1;
    color: var(--ink);
    opacity: 0;
    animation: loaderFade 0.9s ease 0.35s forwards;
}

.loader-line {
    display: block;
    width: 120px;
    height: 1px;
    margin: 22px auto 0;
    background: var(--line);
    position: relative;
    overflow: hidden;
}

.loader-line::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: translateX(-100%);
    animation: loaderLine 1.4s ease 0.5s infinite;
}

@keyframes loaderFade {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes loaderLine {
    0% {
        transform: translateX(-100%);
    }

    55% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(100%);
    }
}

/* ============================================
   HEADER
============================================ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
    border-bottom-color: var(--line);
    box-shadow: 0 8px 30px rgba(33, 26, 18, 0.06);
}

.header-inner {
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

/* Logo */

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
    z-index: 1102;
}

.logo-small {
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-dark);
    font-weight: 600;
}

.logo-main {
    font-family: var(--font-heading);
    font-size: 27px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--ink);
    margin: 3px 0;
}

/* Navigacija — desktop */

.nav {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav a {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--ink-soft);
    position: relative;
    padding: 10px 0;
    transition: color var(--transition);
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 4px;
    width: 100%;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.35s cubic-bezier(0.25, 0.6, 0.3, 1);
}

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

.nav a:hover::after,
.nav a.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-phone-mobile {
    display: none;
}

/* Telefon dugme */

.header-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 24px;
    background: var(--ink);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 100px;
    transition: background var(--transition), transform var(--transition);
    white-space: nowrap;
}

.header-phone svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

.header-phone:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
}

/* Hamburger */

.menu-btn {
    display: none;
    position: relative;
    z-index: 1102;
    width: 48px;
    height: 48px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: border-color var(--transition);
}

.menu-btn span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.menu-btn:hover {
    border-color: var(--gold);
}

body.nav-open .menu-btn span:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
}

body.nav-open .menu-btn span:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
}

/* Izbor jezika */

.lang-switch {
    position: relative;
    z-index: 1102;
}

.lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 44px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 100px;
    background: var(--white);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--ink);
    transition: border-color var(--transition);
}

.lang-btn:hover {
    border-color: var(--gold);
}

.lang-btn .lang-globe {
    width: 16px;
    height: 16px;
    color: var(--gold-dark);
}

.lang-btn .lang-chevron {
    width: 13px;
    height: 13px;
    transition: transform 0.3s ease;
}

.lang-switch.open .lang-chevron {
    transform: rotate(180deg);
}

.lang-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 150px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 6px;
    box-shadow: 0 16px 40px rgba(33, 26, 18, 0.14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.lang-switch.open .lang-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-menu button {
    display: block;
    width: 100%;
    text-align: left;
    padding: 10px 14px;
    border: none;
    background: none;
    border-radius: 8px;
    font-size: 14px;
    color: var(--ink-soft);
    transition: background var(--transition), color var(--transition);
}

.lang-menu button:hover {
    background: var(--cream);
    color: var(--ink);
}

.lang-menu button.active {
    color: var(--gold-dark);
    font-weight: 700;
}

/* ============================================
   HERO
============================================ */

.hero {
    position: relative;
    min-height: calc(100svh - 88px);
    display: flex;
    align-items: center;
    background:
        linear-gradient(75deg, rgba(18, 12, 7, 0.82) 0%, rgba(18, 12, 7, 0.45) 55%, rgba(18, 12, 7, 0.2) 100%),
        url("../images/hero.jpg") center / cover no-repeat;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    padding: 110px 0 130px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #d9b877;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-label::before {
    content: "";
    width: 40px;
    height: 1px;
    background: currentColor;
    opacity: 0.7;
}

.hero h1 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: clamp(52px, 9vw, 104px);
    line-height: 0.95;
    letter-spacing: 1px;
    max-width: 760px;
    margin-bottom: 26px;
}

.hero-text {
    font-size: clamp(17px, 2vw, 24px);
    font-weight: 300;
    max-width: 560px;
    color: #f1e8db;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    left: 50%;
    bottom: 34px;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-scroll::after {
    content: "";
    width: 1px;
    height: 42px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), transparent);
    animation: scrollHint 2s ease infinite;
}

@keyframes scrollHint {

    0%,
    100% {
        transform: scaleY(0.5);
        transform-origin: top;
        opacity: 0.5;
    }

    50% {
        transform: scaleY(1);
        opacity: 1;
    }
}

/* Dugmad */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 34px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 13px;
    font-weight: 700;
    transition: background var(--transition), color var(--transition), transform var(--transition), border-color var(--transition);
}

.btn:active {
    transform: scale(0.97);
}

.btn-primary {
    background: var(--gold);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.55);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--ink);
    transform: translateY(-2px);
}

.btn-dark {
    background: var(--ink);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
}

.btn-light {
    background: var(--white);
    color: var(--ink);
}

.btn-light:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
}

/* ============================================
   SEKCIJE — zajedničko
============================================ */

.section {
    padding: 110px 0;
}

.section-label.dark {
    color: var(--gold-dark);
}

.section-heading {
    max-width: 640px;
    margin-bottom: 60px;
}

.section-heading.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-heading.center .section-label::before {
    display: none;
}

.section-heading h2 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1.02;
    color: var(--ink);
}

/* ============================================
   O NAMA
============================================ */

.about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(48px, 6vw, 90px);
    align-items: center;
}

.about-text h2 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: clamp(38px, 5vw, 60px);
    line-height: 1.02;
    margin-bottom: 30px;
    color: var(--ink);
}

.about-text p {
    color: var(--muted);
    font-size: 16.5px;
    margin-bottom: 20px;
    max-width: 540px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
    color: var(--gold-dark);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 13px;
    padding: 8px 0;
    transition: gap var(--transition), color var(--transition);
}

.text-link::after {
    content: "→";
    font-size: 15px;
    transition: transform var(--transition);
}

.text-link:hover {
    color: var(--ink);
}

.text-link:hover::after {
    transform: translateX(5px);
}

.about-image {
    border: 1px solid var(--gold);
    border-radius: var(--radius);
    padding: 16px;
    background:
        repeating-linear-gradient(45deg, rgba(176, 133, 64, 0.09) 0 2px, transparent 2px 6px),
        repeating-linear-gradient(-45deg, rgba(176, 133, 64, 0.07) 0 2px, transparent 2px 6px),
        linear-gradient(160deg, #f5ebd9, #e9d9bc);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border: 1px solid rgba(138, 100, 40, 0.4);
    border-radius: calc(var(--radius) - 8px);
    box-shadow: var(--shadow-soft);
}

/* ============================================
   SPECIJALITETI
============================================ */

.specialties {
    background: var(--cream);
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.food-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}

.food-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-soft);
}

.food-card-media {
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.food-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.6, 0.3, 1);
}

.food-card:hover .food-card-media img {
    transform: scale(1.06);
}

.food-card-content {
    padding: 30px;
    position: relative;
}

.food-card-content::before {
    content: "";
    display: block;
    width: 36px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 18px;
}

.food-card-content h3 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 32px;
    line-height: 1;
    margin-bottom: 12px;
    color: var(--ink);
}

.food-card-content p {
    color: var(--muted);
    font-size: 15px;
}

/* ============================================
   MENI CTA
============================================ */

.menu-cta {
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    background:
        linear-gradient(rgba(15, 10, 6, 0.72), rgba(15, 10, 6, 0.72)),
        url("../images/galerija-2.jpg") center / cover no-repeat;
}

.menu-cta-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    padding: 110px 0;
    width: 100%;
}

.menu-cta .section-label {
    justify-content: center;
}

.menu-cta .section-label::before {
    display: none;
}

.menu-cta h2 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.02;
    margin-bottom: 20px;
}

.menu-cta p {
    max-width: 560px;
    margin: 0 auto 36px;
    color: #e9decd;
    font-weight: 300;
    font-size: 17px;
}

/* ============================================
   KONTAKT
============================================ */

.contact {
    background: var(--cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 30px;
    align-items: stretch;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    flex: 1;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: transform var(--transition), box-shadow var(--transition);
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
}

.contact-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(176, 133, 64, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
}

.contact-icon svg {
    width: 22px;
    height: 22px;
}

.contact-card h3 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 27px;
    line-height: 1.1;
    margin-bottom: 6px;
    color: var(--ink);
}

.contact-card p {
    color: var(--muted);
    font-size: 15.5px;
}

.contact-map {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    min-height: 460px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 460px;
    border: none;
    display: block;
}

.map-overlay {
    position: absolute;
    inset: 0;
    z-index: 10;
}

/* ============================================
   FOOTER
============================================ */

.footer {
    background: var(--dark);
    color: #f2ebe0;
}

.footer-content {
    padding: 70px 0 50px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 44px;
    align-items: start;
}

.footer-brand h3 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 32px;
    margin-bottom: 14px;
}

.footer-brand p {
    color: #b5a892;
    max-width: 340px;
    font-size: 15px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #d8cdbb;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    width: fit-content;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: #b5a892;
    font-size: 15px;
}

.footer-contact svg {
    flex-shrink: 0;
    width: 17px;
    height: 17px;
    margin-top: 3px;
    color: var(--gold);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(176, 133, 64, 0.45);
    border-radius: 50%;
    color: var(--gold);
    transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-social svg {
    width: 19px;
    height: 19px;
}

.footer-social a[aria-label^="Instagram"] svg {
    transform: translateY(-1px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 22px 16px;
    text-align: center;
}

.footer-bottom p {
    color: #94886f;
    font-size: 13px;
}

.footer-credit {
    margin-top: 4px;
}

.footer-credit a {
    color: #f07c22;
    font-weight: 600;
    transition: color var(--transition);
}

.footer-credit a:hover {
    color: #ff9a4d;
}

/* ============================================
   BACK TO TOP
============================================ */

.back-to-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1001;
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 50%;
    background: var(--ink);
    color: var(--white);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

body.nav-open .back-to-top {
    opacity: 0;
    visibility: hidden;
}

.back-to-top:hover {
    background: var(--gold-dark);
}

/* ============================================
   REVEAL ANIMACIJE
============================================ */

.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger > * {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-stagger.active > * {
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger.active > *:nth-child(2) {
    transition-delay: 0.12s;
}

.reveal-stagger.active > *:nth-child(3) {
    transition-delay: 0.24s;
}

.reveal-stagger.active > *:nth-child(4) {
    transition-delay: 0.36s;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-46px);
    transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.25, 0.6, 0.3, 1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(46px);
    transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.25, 0.6, 0.3, 1);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.25, 0.6, 0.3, 1);
}

.reveal-left.active,
.reveal-right.active,
.reveal-scale.active {
    opacity: 1;
    transform: none;
}

/* Ulazna animacija hero naslova */

.menu-hero .section-label,
.menu-hero h1,
.menu-hero p,
.hero-content .section-label,
.hero-content h1,
.hero-content .hero-text,
.hero-content .hero-actions {
    opacity: 0;
    animation: heroIn 0.9s cubic-bezier(0.25, 0.6, 0.3, 1) forwards;
}

.menu-hero .section-label,
.hero-content .section-label {
    animation-delay: 0.15s;
}

.menu-hero h1,
.hero-content h1 {
    animation-delay: 0.3s;
}

.menu-hero p,
.hero-content .hero-text {
    animation-delay: 0.45s;
}

.hero-content .hero-actions {
    animation-delay: 0.6s;
}

@keyframes heroIn {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   MENI STRANICA
============================================ */

.menu-hero {
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    background:
        linear-gradient(rgba(15, 10, 6, 0.7), rgba(15, 10, 6, 0.7)),
        url("../images/galerija-2.jpg") center / cover no-repeat;
}

.menu-hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    padding: 90px 0;
    width: 100%;
}

.menu-hero .section-label {
    justify-content: center;
}

.menu-hero .section-label::before {
    display: none;
}

.menu-hero h1 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: clamp(48px, 8vw, 92px);
    line-height: 0.95;
    margin-bottom: 20px;
}

.menu-hero p {
    max-width: 620px;
    margin: 0 auto;
    color: #e9decd;
    font-weight: 300;
    font-size: 17px;
}

/* Kategorije — sticky navigacija */

.menu-nav {
    position: sticky;
    top: 88px;
    z-index: 900;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
}

.menu-nav-inner {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 14px 0;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.menu-nav-inner::-webkit-scrollbar {
    display: none;
}

.menu-nav a {
    flex-shrink: 0;
    padding: 10px 20px;
    border: 1px solid var(--line);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--ink-soft);
    white-space: nowrap;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.menu-nav a:hover {
    border-color: var(--gold);
    color: var(--gold-dark);
}

.menu-nav a.active {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--white);
}

/* Sekcije menija */

.menu-page {
    background: var(--white);
    padding: 40px 0 90px;
}

.menu-section {
    padding-top: 56px;
    scroll-margin-top: 170px;
}

.menu-section-head {
    text-align: center;
    margin-bottom: 40px;
}

.menu-section-head h2 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: clamp(34px, 4.5vw, 52px);
    line-height: 1.05;
    color: var(--ink);
}

.menu-section-head::after {
    content: "";
    display: block;
    width: 52px;
    height: 2px;
    background: var(--gold);
    margin: 18px auto 0;
}

.menu-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 60px;
    row-gap: 30px;
    align-items: start;
}

.menu-item-head {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.menu-item-head h3 {
    font-size: 16.5px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.35;
}

.menu-item-head .gram {
    font-size: 13px;
    font-weight: 400;
    color: var(--muted);
    white-space: nowrap;
}

.menu-item-head .dots {
    flex: 1;
    min-width: 24px;
    border-bottom: 1px dotted #cbbfae;
    transform: translateY(-4px);
}

.menu-item-head .price {
    font-weight: 700;
    font-size: 16.5px;
    color: var(--gold-dark);
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.menu-item-desc {
    margin-top: 6px;
    font-size: 14px;
    font-style: italic;
    color: var(--muted);
    max-width: 480px;
}

.menu-note {
    margin-top: 70px;
    text-align: center;
    border-top: 1px solid var(--line);
    padding-top: 36px;
}

.menu-note .phone {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 600;
    color: var(--ink);
    display: inline-block;
    margin-bottom: 6px;
    transition: color var(--transition);
}

.menu-note .phone:hover {
    color: var(--gold-dark);
}

.menu-note p {
    color: var(--muted);
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ============================================
   O NAMA STRANICA
============================================ */

.values {
    background: var(--cream);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.value-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 40px 32px;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-soft);
}

.value-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: rgba(176, 133, 64, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
    transition: background var(--transition), color var(--transition), transform var(--transition);
}

.value-card:hover .value-icon {
    background: var(--gold);
    color: var(--white);
    transform: scale(1.08);
}

.value-icon svg {
    width: 26px;
    height: 26px;
}

.value-card h3 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 28px;
    line-height: 1.1;
    margin-bottom: 12px;
    color: var(--ink);
}

.value-card p {
    color: var(--muted);
    font-size: 15px;
}

/* Citat traka */

.quote-band {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 130px 0;
    background:
        linear-gradient(rgba(15, 10, 6, 0.74), rgba(15, 10, 6, 0.74)),
        url("../images/hero.jpg") center / cover no-repeat;
}

.quote-band blockquote {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 20px;
}

.quote-band .quote-mark {
    display: block;
    font-family: var(--font-heading);
    font-size: 90px;
    line-height: 0.5;
    color: var(--gold);
    margin-bottom: 26px;
}

.quote-band .quote-text {
    font-family: var(--font-heading);
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 500;
    font-style: italic;
    line-height: 1.3;
    color: var(--white);
    margin-bottom: 24px;
}

.quote-band cite {
    font-family: var(--font-main);
    font-style: normal;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #d9b877;
}

/* Ambijent */

.ambience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
}

.ambience-grid .gallery-photo {
    aspect-ratio: 3 / 2;
    cursor: default;
}

/* CTA traka na dnu stranica */

.page-cta {
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    background:
        linear-gradient(rgba(15, 10, 6, 0.72), rgba(15, 10, 6, 0.72)),
        url("../images/enterijer-cta.jpg") center / cover no-repeat;
}

.page-cta-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    padding: 100px 0;
    width: 100%;
}

.page-cta h2 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.05;
    margin-bottom: 34px;
}

.page-cta .cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   KONTAKT STRANICA
============================================ */

.contact-page-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.contact-page-cards .contact-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 32px 28px;
}

.contact-social {
    margin-top: 2px;
}

/* Rezervacije — telefonska traka */

.reserve-band {
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    background:
        linear-gradient(rgba(15, 10, 6, 0.78), rgba(15, 10, 6, 0.78)),
        url("../images/galerija-2.jpg") center / cover no-repeat;
}

.reserve-band-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    padding: 100px 0;
    width: 100%;
}

.reserve-band .section-label {
    justify-content: center;
}

.reserve-band .section-label::before {
    display: none;
}

.reserve-band h2 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.05;
    margin-bottom: 26px;
}

.phone-big {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: clamp(38px, 6vw, 64px);
    font-weight: 600;
    color: var(--white);
    letter-spacing: 2px;
    line-height: 1;
    margin-bottom: 18px;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 8px;
    transition: color var(--transition), border-color var(--transition);
}

.phone-big:hover {
    color: #d9b877;
    border-color: #d9b877;
}

.reserve-band .work-note {
    color: #e9decd;
    font-weight: 300;
    font-size: 16px;
}

/* Velika mapa */

.map-section {
    background: var(--cream);
}

.map-large {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
}

.map-large iframe {
    width: 100%;
    height: 520px;
    border: none;
    display: block;
}

/* ============================================
   GALERIJA STRANICA
============================================ */

.gallery-page {
    background: var(--white);
    padding: 70px 0 100px;
}

.gallery-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.gallery-photo {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    border: none;
    background: var(--cream);
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4 / 5;
    cursor: zoom-in;
}

.gallery-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.6, 0.3, 1);
}

.gallery-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(18, 12, 7, 0.3), transparent 40%);
    opacity: 0;
    transition: opacity var(--transition);
    pointer-events: none;
}

.gallery-photo:hover img,
.gallery-photo:focus-visible img {
    transform: scale(1.05);
}

.gallery-photo:hover::after,
.gallery-photo:focus-visible::after {
    opacity: 1;
}

/* Lightbox */

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(12, 8, 5, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.lightbox.open {
    opacity: 1;
    visibility: visible;
}

.lightbox img {
    max-width: min(92vw, 900px);
    max-height: 84svh;
    border-radius: 8px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    transition: transform 0.35s ease;
    transform: scale(0.96);
}

.lightbox.open img {
    transform: scale(1);
}

.lightbox-btn {
    position: absolute;
    z-index: 2;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    font-size: 24px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition), border-color var(--transition);
}

.lightbox-btn:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.5);
}

.lightbox-close {
    top: 22px;
    right: 22px;
}

.lightbox-prev {
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    letter-spacing: 2px;
    font-variant-numeric: tabular-nums;
}

/* ============================================
   RESPONSIVE
============================================ */

@media (max-width: 1024px) {
    .nav {
        gap: 24px;
    }

    .header-phone {
        padding: 12px 18px;
    }
}

@media (max-width: 900px) {

    /* Header / mobilna navigacija */

    /* backdrop-filter pravi containing block za fixed elemente,
       pa bi overlay navigacija ostala zarobljena u headeru */
    .site-header {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: var(--white);
    }

    .header-inner {
        height: 76px;
    }

    html {
        scroll-padding-top: 84px;
    }

    .menu-btn {
        display: flex;
    }

    .header-phone {
        display: none;
    }

    .lang-switch {
        margin-left: auto;
    }

    .lang-btn {
        padding: 0 12px;
        gap: 6px;
    }

    .nav {
        position: fixed;
        inset: 0;
        z-index: 1100;
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 90px 32px 40px;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease, visibility 0.4s ease;
    }

    body.nav-open .nav {
        opacity: 1;
        visibility: visible;
    }

    .nav a {
        font-family: var(--font-heading);
        font-size: clamp(30px, 8vw, 40px);
        font-weight: 600;
        text-transform: none;
        letter-spacing: 0.5px;
        color: var(--ink);
        padding: 6px 0;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.45s ease, transform 0.45s ease;
    }

    .nav a::after {
        bottom: 2px;
        height: 2px;
    }

    body.nav-open .nav a {
        opacity: 1;
        transform: translateY(0);
    }

    body.nav-open .nav a:nth-child(1) { transition-delay: 0.08s; }
    body.nav-open .nav a:nth-child(2) { transition-delay: 0.14s; }
    body.nav-open .nav a:nth-child(3) { transition-delay: 0.2s; }
    body.nav-open .nav a:nth-child(4) { transition-delay: 0.26s; }
    body.nav-open .nav a:nth-child(5) { transition-delay: 0.32s; }
    body.nav-open .nav a:nth-child(6) { transition-delay: 0.38s; }
    body.nav-open .nav a:nth-child(7) { transition-delay: 0.44s; }

    .nav-phone-mobile {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        margin-top: 28px;
        padding: 15px 30px;
        background: var(--ink);
        color: var(--white) !important;
        border-radius: 100px;
        font-family: var(--font-main) !important;
        font-size: 14px !important;
        font-weight: 600;
        letter-spacing: 1.5px !important;
        text-transform: uppercase !important;
    }

    .nav-phone-mobile::after {
        display: none;
    }

    .nav-phone-mobile svg {
        width: 15px;
        height: 15px;
    }

    /* Hero */

    .hero {
        min-height: calc(100svh - 76px);
        background:
            linear-gradient(160deg, rgba(18, 12, 7, 0.85) 0%, rgba(18, 12, 7, 0.55) 100%),
            url("../images/hero.jpg") center / cover no-repeat;
    }

    /* Sekcije */

    .section {
        padding: 80px 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-image img {
        height: 400px;
    }

    .specialties-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 560px;
        margin: 0 auto;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-map {
        min-height: 380px;
    }

    .contact-map iframe {
        min-height: 380px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 56px 0 40px;
    }

    /* Meni stranica */

    .menu-nav {
        top: 76px;
    }

    .menu-nav-inner {
        margin: 0 -20px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .menu-list {
        grid-template-columns: 1fr;
        row-gap: 24px;
    }

    /* O nama / Kontakt stranice */

    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 480px;
        margin: 0 auto;
    }

    .ambience-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .quote-band {
        padding: 90px 0;
    }

    .contact-page-cards {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .map-large iframe {
        height: 400px;
    }

    .page-cta-content,
    .reserve-band-content {
        padding: 80px 0;
    }

    .page-cta .cta-actions .btn {
        width: min(100%, 340px);
    }

    /* Reveal levo/desno na telefonu prelazi u fade-up */

    .reveal-left,
    .reveal-right {
        transform: translateY(32px);
    }

    /* Galerija */

    .gallery-page {
        padding: 50px 0 70px;
    }

    .gallery-page-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .lightbox-btn {
        width: 46px;
        height: 46px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox img {
        max-width: 94vw;
        max-height: 78svh;
    }

    .menu-section {
        scroll-margin-top: 150px;
        padding-top: 48px;
    }
}

@media (max-width: 600px) {
    .container {
        width: min(100% - 32px, var(--container));
    }

    .logo-main {
        font-size: 23px;
    }

    .logo-small {
        font-size: 9px;
        letter-spacing: 3px;
    }

    .hero-content {
        padding: 80px 0 110px;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .section {
        padding: 64px 0;
    }

    .section-heading {
        margin-bottom: 44px;
    }

    .text-link {
        font-size: 12px;
        letter-spacing: 1px;
    }

    .about-image {
        padding: 12px;
    }

    .about-image img {
        height: 320px;
    }

    .food-card-content {
        padding: 24px;
    }

    .food-card-content h3 {
        font-size: 28px;
    }

    .contact-card {
        padding: 22px;
        gap: 16px;
    }

    .contact-card h3 {
        font-size: 24px;
    }

    .menu-cta-content {
        padding: 80px 0;
    }

    .menu-cta .btn {
        width: min(100%, 340px);
    }

    .menu-hero-content {
        padding: 70px 0;
    }

    .back-to-top {
        right: 16px;
        bottom: 16px;
        width: 48px;
        height: 48px;
    }
}

/* ============================================
   REDUCED MOTION
============================================ */

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal,
    .reveal-stagger > *,
    .reveal-left,
    .reveal-right,
    .reveal-scale {
        opacity: 1;
        transform: none;
    }
}
