/* Shared styles for Foto / Video / Portfolio / Wedding blog pages */

/* Tag pills (match index) */
.main_tag,
.transparant-tag {
  background-color: rgba(0, 0, 0, 0.05) !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  color: #1a1a1a;
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  display: inline-flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: flex-start;
  gap: 0.45rem;
  white-space: nowrap;
  max-width: 100%;
  width: auto !important;
  line-height: 1.2;
}
.main_tag._6rem,
.main_tag._9rem {
  background-color: rgba(26, 26, 26, 0.08) !important;
  border-color: rgba(26, 26, 26, 0.22) !important;
  width: auto !important;
}
.main_tag .text-size-regular,
.transparant-tag .text-size-small {
  color: #1a1a1a;
  font-weight: 600;
  white-space: nowrap;
  width: auto !important;
  margin: 0 !important;
}
.main_tag img,
.transparant-tag img {
  filter: brightness(0);
  flex-shrink: 0;
}

.page-hero {
  padding: 7rem 0 3.5rem;
  background:
    radial-gradient(ellipse 80% 60% at 10% 0%, rgba(42, 42, 42, 0.08), transparent 55%),
    linear-gradient(180deg, #f5f5f5 0%, #ffffff 100%);
}
.page-hero .main_tag._6rem {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  width: auto;
  max-width: 100%;
  padding: 0.4rem 1rem;
  white-space: nowrap;
  margin-bottom: 1rem;
}
.page-hero .main_tag._6rem .text-size-regular {
  white-space: nowrap;
  width: auto;
}
.page-hero h1 {
  margin-bottom: 0.75rem;
}
.page-hero p {
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  color: rgba(26, 26, 26, 0.8);
}
.service-hub-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .service-hub-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
.service-hub-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 52vh;
  padding: 1.75rem;
  border-radius: 1rem;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 8px 28px rgba(26, 26, 26, 0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.service-hub-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(26, 26, 26, 0.18);
}
.service-hub-card img.service-hub-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.5s ease;
}
.service-hub-card:hover img.service-hub-bg {
  transform: scale(1.04);
}
.service-hub-card img.service-hub-bg--couple {
  object-position: center 62%;
}
.service-hub-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12) 20%, rgba(0, 0, 0, 0.72) 100%);
  z-index: 1;
}
.service-hub-card-body {
  position: relative;
  z-index: 2;
}
.service-hub-card-body h2 {
  color: #fff;
  margin-bottom: 0.5rem;
}
.service-hub-card-body p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  max-width: 28rem;
}
.service-hub-eyebrow {
  display: inline-block;
  margin-bottom: 0.65rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

/* Portfolio masonry */
.portfolio-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.portfolio-count {
  font-size: 0.9375rem;
  color: rgba(26, 26, 26, 0.65);
}
.portfolio-grid {
  columns: 1;
  column-gap: 1rem;
}
@media (min-width: 640px) {
  .portfolio-grid { columns: 2; }
}
@media (min-width: 992px) {
  .portfolio-grid { columns: 3; }
}
@media (min-width: 1280px) {
  .portfolio-grid { columns: 4; }
}
.portfolio-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: 0.75rem;
  overflow: hidden;
  background: #eee;
  position: relative;
  display: block;
  width: 100%;
  margin-block-start: 0;
  margin-inline: 0;
  padding: 0;
}
.portfolio-item--more,
.portfolio-item[hidden] {
  display: none !important;
}
.portfolio-item--reveal {
  animation: portfolioReveal 0.55s ease both;
}
@keyframes portfolioReveal {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.portfolio-item img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
  transition: transform 0.4s ease, filter 0.4s ease;
}
.portfolio-item:hover img {
  transform: scale(1.02);
  filter: brightness(0.96);
}
.portfolio-load-more {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
  margin-bottom: 0.5rem;
}
.portfolio-load-more.is-done {
  display: none;
}
.portfolio-load-more .button {
  cursor: pointer;
  pointer-events: auto;
  min-width: 14rem;
  transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.2s ease, opacity 0.2s ease;
}
.portfolio-load-more .button.is-loading {
  opacity: 0.72;
  pointer-events: none;
  cursor: wait;
}

/* Primary / secondary buttons (match index.html) */
.button,
.button.is-small,
button.button {
  background-color: #1a1a1a;
  border-color: #1a1a1a;
  color: #ffffff !important;
  border-radius: 0.75rem;
  transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.button:hover,
.button.is-small:hover,
button.button:hover {
  background-color: #404040;
  border-color: #404040;
  color: #ffffff !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  transform: translateY(-1px);
}
.button.is-secondary {
  background-color: transparent;
  border-color: #1a1a1a;
  color: #1a1a1a !important;
  box-shadow: none;
}
.button.is-secondary:hover {
  background-color: #1a1a1a;
  color: #ffffff !important;
  transform: translateY(-1px);
}

/* Wedding blog albums */
.album-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .album-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 992px) {
  .album-grid { grid-template-columns: 1fr 1fr 1fr; }
}
.album-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 1rem;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(26, 26, 26, 0.08);
  box-shadow: 0 4px 18px rgba(26, 26, 26, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.album-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(26, 26, 26, 0.12);
}
.album-card-media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #e8e8e8;
}
.album-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.album-card:hover .album-card-media img {
  transform: scale(1.04);
}
.album-card-body {
  padding: 1.15rem 1.25rem 1.35rem;
}
.album-card-body h3 {
  margin: 0 0 0.35rem;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}
.album-card-meta {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(26, 26, 26, 0.65);
}
.album-empty {
  text-align: center;
  padding: 3.5rem 1.5rem;
  border: 1px dashed rgba(26, 26, 26, 0.18);
  border-radius: 1rem;
  background: #fafafa;
}
.album-empty p {
  margin: 0 auto;
  max-width: 28rem;
  color: rgba(26, 26, 26, 0.7);
}

.subpage-section {
  padding-bottom: 4.5rem;
}
.video-placeholder {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
  padding: 3rem 1.5rem;
  border-radius: 1rem;
  background: #f8f8f8;
  border: 1px solid rgba(26, 26, 26, 0.08);
}

/* Video gallery */
.video-showcase {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.video-section-head {
  max-width: 40rem;
  text-align: center;
  margin: 0 auto;
}
.video-section-eyebrow {
  display: block;
  margin-bottom: 0.6rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.5);
}
.video-section-head h2 {
  margin: 0 0 0.6rem;
  letter-spacing: -0.02em;
}
.video-section-head p {
  margin: 0;
  color: rgba(26, 26, 26, 0.7);
  line-height: 1.65;
}

.video-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(26, 26, 26, 0.1);
  margin-bottom: -0.75rem;
}
.video-count {
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgba(26, 26, 26, 0.7);
}

.video-playlist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 0.9rem;
}
@media (min-width: 768px) {
  .video-playlist {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem 1.15rem;
  }
}
@media (min-width: 1100px) {
  .video-playlist {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.75rem 1.35rem;
  }
}
.video-thumb {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  text-align: left;
  text-decoration: none;
  font: inherit;
  color: inherit;
}
.video-thumb:focus-visible {
  outline: 2px solid #1a1a1a;
  outline-offset: 4px;
  border-radius: 0.6rem;
}
.video-thumb-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 0.75rem;
  background: #e8e8e8;
  box-shadow: 0 3px 12px rgba(26, 26, 26, 0.08);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.video-thumb:hover .video-thumb-media {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(26, 26, 26, 0.16);
}
.video-thumb-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.3s ease;
}
.video-thumb:hover .video-thumb-media img {
  transform: scale(1.05);
  filter: brightness(0.85);
}
.video-thumb-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1a1a;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}
.video-thumb-play svg {
  width: 2.6rem;
  height: 2.6rem;
  padding: 0.7rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.24);
}
.video-thumb:hover .video-thumb-play {
  opacity: 1;
}
.video-thumb-body {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding: 0 0.15rem;
}
.video-thumb-index {
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(26, 26, 26, 0.35);
  font-variant-numeric: tabular-nums;
}
.video-thumb-name {
  overflow: hidden;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: #1a1a1a;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.video-thumb:hover .video-thumb-name {
  color: #525252;
}
.video-card-cta {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

/* Lightbox */
html:has(.video-lightbox.is-open) {
  overflow: hidden;
}
.video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: videoLightboxOut 0.2s ease;
}
.video-lightbox.is-open {
  display: flex !important;
  animation: videoLightboxIn 0.28s ease;
}
@keyframes videoLightboxIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes videoLightboxOut {
  from { opacity: 1; }
  to { opacity: 0; }
}
.video-lightbox-scrim {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
  padding: 0;
  border: 0;
  background: rgba(10, 10, 10, 0.94);
  cursor: pointer;
  appearance: none;
}
.video-lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(1100px, 100%);
}
.video-lightbox-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 0.75rem;
  background: #000;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}
.video-lightbox-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-lightbox-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
  margin-top: 0.9rem;
}
.video-lightbox-caption {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.85);
}
.video-lightbox-youtube {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 0.6rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.video-lightbox-youtube:hover,
.video-lightbox-youtube:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}
.video-lightbox-close {
  position: absolute;
  top: -3.1rem;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  appearance: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.video-lightbox-close:hover,
.video-lightbox-close:focus-visible {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.06);
  outline: none;
}
.video-lightbox-close svg {
  width: 1.15rem;
  height: 1.15rem;
}
@media (max-width: 600px) {
  .video-lightbox {
    padding: 1rem;
  }
  .video-lightbox-close {
    top: -3rem;
    width: 2.3rem;
    height: 2.3rem;
  }
}

/* Shared navbar + footer (match index.html) */
.button-text-white,
.button-text-white:link,
.button-text-white:visited,
.button-text-white:hover,
.button-text-white:focus,
.button-text-white:active,
a.button-text-white,
a.button-text-white:link,
a.button-text-white:visited,
a.button-text-white:hover,
a.button-text-white:focus,
a.button-text-white:active { color: #fff !important; }
.navbar_container a.button,
.navbar_container a.button:link,
.navbar_container a.button:visited,
.navbar_container a.button:hover,
.navbar_container a.button:focus,
.navbar_container a.button:active { color: #fff !important; }

.navbar_component.delete-this-class {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  transform: none !important;
  z-index: 9999;
  background-color: rgba(255, 255, 255, 0.97);
  /* bez backdrop-filter – blur na fixed navbaru koči skrol */
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: none;
}
.main-wrapper {
  padding-top: 72px;
}
html {
  scroll-padding-top: 88px;
}
body, .page-wrapper {
  background-color: #ffffff;
  color: #1a1a1a;
}
.navbar_component.delete-this-class .navbar_container {
  width: 100%;
  max-width: 100%;
  min-height: 4.5rem;
  margin: 0;
  padding: 0.75rem 5%;
  background-color: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}
.navbar_component.delete-this-class .navbar_menu-link-wrapper {
  background-color: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  color: #1a1a1a !important;
  box-shadow: none !important;
}
@media screen and (max-width: 991px) {
  .navbar_component.delete-this-class .navbar_menu-link-wrapper {
    background-color: #ffffff !important;
    border: none !important;
    box-shadow: none !important;
  }
}
.navbar_component.delete-this-class .navbar_menu-link-wrapper .navbar_link,
.navbar_component.delete-this-class .navbar_menu-link-wrapper .navbar_link:link,
.navbar_component.delete-this-class .navbar_menu-link-wrapper .navbar_link:visited,
.navbar_component.delete-this-class .navbar_menu-link-wrapper .navbar_link.w--current {
  color: #1a1a1a !important;
}
.navbar_component.delete-this-class .navbar_menu-link-wrapper .navbar_link:hover,
.navbar_component.delete-this-class .navbar_menu-link-wrapper .navbar_link:focus {
  color: #525252 !important;
}
.navbar_link,
.navbar_link:link,
.navbar_link:visited {
  color: #1a1a1a !important;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0.5rem 0.85rem;
  transition: color 0.2s ease, opacity 0.2s ease;
}
.navbar_link:hover,
.navbar_link:focus {
  color: #525252 !important;
  opacity: 0.85;
}
.navbar_link.w--current {
  color: #1a1a1a !important;
  opacity: 1;
}
.navbar_component.delete-this-class .menu-icon2_line-top,
.navbar_component.delete-this-class .menu-icon2_line-middle,
.navbar_component.delete-this-class .menu-icon2_line-bottom,
.navbar_component.delete-this-class .menu-icon1_line-middle-inner {
  background-color: #1a1a1a;
}
.navbar_component.delete-this-class .button,
.navbar_component.delete-this-class .button.is-small {
  background-color: #1a1a1a;
  border: 1px solid #1a1a1a;
  border-radius: 0;
  color: #ffffff !important;
  box-shadow: none;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 0.65rem 1.25rem;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.navbar_component.delete-this-class .button:hover,
.navbar_component.delete-this-class .button.is-small:hover {
  background-color: #333333;
  border-color: #333333;
  box-shadow: none;
}
.navbar_logo-link {
  flex-shrink: 0;
  line-height: 0;
}
.navbar_logo {
  height: 3rem;
  width: auto;
  max-width: min(280px, 48vw);
  object-fit: contain;
  display: block;
}
@media screen and (max-width: 767px) {
  .navbar_logo {
    height: 2.35rem;
    max-width: min(220px, 58vw);
  }
}

.footer_component {
  background-color: #f5f5f5;
  color: #1a1a1a;
  border-top: 3px solid #e5e5e5;
}
.footer_top-wrapper {
  padding: 3rem 2.5rem;
  gap: 3rem;
  align-items: flex-start;
  grid-template-columns: minmax(0, 22rem) 1fr;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 1.25rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.footer_component .max-width-medium {
  max-width: 22rem;
}
.footer_right-wrapper {
  min-width: 0;
}
.footer_logo-link {
  display: inline-block;
  margin-bottom: 1.25rem;
}
.footer_logo {
  max-height: 48px;
  width: auto;
  object-fit: contain;
  opacity: 0.95;
  transition: opacity 0.2s ease;
}
.tag-icon {
  width: 1.25em;
  height: 1.25em;
  vertical-align: middle;
  object-fit: contain;
}
.feature-icon {
  width: 1.5em;
  height: 1.5em;
  object-fit: contain;
}
.footer_logo-link:hover .footer_logo {
  opacity: 1;
}
.footer_tagline {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.footer_component .text-size-regular {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(26, 26, 26, 0.85);
}
.footer_menu-wrapper {
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  width: 100%;
  max-width: 100%;
}
.footer_link-heading {
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.55);
}
.footer_link {
  color: #1a1a1a;
  transition: color 0.2s ease, padding-left 0.2s ease;
  text-decoration: none;
  display: block;
  padding: 0.25rem 0;
}
.footer_component a.footer_link,
.footer_component .footer_link {
  color: #1a1a1a;
}
.footer_link:hover {
  color: #525252;
  padding-left: 2px;
}
.footer_contact-item {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.footer_contact-label {
  font-size: 0.875rem;
  color: rgba(26, 26, 26, 0.65);
  margin-right: 0.35rem;
}
.footer13_social-list {
  margin-top: 0.5rem;
}
.footer_social-link {
  background-color: #1a1a1a;
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.footer_social-link:hover {
  transform: scale(1.08);
  background-color: #404040;
}
.footer_social-link img {
  filter: brightness(0) invert(1);
}
@media (max-width: 991px) {
  .footer_top-wrapper {
    padding: 2rem 1.5rem;
    gap: 2.5rem;
  }
}
@media (max-width: 767px) {
  .footer_top-wrapper {
    grid-template-columns: 1fr;
    justify-items: center;
    align-items: start;
    text-align: center;
    padding: 2rem 1.25rem;
    gap: 2rem;
  }
  .footer_component .max-width-medium {
    max-width: 32rem;
    width: 100%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .footer_tagline,
  .footer_geo-text,
  .footer_component .text-size-regular {
    text-align: center;
  }
  .footer_logo-link {
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
  }
  .footer_right-wrapper {
    width: 100%;
    align-items: center;
    text-align: center;
  }
  .footer_menu-wrapper {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 1.5rem;
  }
  .footer_link-list {
    width: 100%;
    align-items: center;
    place-items: center;
    text-align: center;
  }
  .footer_link-heading,
  .footer_link {
    text-align: center;
  }
  .footer_contact-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 0.35rem;
  }
  .footer13_social-list {
    justify-content: center;
    align-self: center;
  }
}

.footer_geo-text {
  margin: 0.75rem 0 0;
  line-height: 1.6;
  font-size: 0.9375rem;
  color: rgba(26, 26, 26, 0.75);
}

/* ---------- Responsive: overflow + readability (dizajn ostaje isti) ---------- */
html {
  max-width: 100%;
  overflow-x: hidden;
}
body {
  max-width: 100%;
  overflow-x: hidden;
}
.page-wrapper {
  max-width: 100%;
  overflow-x: hidden;
}
img, svg, video, canvas, iframe {
  max-width: 100%;
}
.padding-global {
  box-sizing: border-box;
}
.container-large {
  max-width: 100%;
  min-width: 0;
}

@media (max-width: 991px) {
  .navbar_component.delete-this-class .navbar_container {
    padding: 0.65rem 4%;
    min-height: 4rem;
  }
  .main-wrapper {
    padding-top: 68px;
  }
  .page-hero {
    padding: 5.5rem 0 3rem;
  }
  .page-hero h1 {
    font-size: clamp(2.25rem, 5vw, 3rem);
    line-height: 1.15;
    word-wrap: break-word;
  }
  .page-hero p {
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 34rem;
  }
}

@media (max-width: 767px) {
  .navbar_component.delete-this-class .navbar_container {
    padding: 0.55rem 1rem;
    min-height: 3.75rem;
  }
  .main-wrapper {
    padding-top: 64px;
  }
  html {
    scroll-padding-top: 76px;
  }
  .page-hero {
    padding: 3.75rem 0 2.25rem;
  }
  .page-hero .main_tag._6rem {
    margin-bottom: 0.85rem;
    padding: 0.35rem 0.85rem;
  }
  .page-hero h1 {
    font-size: clamp(2rem, 9vw, 2.5rem);
    margin-bottom: 0.65rem;
  }
  .page-hero p {
    font-size: 1rem;
    line-height: 1.65;
    padding: 0 0.15rem;
  }
  .subpage-section {
    padding-bottom: 3.25rem;
  }
  .service-hub-card {
    min-height: min(48vh, 28rem);
    padding: 1.4rem;
  }
  .service-hub-card-body h2 {
    font-size: clamp(1.5rem, 6vw, 1.85rem);
  }
  .portfolio-toolbar,
  .video-toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
  }
  .portfolio-toolbar .button,
  .video-toolbar .button {
    width: 100%;
    text-align: center;
  }
  .portfolio-count,
  .video-count {
    font-size: 0.9rem;
    line-height: 1.45;
  }
  .portfolio-load-more .button {
    width: 100%;
    max-width: 22rem;
    min-width: 0;
  }
  .video-thumb-name {
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  /* Touch: play ikona uvek vidljiva (nema hover) */
  .video-thumb-play {
    opacity: 0.95;
  }
  .video-thumb-play svg {
    width: 2.35rem;
    height: 2.35rem;
    padding: 0.6rem;
  }
  .video-lightbox {
    padding: 0.75rem;
    align-items: flex-start;
    padding-top: max(3.75rem, env(safe-area-inset-top, 0px) + 3.25rem);
    padding-bottom: max(1rem, env(safe-area-inset-bottom, 0px));
  }
  .video-lightbox-close {
    top: -2.85rem;
    right: 0.15rem;
  }
  .video-lightbox-footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .video-lightbox-youtube {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }
  .album-empty {
    padding: 2.5rem 1.15rem;
  }
  .footer_tagline {
    font-size: 1.05rem;
  }
}

.site-credit {
  margin: 0;
  padding: 0.85rem 1.25rem 1.35rem;
  text-align: center;
  font-size: 0.75rem;
  line-height: 1.4;
  letter-spacing: 0.01em;
  color: rgba(26, 26, 26, 0.55);
}
.site-credit a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}
.site-credit a:hover {
  color: #525252;
}

@media (max-width: 479px) {
  .padding-global {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .page-hero {
    padding: 3.25rem 0 1.85rem;
  }
  .page-hero h1 {
    font-size: 1.9rem;
  }
  .page-hero p,
  .service-hub-card-body p,
  .album-empty p {
    font-size: 0.975rem;
  }
  .service-hub-card {
    min-height: 38vh;
    border-radius: 0.85rem;
  }
  .video-playlist {
    gap: 0.85rem 0.65rem;
  }
  .video-thumb-body {
    gap: 0.35rem;
  }
  .video-thumb-name {
    font-size: 0.875rem;
  }
  .video-thumb-index {
    font-size: 0.7rem;
  }
  /* Webflow na 479px stavlja .button { width:100% } – zadrži smisao u toolbarima */
  .navbar_component .button.is-small {
    width: auto;
  }
  .portfolio-grid {
    column-gap: 0.75rem;
  }
  .portfolio-item {
    margin-bottom: 0.75rem;
    border-radius: 0.65rem;
  }
  .album-card-body {
    padding: 1rem 1.05rem 1.15rem;
  }
  .album-card-body h3 {
    font-size: 1.1rem;
  }
}

/* Prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .service-hub-card,
  .service-hub-card img.service-hub-bg,
  .portfolio-item img,
  .album-card,
  .album-card-media img,
  .video-thumb-media,
  .video-thumb-media img {
    transition: none;
  }
  .portfolio-item--reveal {
    animation: none;
  }
}
