/* ===== POB GUIDE INTRO (premium) ===== */
.pob-guide-intro {
  width: 100%;
  max-width: 100%;
  display: grid;
  grid-template-columns: 2fr 1fr;
  column-gap: 40px;
  align-items: center;
  margin-top: 80px;
  margin-bottom: 80px;
}

.pob-guide-intro__text h2 {
  margin: 0 0 20px;
  font-size: 40px;
  line-height: 1.15;
  font-weight: 900;
  color: #0f172a;
  position: relative;
  padding-bottom: 12px;
}

.pob-guide-intro__text h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 90px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, #0ea5e9 0%, #38bdf8 100%);
}

.pob-guide-intro__text p {
  font-size: 16px;
  line-height: 1.75;
  color: #374151;
  font-weight: 400;
}

.pob-guide-intro__media img {
  width: 100% !important;
  height: 320px;
  object-fit: cover;
  display: block;
  border-radius: 18px;

  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.18),
    0 10px 20px rgba(15, 23, 42, 0.12);
}

/* Tablet: 2 reda (tekst pa slika) ili i dalje 2 kolone – ti biraš.
   Ja stavljam tekst pa slika da bude “safe” sa sidebar layoutom. */
@media (max-width: 991.98px) {
  .pob-guide-intro {
    grid-template-columns: 1fr;
    row-gap: 16px;
    padding: 22px 18px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .pob-guide-intro__media img {
    height: 280px;
  }
  .pob-guide-intro__text h2 {
    font-size: 24px;
  }
}

/* Mali telefoni */
@media (max-width: 400px) {
  .pob-guide-intro {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .pob-guide-intro__text h2 {
    font-size: 20px;
  }
  .pob-guide-intro__media img {
    height: 240px;
  }
}

.pob-guide-intro-space {
  margin-top: 30px;
}

/*====== food section ======*/

.pob-food-life {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 56px;
  align-items: center;
  margin: 30px 0;
}

/* IMAGE */
.pob-food-life__media img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.22),
    0 10px 20px rgba(15, 23, 42, 0.14);
}

/* CONTENT */
.pob-food-life__title {
  font-size: 26px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
}

.pob-food-life__intro {
  font-size: 16px;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 32px;
  max-width: 640px;
}

/* LOCATION LIST */
.pob-food-life__locations {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.pob-food-life__location {
  padding: 16px 18px;
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #e5e7eb;

  transition: box-shadow 0.25s ease, transform 0.25s ease,
    border-color 0.25s ease;
}

.pob-food-life__location:hover {
  border-color: #bae6fd;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12),
    0 4px 10px rgba(15, 23, 42, 0.08);
  transform: translateY(-2px);
}

.pob-food-life__location h4 {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}

.pob-food-life__location p {
  font-size: 14px;
  line-height: 1.6;
  color: #64748b;
  margin-bottom: 6px;
}

.pob-food-life__location a {
  font-size: 13px;
  font-weight: 600;
  color: #0ea5e9;
  text-decoration: none;
}

.pob-food-life__location a:hover {
  text-decoration: underline;
}

/* MOBILE */
@media (max-width: 991.98px) {
  .pob-food-life {
    grid-template-columns: 1fr;
  }

  .pob-food-life__media img {
    max-height: 260px;
  }
}

/*=== nightlife ====*/

.pob-nightlife {
  margin-top: 30px;
}

.pob-nightlife__head {
  max-width: 920px;
  margin: 0 auto 18px;
  text-align: center;
}

.pob-nightlife__title {
  margin: 0 0 10px;
  font-size: 30px;
  line-height: 1.15;
  font-weight: 800;
  color: #0f172a;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

/* mala plava crtica (brand touch) */
.pob-nightlife__title:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 64px;
  height: 4px;
  border-radius: 999px;
  background: #0ea5e9;
  box-shadow: 0 10px 22px rgba(14, 165, 233, 0.35);
}

.pob-nightlife__intro {
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 1.7;
  color: #475569;
}

/* slika ispod teksta */
.pob-nightlife__media {
  position: relative;
  max-width: 1100px;
  margin: 20px auto 20px;
  overflow: hidden;

  /* “nepravilni” shape */
  border-radius: 26px 26px 26px 70px;
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.22),
    0 10px 20px rgba(15, 23, 42, 0.14);
}

/* night gradient overlay */
.pob-nightlife__media:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(2, 6, 23, 0.1),
    rgba(2, 6, 23, 0.35)
  );
  pointer-events: none;
  z-index: 1;
}

.pob-nightlife__media img {
  width: 100% !important;
  height: 420px;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
}

/* kartice grid */
.pob-nightlife__locations {
  max-width: 1100px;
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

/* cela kartica klikabilna */
.pob-nightlife__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 14px 14px 12px;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  text-decoration: none !important;
  transition: transform 0.15s ease, box-shadow 0.15s ease,
    border-color 0.15s ease;
}

.pob-nightlife__card:hover {
  transform: translateY(-2px);
  border-color: rgba(14, 165, 233, 0.35);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.1);
}

.pob-nightlife__badge {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(14, 165, 233, 0.1);
  margin-bottom: 10px;
}

.pob-nightlife__card-title {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 800;
  color: #0f172a;
}

.pob-nightlife__card-desc {
  margin: 0 0 10px;
  font-size: 15px;
  line-height: 1.6;
  color: #475569;
}

/* link uvek na dnu kartice */
.pob-nightlife__link {
  margin-top: auto;
  padding-top: 10px;
  font-size: 14px;
  font-weight: 700;
  color: #0ea5e9;
}

/* responsive */
@media (max-width: 991.98px) {
  .pob-nightlife__media img {
    height: 360px;
  }
  .pob-nightlife__locations {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .pob-nightlife__title {
    font-size: 22px;
  }
  .pob-nightlife__media img {
    height: 280px;
  }
  .pob-nightlife__media {
    border-radius: 22px 22px 22px 55px;
  }
}

/*===== transport ======*/

.pob-logistics {
  margin-top: 85px;
}

.pob-logistics__card {
  background: linear-gradient(
    180deg,
    rgba(14, 165, 233, 0.12),
    rgba(255, 255, 255, 1)
  );
  border: 1px solid #e5e7eb;
  border-radius: 26px;
  padding: 32px;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.12);
}

.pob-logistics__head {
  text-align: center;
  max-width: 980px;
  margin: 0 auto 26px;
}

.pob-logistics__title {
  margin: 0 0 14px;
  font-size: 32px;
  line-height: 1.15;
  font-weight: 800;
  color: #0f172a;
  position: relative;
  display: inline-block;
  padding-bottom: 14px;
}

.pob-logistics__title:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 76px;
  height: 5px;
  border-radius: 999px;
  background: #0ea5e9;
  box-shadow: 0 12px 26px rgba(14, 165, 233, 0.4);
}

.pob-logistics__subtitle {
  margin: 0;
  font-size: 17px;
  line-height: 1.75;
  color: #475569;
}

.pob-logistics__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.pob-logistics__item {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.pob-logistics__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(14, 165, 233, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex: 0 0 auto;
}

.pob-logistics__body h4 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
}

.pob-logistics__body p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
}

.pob-logistics__soon {
  margin-top: 24px;
  border-radius: 22px;
  padding: 20px;
  border: 1px dashed rgba(14, 165, 233, 0.55);
  background: rgba(14, 165, 233, 0.1);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.pob-logistics__soon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(14, 165, 233, 0.22);
  color: #0f172a;
  font-size: 13px;
  font-weight: 800;
  flex: 0 0 auto;
}

.pob-logistics__soon-text {
  font-size: 15px;
  line-height: 1.7;
  color: #334155;
}

.pob-logistics__footer {
  margin-top: 26px;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.pob-logistics__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 14px;
  background: #0ea5e9;
  color: #fff !important;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none !important;
  box-shadow: 0 14px 32px rgba(14, 165, 233, 0.3);
}

.pob-logistics__note {
  font-size: 13px;
  color: #64748b;
}

@media (max-width: 991.98px) {
  .pob-logistics__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .pob-logistics__card {
    padding: 20px;
  }
  .pob-logistics__title {
    font-size: 26px;
  }
}

/* ===== stay intro ===== */

.pob-stay-intro {
  margin-top: 85px;
  text-align: center;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.pob-stay-intro__title {
  margin: 0 0 10px;
  font-size: 34px;
  line-height: 1.35;
  font-weight: 800;
  color: #0f172a;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.pob-stay-intro__title:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 64px;
  height: 4px;
  border-radius: 999px;
  background: #0ea5e9;
  box-shadow: 0 10px 22px rgba(14, 165, 233, 0.35);
}

.pob-stay-intro__text {
  margin: 0;
  font-size: 18px;
  line-height: 1.8;
  color: #475569;
}

@media (max-width: 575.98px) {
  .pob-stay-intro__title {
    font-size: 28px;
  }
}

/* ===== guide outro ===== */

.pob-guide-outro {
  margin: 10px auto 60px;
  padding: 32px 22px;
  max-width: 920px;
  text-align: center;

  background: linear-gradient(
    180deg,
    rgba(14, 165, 233, 0.1),
    rgba(255, 255, 255, 1)
  );

  border: 1px solid #e5e7eb;
  border-radius: 24px;

  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.14),
    0 10px 22px rgba(15, 23, 42, 0.08);
}

.pob-guide-outro h3 {
  margin: 0 0 14px;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 800;
  color: #0f172a;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

/* mala plava crtica – brand touch */
.pob-guide-outro h3::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 64px;
  height: 4px;
  border-radius: 999px;
  background: #0ea5e9;
  box-shadow: 0 10px 22px rgba(14, 165, 233, 0.35);
}

.pob-guide-outro p {
  margin: 0 0 10px;
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
}

.pob-guide-outro p:last-of-type {
  margin-bottom: 18px;
  font-weight: 600;
  color: #334155;
}

.pob-guide-outro__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 14px;

  background: #0ea5e9;
  color: #ffffff !important;

  font-size: 14px;
  font-weight: 800;
  text-decoration: none !important;

  box-shadow: 0 14px 30px rgba(14, 165, 233, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.pob-guide-outro__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(14, 165, 233, 0.45);
}

/* responsive */
@media (max-width: 575.98px) {
  .pob-guide-outro {
    padding: 24px 16px;
  }

  .pob-guide-outro h3 {
    font-size: 22px;
  }

  .pob-guide-outro p {
    font-size: 14px;
  }
}

//Hide captcha all frantend
/* .grecaptcha-badge {
  visibility: hidden;
} */
/* .grecaptcha-badge {
  display: none !important;
} */
