/* podgorica.css — extracted minimal CSS for city locations page */

/* ===================== TOKENS / BASE ===================== */
:root{
  --red:#0E8F8B;
  --ink:#0b0f14;
  --white:#fff;

  --shadow: 0 18px 40px rgba(0,0,0,.18);
  --shadow2: 0 22px 50px rgba(0,0,0,.28);

  --ease: cubic-bezier(.16, 1, .3, 1);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }

body{
  margin:0;
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--white);
  background:var(--ink);
}

/* ===================== CONTAINERS ===================== */
.hero__inner,
.fleet__inner{
  width:min(96vw, 1780px);
  margin:0 auto;
}

@media (max-width: 820px){
  .hero__inner,
  .fleet__inner{ width:min(100vw, 520px); }
}

/* ===================== TOPBAR (shared) ===================== */
.topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  position:relative;
  z-index:5;
}
.brand{
  font-weight:700;
  letter-spacing:.2px;
  opacity:.95;
  font-size:18px;
}
.brand img{ height: 6rem; }

.topright{
  display:flex;
  align-items:center;
  gap:16px;
}
.topnav{
  display:flex;
  align-items:center;
  gap:14px;
  font-size:13px;
  opacity:.92;
}
.topnav a{
  color:#fff;
  text-decoration:none;
  font-weight:800;
  letter-spacing:.2px;
  white-space:nowrap;
}

.topicons{
  display:flex;
  gap:10px;
  align-items:center;
}
.topicons a{
  width:34px;height:34px;
  border-radius:999px;
  display:inline-grid;
  place-items:center;
  border:1px solid rgba(255,255,255,.22);
  background:rgba(0,0,0,.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-decoration:none;
  color:#fff;
  transition:transform .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
}
.topicons a:hover{
  background:rgba(255,255,255,.10);
  border-color:rgba(255,255,255,.30);
  transform:translateY(-1px);
}
.topicons a:active{ transform:scale(.98); }

.topmeta{
  display:flex;
  gap:14px;
  align-items:center;
  font-weight:900;
  opacity:.95;
  letter-spacing:.2px;
  font-size:13px;
}

.topbar__left,
.topbar__right{ display:none; }

.hamburger{
  width:42px;height:42px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.22);
  background:rgba(0,0,0,.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  user-select:none;
  transition:transform .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
}
.hamburger:hover{
  background:rgba(255,255,255,.10);
  border-color:rgba(255,255,255,.30);
  transform:translateY(-1px);
}
.hamburger:active{ transform:scale(.98); }
.hamburger svg{ width:18px;height:18px; opacity:.95; }

@media (max-width: 820px){
  .topright{ display:none; }
  .topbar{ justify-content:center; }

  .topbar__left,
  .topbar__right{
    display:flex;
    position:absolute;
    top:0;
    align-items:center;
    gap:10px;
  }
  .topbar__left{ left:0; }
  .topbar__right{ right:0; }

  .brand{ font-size:20px; }
}

/* ===================== PAGE HEADER (no hero image) ===================== */
.page{
  background: var(--ink);
  color: var(--white);
}
.pageHeader{
  background: linear-gradient(180deg, rgba(0,0,0,.70) 0%, rgba(0,0,0,.35) 60%, rgba(0,0,0,0) 100%);
  padding: 22px 0 10px;
}

/* ===================== CITY HERO ===================== */
.locHero{
  padding: 34px 0 24px;
}
.locHero__title{
  margin: 0;
  font-weight: 900;
  letter-spacing: -1px;
  font-size: clamp(34px, 4vw, 54px);
}
.locHero__sub{
  margin: 10px 0 0;
  opacity: .85;
  font-weight: 600;
  max-width: 820px;
  line-height: 1.4;
}

.locBack{
  display:inline-block;
  margin-bottom: 12px;
  color: rgba(255,255,255,.78);
  text-decoration: none;
  font-weight: 800;
}
.locBack:hover{
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ===================== CITY LAYOUT ===================== */
.locSection{
  padding: 12px 0 60px;
}

.locLayout{
  display:grid;
  grid-template-columns: 320px 1fr;
  gap: 18px;
  align-items:start;
}

/* Sidebar */
.locSidebar__box{
  position: sticky;
  top: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  padding: 16px;
}
.locSidebar__h{
  font-weight: 900;
  letter-spacing: .2px;
  opacity: .85;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 10px;
}
.locSidebar__list{
  display:grid;
  gap: 8px;
}
.locPointLink{
  color: rgba(255,255,255,.78);
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
  padding: 10px 10px;
  border-radius: 12px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.08);
}
.locPointLink:hover{
  color:#fff;
  border-color: rgba(255,255,255,.18);
}

/* Main */
.locMain{
  display:grid;
  gap: 16px;
}

/* Point card */
.locPoint{
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  overflow:hidden;
}

.locPoint__top{
  padding: 16px 16px 14px;
  display:flex;
  justify-content:space-between;
  gap: 14px;
  align-items:flex-start;
}

.locPoint__h{
  font-weight: 900;
  font-size: 16px;
}
.locPoint__sub{
  margin-top: 6px;
  font-weight: 700;
  opacity: .75;
  font-size: 13px;
}

.locPoint__cta{
  height: 40px;
  padding: 0 14px;
  border-radius: 12px;
  background: var(--red);
  color:#fff;
  font-weight: 900;
  font-size: 13px;
  display:inline-flex;
  align-items:center;
  text-decoration:none;
  white-space:nowrap;
  box-shadow: 0 16px 30px rgba(14,143,139,.24);
}
.locPoint__cta:hover{ transform: translateY(-1px); }
.locPoint__cta:active{ transform: scale(.99); }

/* Map */
.locPoint__map iframe{
  width: 100%;
  height: 340px;
  border: 0;
  display:block;
  background:#111;
}

/* ===================== MOBILE MENU (shared) ===================== */
.menuOverlay{
  position:fixed;
  inset:0;
  z-index:999;
  pointer-events:none;
}
.menuOverlay.is-open{ pointer-events:auto; }

.menuOverlay__backdrop{
  position:absolute; inset:0;
  background:rgba(0,0,0,.45);
  opacity:0;
  transition:opacity .55s var(--ease);
}

.menuCard{
  position:absolute;
  left:16px; right:16px;
  top:70px;
  border-radius:22px;
  background:rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 25px 60px rgba(0,0,0,.35);
  color:#111;
  padding:18px 16px 14px;

  transform: translateY(-18px) scale(.96);
  opacity:0;
  filter: blur(8px);
  transition:
    opacity .65s var(--ease),
    transform .65s var(--ease),
    filter .65s var(--ease);
  will-change: transform, opacity, filter;
}

.menuOverlay.is-open .menuOverlay__backdrop{ opacity:1; }
.menuOverlay.is-open .menuCard{
  opacity:1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.menuOverlay.is-closing .menuOverlay__backdrop{
  opacity:0;
  transition:opacity .40s var(--ease);
}
.menuOverlay.is-closing .menuCard{
  opacity:0;
  transform: translateY(-10px) scale(.985);
  filter: blur(8px);
  transition:
    opacity .40s var(--ease),
    transform .40s var(--ease),
    filter .40s var(--ease);
}

.menuCard__top{
  display:flex;
  justify-content:flex-end;
  padding-bottom:8px;
}
.menuClose{
  width:40px;height:40px;
  border-radius:14px;
  border:0;
  background:rgba(0,0,0,.06);
  cursor:pointer;
  display:inline-grid;
  place-items:center;
  font-weight:900;
  font-size:16px;
  transition:transform .25s var(--ease);
}
.menuClose:active{ transform:scale(.98); }

.menuLinks{
  display:grid;
  gap:10px;
  padding:6px 6px 10px;
  font-weight:800;
}
.menuLinks a{
  color:#111;
  text-decoration:none;
  padding:8px 8px;
  border-radius:12px;
  transition:background .2s var(--ease);
}
.menuLinks a:hover{ background:rgba(0,0,0,.05); }

.menuGrid{
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  gap:10px;
  padding:10px 6px 0;
}
.chip{
  display:flex;
  align-items:center;
  justify-content:center;
  height:40px;
  border-radius:10px;
  font-weight:900;
  font-size:13px;
  border:1px solid rgba(0,0,0,.10);
  background:transparent;
  cursor:pointer;
  transition: transform .18s var(--ease), background .18s var(--ease), border-color .18s var(--ease);
}
.chip:active{ transform:scale(.98); }
.chip.is-active{
  background:var(--red);
  border-color:var(--red);
  color:#fff;
}

.menuCurrencies{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:10px;
  padding:10px 6px 6px;
}

@media (min-width: 821px){
  .menuOverlay{ display:none; }
}

@media (prefers-reduced-motion: reduce){
  *{ transition:none !important; animation:none !important; }
}

/* ===================== OPTIONAL: make WA/TG text buttons look like icons ===================== */
.topicons a[aria-label="WhatsApp"],
.topicons a[aria-label="Telegram"]{
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .6px;
}
/* ===================== MOBILE FIX (ADD AT THE END) ===================== */

/* sprečava overflow u gridu */
.locLayout > * { min-width: 0; }
.locMain { min-width: 0; }

@media (max-width: 980px){
  /* 1 kolona na tablet/mobilnom */
  .locLayout{
    grid-template-columns: 1fr;
  }

  /* sticky na malom ekranu ume da zeza — gasimo */
  .locSidebar__box{
    position: relative;
    top: auto;
  }
}

@media (max-width: 520px){
  /* malo više "mobile friendly" spacing */
  .locHero{ padding: 24px 0 16px; }
  .locHero__sub{ font-size: 14px; }

  /* top kartice u kolonu */
  .locPoint__top{
    flex-direction: column;
    align-items: flex-start;
  }

  /* CTA da ne gura layout */
  .locPoint__cta{
    width: 100%;
    justify-content: center;
  }

  /* mapa niža na telefonu */
  .locPoint__map iframe{
    height: 260px;
  }
}
