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

body{
  font-family:'Montserrat', sans-serif;
  background:#ffffff;
  color:#111;
  overflow-x:hidden;
}

/* NAVBAR */

header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:12px 60px;
  background:#fff;
  position:sticky;
  top:0;
  z-index:1000;
}

.logo{
  display:flex;
  align-items:center;
}

/* Header logo (already coloured PNG) */
.logo-mark{
  display:block;
  width:62px;
  height:62px;
  object-fit:contain;
}

/* PNG logo used as a mask so it can be tinted any colour */
.logo-img{
  display:block;
  width:62px;
  height:62px;
  background-color:#808000; /* olive */
  -webkit-mask:url('../images/logo-footer.webp') no-repeat center / contain;
  mask:url('../images/logo-footer.webp') no-repeat center / contain;
}

nav{
  display:flex;
  align-items:center;
  gap:45px;
  padding-left:70px;
}

nav a{
  color:#16384a;
  text-decoration:none;
  font-size:16px;
  font-weight:500;
  letter-spacing:2px;
  transition:0.3s;
}

nav a:hover,
nav a.active{
  color:#0e8388;
}

/* ROUTES-POST: header kao na početnoj — transparentan na vrhu, fejduje u bijeli i fiksira se na skrol */
.routes-post header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  background:transparent;
  transition:background 0.35s ease, box-shadow 0.35s ease;
}
.routes-post header.scrolled{
  background:#fff;
  box-shadow:0 2px 14px rgba(0,0,0,0.10);
}
.routes-post header nav a{
  color:#fff;
}
.routes-post header.scrolled nav a{
  color:#16384a;
}
.routes-post header nav a.active{
  color:#0e8388;
}
.routes-post header .logo-mark{
  filter:brightness(0) invert(1);
}
.routes-post header.scrolled .logo-mark{
  filter:none;
}
/* burger prati boju logoa: bijel na vrhu, taman kad je header bijel */
.routes-post header .nav-toggle-label span{
  background:#fff;
}
.routes-post header.scrolled .nav-toggle-label span{
  background:#16384a;
}
/* X ostaje taman dok je meni otvoren (stoji preko svijetlog panela) */
.routes-post header .nav-toggle-cb:checked ~ .nav-toggle-label span{
  background:#16384a;
}

/* LAYOUT */

main{
  max-width:1100px;
  margin:auto;
  padding:60px 0;  
  background:#fff;
}

/* FEATURED POST */

.topo-section{
  position:relative;
  padding:40px 0;  
}

.topo-section::before{
  content:"";
  position:absolute;
  top:-60px; /* extend up through main's top padding, right to the header */
  bottom:0; /* keep the background within its own section; don't extend into the gap below (stories) */
  left:50%;
  width:100vw;
  margin-left:-50vw;
  background-image:url('../images/connect-bg.webp');
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  opacity:0.05;
  z-index:0;
}

.topo-section > *{
  position:relative;
  z-index:1;
}

/* routes page: second section without the topographic background */
.topo-section--plain::before{
  display:none;
}

.featured-wrap{
  margin-bottom:60px;
}

.featured{
  width:1100px;
  max-width:100%;
  height:500px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:stretch;
  gap:0;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 14px 40px rgba(0,0,0,0.12);
}

.featured-text{
  background:#cfe8df;
  padding:50px 45px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.featured-text h1{
  font-size:30px;
  font-weight:600;
  margin-bottom:20px;
}

.featured-text p{
  color:#3a4a44;
  font-family:'Montserrat', sans-serif;
  font-weight:500;
  font-size:20px;
  line-height:100%;
  letter-spacing:0;
  margin-bottom:30px;
}

.featured-text button{
  align-self:flex-start;
  padding:14px 34px;
  border:none;
  border-radius:40px;
  background:#2aa3d4;
  color:white;
  font-size:15px;
  font-weight:500;
  cursor:pointer;
  transition:0.3s;
}

.featured-text button:hover{
  background:#1f8cba;
  transform:translateY(-2px);
}

.featured-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* BLOG GRID */

.blog-grid{
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:50px;
  align-items:start;
}

/* Large article */

.post-main-image img{
  width:500px;
  max-width:100%;
  height:200px;
  object-fit:cover;
  border-radius:10px;
  display:block;
}

.post-main h2{
  margin:22px 0 12px;
  font-size:22px;
  font-weight:600;
}

.post-main p{
  color:#666;
  line-height:1.7;
  font-size:14px;
  margin-bottom:18px;
}

/* Side list */

.post-list{
  display:flex;
  flex-direction:column;
  gap:30px;
}

.post-card{
  display:grid;
  grid-template-columns:200px 1fr;
  gap:18px;
  align-items:center;
}

.post-card-image img{
  width:200px;
  height:113px;
  object-fit:cover;
  border-radius:10px;
  display:block;
}

.post-card-body h3{
  font-size:16px;
  font-weight:600;
  margin-bottom:12px;
}

/* META (author + date) */

.post-meta{
  display:flex;
  flex-direction:column;
  gap:4px;
  font-size:12px;
}

.post-meta .author{
  color:#222;
  font-weight:500;
}

.post-meta .date{
  color:#999;
}

/* STORIES + POPULAR */

.stories-section{
  position:relative;
  overflow:hidden;
  display:grid;
  grid-template-columns:1.6fr 1fr;
  gap:60px;
  margin-top:50px;
  padding:40px 40px 0;   /* top room so the peaks above the title aren't clipped + side gutter (main no longer has side padding) */
  align-items:start;
}

/* decorative mint ring, bottom-right – same as in the services ("NAŠE USLUGE") section on the homepage */
.stories-section::after{
  content:"";
  position:absolute;
  right:-150px;
  bottom:0;
  width:330px;
  height:330px;
  border-radius:50%;
  border:45px solid #dcefe8;
  z-index:0;
}

/* content (columns) above the ring */
.stories-section > div{
  position:relative;
  z-index:1;
}

.stories-title{
  width:fit-content;
  max-width:100%;
}

/* "Više tura" naslov centriran kao "NAŠE USLUGE" na početnoj */
.more-tours .stories-title{
  margin:0 auto 75px;
}

/* malo veće planinice pored "Više tura" naslova (desktop) */
.more-tours .section-line{
  width:calc(100% + 193px);
  height:74px;
  margin:-66px 0 36px;
}
.more-tours .line-peaks{
  width:190px;
  height:74px;
}

.section-title{
  font-size:30px;
  font-weight:600;
  line-height:1.1;
  margin-bottom:0;
  color:#111;
  position:relative;
  z-index:1;
}

.section-line{
  display:flex;
  align-items:flex-end;
  width:calc(100% + 153px);
  height:58px;
  margin:-52px 0 36px;
}

.line-flat{
  flex:1 1 auto;
  border-bottom:1.5px solid #16384a;
}

.line-peaks{
  flex:0 0 auto;
  width:150px;
  height:58px;
}

/* All stories list */

.story{
  display:grid;
  grid-template-columns:1fr 280px;
  gap:30px;
  align-items:center;
  padding:25px 0;
  border-bottom:1px solid #eee;
}

.story:first-of-type{
  padding-top:0;
}

.story:last-of-type{
  border-bottom:none;
}

.story-text h3{
  font-size:20px;
  font-weight:600;
  margin-bottom:12px;
}

.story-text p{
  color:#666;
  font-size:14px;
  line-height:1.6;
  margin-bottom:18px;
}

.story-text .author{
  display:block;
  font-size:13px;
  color:#222;
  font-weight:500;
  margin-bottom:4px;
}

.story-text .date{
  display:block;
  font-size:12px;
  color:#999;
}

.story-image img{
  width:280px;
  height:180px;
  object-fit:cover;
  border-radius:8px;
  display:block;
}


.post-main-link,
.post-card-link,
.story-link,
.popular-link{
  display:block;
  text-decoration:none;
  color:inherit;
}

.post-main-link:hover h2,
.post-card-link:hover h3,
.story-link:hover h3,
.popular-link:hover h4{
  color:#008080;
}

.post-main-link h2,
.post-card-link h3,
.story-link h3,
.popular-link h4{
  font-family:'Montserrat', sans-serif;
  font-weight:600;
  font-size:20px;
  line-height:100%;
  letter-spacing:0;
}

/* Popular list */

.popular-item{
  display:flex;
  align-items:flex-start;
  gap:20px;
  margin-bottom:32px;
}

.rank{
  font-size:34px;
  font-weight:700;
  color:#1f3a4d;
  line-height:1;
  min-width:48px;
}

.popular-text h4{
  font-size:15px;
  font-weight:600;
  line-height:1.4;
  margin-bottom:6px;
}

.popular-text .author{
  font-size:13px;
  color:#999;
}

/* FOOTER (desktop = blog style; mobile <=820px = homepage style) */

.footer{
  margin-top:100px;
}

.footer-body{
  position:relative;
  height:215px;                  /* teal background = image height + 10px */
  background-color:#008080;
  background-image:url('../images/footer.webp');
  background-size:100% 205px;    /* fixed height of the mountains image */
  background-position:bottom center;
  background-repeat:no-repeat;
}

.footer-logo{
  position:absolute;
  top:24px;
  left:12%;
  width:62px;
  height:62px;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:2;
}

/* Logo from the homepage header, tinted white to fit the footer */
.footer-logo .footer-logo-mark{
  width:62px;
  height:62px;
  object-fit:contain;
  filter:brightness(0) invert(1);
}

/* SVG peaks – used only on mobile (teal -> white transition) */
.footer-peaks{
  display:none;
}

.footer-nav{
  position:absolute;
  left:0;
  right:0;
  bottom:30px;
  display:flex;
  justify-content:center;
  gap:55px;
  flex-wrap:wrap;
  padding:0 20px;
}

.footer-nav a{
  color:#333;
  text-decoration:none;
  font-size:14px;
  transition:0.3s;
}

.footer-nav a:hover{
  color:#008080;
}

.footer-copy{
  text-align:center;
  font-size:13px;
  color:#444;
  padding:16px;
  background:#fff;
}

/* RESPONSIVE */

/* Tablet / small laptop */
@media(max-width:1024px){
  main{
    padding:50px 30px;
  }

  .topo-section::before{
    top:-50px;
  }

  header{
    padding:18px 40px;
  }

  nav{
    gap:32px;
    padding-left:40px;
  }

  .stories-section{
    gap:45px;
  }

  .story{
    grid-template-columns:1fr 240px;
    gap:24px;
  }

  .story-image img{
    width:240px;
    height:160px;
  }
}

@media(max-width:900px){
  header{
    flex-wrap:wrap;
    justify-content:center;
    gap:16px 24px;
    padding:18px 30px;
  }

  nav{
    gap:24px;
    padding-left:30px;
    flex-wrap:wrap;
    justify-content:center;
  }

  .featured{
    grid-template-columns:1fr;
    height:auto;
  }

  .featured-image{
    order:-1;
  }

  .featured-image img{
    height:240px;
  }

  .blog-grid{
    grid-template-columns:1fr;
    gap:40px;
  }

  .post-main-image img{
    width:100%;
    height:260px;
  }

  .stories-section{
    grid-template-columns:1fr;
    gap:50px;
  }

  .story{
    grid-template-columns:1fr 280px;
  }

  .story-image img{
    width:280px;
    height:180px;
  }
}

/* Large phones */
@media(max-width:600px){
  header{
    flex-direction:column;
    gap:18px;
    padding:18px 20px;
  }

  nav{
    border-left:none;
    padding-left:0;
    gap:14px 18px;
  }

  main{
    padding:40px 18px;
  }

  .topo-section{
    padding:20px;
  }

  .topo-section::before{
    top:-40px;
  }

  .featured-text{
    padding:36px 26px;
  }

  .featured-text h1{
    font-size:26px;
  }

  .post-card{
    grid-template-columns:120px 1fr;
    gap:14px;
  }

  .post-card-image img{
    width:120px;
    height:84px;
  }

  .story{
    grid-template-columns:1fr;
    gap:18px;
  }

  .story-image{
    order:-1;
  }

  .story-image img{
    width:100%;
    height:200px;
  }
}

/* Mobile/tablet: homepage style – teal with a centered logo, SVG peaks as a
   transition, then a white block with the nav links (readable). */
@media(max-width:820px){
  .footer-body{
    height:auto;
    background-image:none;          /* webp mountains are turned off; we use the SVG peaks */
    display:flex;
    flex-direction:column;
  }

  .footer-logo{
    position:static;
    margin:34px auto 24px;
  }

  .footer-peaks{
    display:block;
    width:100%;
    height:130px;
    margin-bottom:-1px;
  }

  .footer-nav{
    position:static;
    background:#fff;                 /* white block with the links */
    margin:0;
    padding:26px 22px;
    gap:14px 24px;
  }
}

/* Small phones */
@media(max-width:400px){
  .featured-text{
    padding:28px 20px;
  }

  .featured-text h1{
    font-size:22px;
  }

  .post-card{
    grid-template-columns:1fr;
    gap:10px;
  }

  .post-card-image img{
    width:100%;
    height:170px;
  }

  .rank{
    font-size:28px;
    min-width:38px;
  }
}

/* ===================== ROUTES PAGE — HERO ===================== */
/* full-bleed 1440x828 stage (breaks out of the 1100px main container) so the
   absolute coordinates from the design line up proportionally */
.route-hero{
  position:relative;
  left:50%;
  transform:translateX(-50%);
  width:100vw;
  max-width:100vw;
  aspect-ratio:1440 / 828;
  margin:0 0 30px;
  background:#1c2b38 url('../images/routes-post-1.webp') center/cover no-repeat;
  border-radius:0;
  overflow:hidden;
  box-shadow:0 22px 55px rgba(16,56,74,0.15);
}

/* frosted-glass overlay: blurs the mountain photo behind + dark tint so the
   white text stays readable */
.route-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:#24272680;
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  pointer-events:none;
  z-index:0;
}

/* layer holding the absolutely-placed map + text */
.route-hero-body{
  position:absolute;
  inset:0;
  z-index:1;
}

/* left: route map — 566x561 @ (115,125) within the 1440x828 stage, radius 20 */
.route-hero-map{
  position:absolute;
  left:7.986%;     /* 115 / 1440 */
  top:15.097%;     /* 125 / 828  */
  width:39.306%;   /* 566 / 1440 */
  height:auto;     /* okvir prati visinu slike — bez praznih (bijelih) ivica */
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 10px 26px rgba(16,56,74,0.25);
}
.route-hero-map img{
  width:100%;
  height:auto;
  display:block;
  margin-top:-3px;      /* sakrij tanku bijelu liniju na vrhu slike (Ahmica, Rusolija) */
  margin-bottom:-2px;   /* sakrij tanku bijelu liniju na dnu slike (npr. Hajla) */
}

/* right: text block — 549 wide @ (795,262) */
.route-hero-text{
  position:absolute;
  left:55.208%;    /* 795 / 1440 */
  top:31.643%;     /* 262 / 828  */
  width:38.125%;   /* 549 / 1440 */
}
.route-hero-text h1{
  font-size:64px;
  font-weight:700;
  letter-spacing:3px;
  color:#fff;
  margin:0 0 18px;
  text-shadow:0 2px 14px rgba(0,0,0,0.35);
}
.route-hero-text p{
  font-family:'Montserrat', sans-serif;
  font-size:20px;
  font-weight:400;
  line-height:34px;
  letter-spacing:0.06em;          /* 6% */
  text-transform:uppercase;
  color:rgba(255,255,255,0.92);
  margin:0 0 26px;
}
.route-hero-text button{
  width:min(416px, 85vw);
  height:clamp(52px, 9vw, 68px);
  border:none;
  border-radius:40px;
  background:#00b7c2;
  color:white;
  font-size:clamp(14px, 2vw, 18px);
  cursor:pointer;
  transition:0.3s;
}
.route-hero-text button:hover{
  background:#009ea7;
  transform:translateY(-2px);
}

/* bottom: stats bar (translucent so the blurred photo shows through) */
.route-stats{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  z-index:1;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:80px;
  flex-wrap:wrap;
  padding:18px 56px;
}
.route-stat{
  display:flex;
  align-items:center;
  gap:12px;
  color:#fff;
  font-size:16px;
  font-weight:500;
  letter-spacing:1px;
  text-transform:uppercase;
}
.route-stat img{
  width:26px;
  height:26px;
  object-fit:contain;
  filter:brightness(0) invert(1); /* tint the dark line icons white */
}

/* tablet / mobile: drop the fixed stage and stack normally */
@media(max-width:900px){
  .route-hero{
    left:auto;
    transform:none;
    width:auto;
    aspect-ratio:auto;
    min-height:100vh;       /* hero visok koliko i ekran telefona */
    display:flex;
    flex-direction:column;
  }
  .route-hero-body{
    position:static;
    flex:1;                 /* popuni prostor; sadržaj centriran, statistika na dnu */
    display:flex;
    flex-direction:column;
    justify-content:center;
    gap:24px;
    padding:34px 26px;
    text-align:center;
  }
  .route-hero-map{
    position:static;
    width:100%;
    height:auto;
    order:2;
  }
  .route-hero-map img{
    height:auto;
  }
  .route-hero-text{
    position:static;
    width:100%;
    order:1;
  }
  .route-hero-text h1{
    font-size:42px;
  }
  .route-hero-text p{
    font-size:16px;
    line-height:28px;
  }
  .route-stats{
    position:static;
    padding:20px 22px;
    gap:16px;
  }
  .route-stat{
    font-size:14px;
  }
}

/* ===== ROUTES-POST: expedition intro + article body ===== */
.expedition{
  max-width:none;
  margin:0 auto;
  padding:40px 24px 70px;
}

/* centred title + lead paragraph */
.expedition-intro{
  text-align:center;
  max-width:1155px;
  margin:0 auto 64px;
}
.expedition-intro h2{
  font-family:'Montserrat', sans-serif;
  font-size:45px;
  font-weight:700;
  line-height:100%;
  letter-spacing:0;
  color:#1a1a1a;
  margin:0 0 52px;
}
.expedition-intro p{
  font-family:'Montserrat', sans-serif;
  font-size:24px;
  font-weight:500;
  line-height:39px;
  letter-spacing:0;
  color:#16384a;
  max-width:820px;
  margin:0 auto;
}

/* share ikone izlaze iz toka (lijevo), tekst se centrira po cijeloj širini */
.expedition-layout{
  position:relative;
}
.expedition-body{
  max-width:820px;
  margin:0 auto;
}
.expedition .share{
  position:absolute;
  left:0;
  top:0;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:18px;
}
.expedition .share-icon{
  display:block;
  transition:0.3s;
}
.expedition .share-icon:hover{
  opacity:0.75;
}
.expedition .share-icon img{
  width:34px;
  height:34px;
  object-fit:contain;
  display:block;
}
.expedition .share-label{
  font-size:14px;
  color:#9a9a9a;
}

.expedition-body h3{
  text-align:center;
  font-family:'Montserrat', sans-serif;
  font-size:30px;
  font-weight:600;
  line-height:100%;
  letter-spacing:0;
  color:#1a1a1a;
  margin:70px 0 30px;
}
.expedition-body > h3:first-child{
  margin-top:0;
}

/* Day 2 wrapper anchors the decorative ring */
.day2-block{
  position:relative;
}
.day2-block h3{
  margin-top:90px;
}
/* light-green ring asset that bleeds off the LEFT edge of the screen
   (pozicioniran prema viewportu, neovisno o centriranom 820px sadržaju) */
.deco-ring{
  position:absolute;
  top:-20px;
  left:calc((820px - 100vw) / 2 + 40px);
  width:207px;
  height:415px;
  background:url('../images/deco-ring.png') no-repeat right center;
  background-size:contain;
  pointer-events:none;
  z-index:0;
}
.expedition-body p{
  font-family:'Montserrat', sans-serif;
  font-size:18px;
  font-weight:500;
  line-height:24px;
  letter-spacing:0;
  color:#333;
  margin:0 0 22px;
  text-align:center;
}
.expedition-body p:last-child{
  margin-bottom:0;
}

@media(max-width:900px){
  .expedition-layout{
    grid-template-columns:1fr;
    gap:30px;
  }
  .expedition .share{
    position:static;
    flex-direction:row;
    align-items:center;
    gap:16px;
  }
  .expedition-intro h2{
    font-size:30px;
  }
  /* dekorativni krug ometa tekst na malim ekranima */
  .deco-ring{
    display:none;
  }
}

/* ===== ROUTES-POST: "you like it?" CTA ===== */
.cta{
  position:relative;
  max-width:none;
  margin:0 auto;
  padding:70px 24px 110px;
  text-align:center;
  overflow:hidden;            /* clip the ring that bleeds off the right */
}
.cta h2{
  font-family:'Montserrat', sans-serif;
  font-size:45px;
  font-weight:700;
  letter-spacing:2px;
  color:#0e8388;
  margin:0 0 44px;
}
.cta button{
  width:min(416px, 85vw);
  height:clamp(52px, 9vw, 68px);
  border:none;
  border-radius:40px;
  background:#00b7c2;
  color:white;
  font-size:clamp(14px, 2vw, 18px);
  cursor:pointer;
  transition:0.3s;
}
.cta button:hover{
  background:#009ea7;
  transform:translateY(-2px);
}
/* mint ring bleeding off the RIGHT edge (left half of a circle) */
.cta .deco-ring{
  top:50%;
  left:auto;
  right:-10px;
  transform:translateY(-50%);
  width:266px;
  height:420px;
  background-image:url('../images/deco-ring-right.png');
  background-position:right center;
}

/* ===== ROUTES-POST: "more tours" cards ===== */
/* push the whole section (incl. its topo background) down so it doesn't
   overlap the CTA ring above */
/* fixed 1440 x 838 stage (matches the hero), centred and broken out of main */
.topo-section--tours{
  position:relative;
  left:50%;
  transform:translateX(-50%);
  width:100vw;
  max-width:100vw;
  height:auto;
  margin-top:30px;
  padding:50px 0 80px;
  display:flex;
  align-items:center;
  justify-content:center;
}
/* on the routes-post page, drop the gap between this section and the footer
   (main's bottom padding + the footer's top margin) so the topo background
   runs straight into the footer */
.routes-post main{
  max-width:none;
  padding:0;
}
.routes-post .footer{
  margin-top:0;
}
/* trim the topo background above the "Više tura" title */
.topo-section--tours::before{
  top:0;
}
/* content wrapper: 1158 wide (141px margins on the 1440 stage) */
.more-tours{
  width:100%;
  max-width:none;
  padding:0 24px;
}
.tour-cards{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  flex-wrap:wrap;
  gap:24px;
}
.tour-card{
  flex:1 1 0;
  min-width:0;
  background:#fff;
  border-radius:15px;
  overflow:hidden;
  box-shadow:0 14px 34px rgba(16,56,74,0.12);
  display:flex;
  flex-direction:column;
}
.tour-card-image{
  width:100%;
  height:200px;
}
.tour-card-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.tour-card-body{
  width:100%;
  min-height:230px;
  background:#D0EADD;
  padding:20px 24px 22px;
  display:flex;
  flex-direction:column;
  text-align:left;
}
.tour-card-cat{
  font-family:'Montserrat', sans-serif;
  font-size:13px;
  font-weight:700;
  line-height:100%;
  letter-spacing:0;
  text-transform:uppercase;
  color:#0e8388;
  margin-bottom:6px;
}
.tour-card-body h3{
  font-family:'Montserrat', sans-serif;
  font-size:25px;
  font-weight:700;
  line-height:100%;
  letter-spacing:0;
  color:#16384a;
  margin:0 0 14px;
}
/* stats row (location / elevation / duration) */
.tour-stats{
  display:flex;
  gap:14px;
  margin-bottom:auto;        /* push the button to the bottom */
}
.tour-stat{
  display:flex;
  align-items:center;
  gap:5px;
  font-size:11px;
  font-weight:600;
  color:#16384a;
  white-space:nowrap;
}
.tour-stat img{
  width:14px;
  height:14px;
  object-fit:contain;
}
.tour-btn{
  display:block;
  text-align:center;
  border:none;
  background:#00b7c2;
  color:#fff;
  text-decoration:none;
  font-size:13px;
  font-weight:400;
  letter-spacing:1.5px;
  padding:13px 0;
  border-radius:40px;
  transition:0.3s;
}
.tour-btn:hover{
  background:#009ea7;
  transform:translateY(-2px);
}

@media(max-width:760px){
  .tour-cards{
    flex-direction:column;
    align-items:center;
    gap:24px;
  }
  .tour-card{
    width:100%;
    max-width:340px;
    flex:0 0 auto;
  }
  .tour-card-image,
  .tour-card-body{
    width:100%;
  }
  .tour-card-body{
    height:auto;
  }
  .tour-card--featured{
    transform:none;
  }
}

/* "Više tura" naslov na telefonu — isto kao naslovi na početnoj (ali ostaje 30px) */
@media(max-width:600px){
  .more-tours .section-line{
    width:calc(100% + 83px);
    height:40px;
    margin:-32px 0 26px;
  }
  .more-tours .line-peaks{
    width:80px;
    height:40px;
  }
  .more-tours .stories-title{
    transform:translateX(-31px);
  }
}

/* Force Montserrat on all form controls (buttons, inputs, etc.) */
button,
input,
textarea,
select,
optgroup,
option{
  font-family:'Montserrat', sans-serif;
}
