/* Techno layout – Figma “Predstavitvena stran” (desktop + mobile) */
/* Barve: --techno-primary, --techno-black, --techno-white, --techno-dark-gray, --techno-beige, --techno-light-gray (nastavijo se v bodyStyleVars) */
/* Preddefinirane barve za kartice (Zaupa nam) in Kontaktirajte nas: temna kartica, belo besedilo, avatar */
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@700&display=swap");

/* Naslovi sekcij – poenotena tipografija: Oswald, Bold, 40px, letter-spacing 0 */
.techno-hero__title,
.techno-about__title,
.techno-section-title,
.techno-banner__title,
.techno-contact-form__title {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: 0;
}

.techno-body {
  --techno-primary: #ee792c;
  --techno-black: #000000;
  --techno-white: #ffffff;
  --techno-dark-gray: #322d29;
  --techno-beige: #efe3d7;
  --techno-light-gray: #f5f5f5;
  /* Kartica / kontakt sekcija (iz dizajna Zaupa nam) */
  --techno-card-bg: #262626;
  --techno-card-text: #ffffff;
  --techno-card-avatar-bg: #a9a9a9;
  --techno-card-avatar-text: #404040;
  margin: 0;
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--techno-dark-gray);
  background: var(--techno-white);
  line-height: 1.5;
}

.techno-body * {
  box-sizing: border-box;
}

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

.techno-body a {
  text-decoration: none;
}

.techno-body button,
.techno-body input,
.techno-body select,
.techno-body textarea {
  font: inherit;
}

html {
  scroll-behavior: smooth;
}

/* Container */
.techno-container {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
/*   padding-inline: 16px; */
}

/* Topbar */
.techno-topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--techno-white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.techno-topbar__bar {
  padding: 12px 0;
}

.techno-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.techno-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.techno-brand__mark {
  display: flex;
  align-items: center;
}

.techno-header__logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.techno-brand__text {
  font-size: 18px;
  color: var(--techno-black);
}

.techno-topbar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.techno-pill {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 100px;
  background: var(--techno-light-gray);
  font-size: 14px;
  color: var(--techno-dark-gray);
}

.techno-pill__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background-color: var(--techno-pill-icon-bg, var(--techno-primary));
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  transition: background-color 0.2s ease;
}

.techno-pill__icon.techno-icon--phone {
  -webkit-mask-image: url("svg/techno/phone.svg");
  mask-image: url("svg/techno/phone.svg");
}

.techno-pill__icon.techno-icon--email {
  -webkit-mask-image: url("svg/techno/email.svg");
  mask-image: url("svg/techno/email.svg");
}

/* Sprememba barve ikone ob hover (desktop), focus (tipkovnica) in active (tap na telefonu) */
.techno-pill--contact:hover .techno-pill__icon,
.techno-pill--contact:focus .techno-pill__icon,
.techno-pill--contact:active .techno-pill__icon {
  background-color: var(--techno-primary);
}

.techno-pill__text {
  white-space: nowrap;
}

.techno-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

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

.techno-btn--primary:hover {
  filter: brightness(1.08);
}

.techno-btn--outline {
  background: transparent;
  color: var(--techno-dark-gray);
  border-color: var(--techno-dark-gray);
}

.techno-btn--white {
  background: var(--techno-white);
  color: var(--techno-black);
  border-color: var(--techno-white);
}

.techno-burger {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 8px;
  background: var(--techno-light-gray);
  display: grid;
  place-items: center;
  gap: 5px;
  padding: 12px;
  cursor: pointer;
}

.techno-burger span {
  width: 20px;
  height: 2px;
  background: var(--techno-dark-gray);
  display: block;
  border-radius: 2px;
}

@media (min-width: 768px) {
  .techno-pill {
    display: inline-flex;
  }
}

/* Drawer */
.techno-drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.techno-drawer-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.techno-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(300px, 85vw);
  background: var(--techno-white);
  padding: 24px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.techno-drawer__link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  color: var(--techno-dark-gray);
  font-weight: 500;
}

.techno-drawer__link .techno-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background-color: var(--techno-primary);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.techno-icon.techno-icon--phone {
  -webkit-mask-image: url("svg/techno/phone.svg");
  mask-image: url("svg/techno/phone.svg");
}

.techno-icon.techno-icon--email {
  -webkit-mask-image: url("svg/techno/email.svg");
  mask-image: url("svg/techno/email.svg");
}

.techno-icon.techno-icon--location {
  -webkit-mask-image: url("svg/techno/location.svg");
  mask-image: url("svg/techno/location.svg");
}

.techno-icon.techno-icon--clock {
  -webkit-mask-image: url("svg/techno/clock.svg");
  mask-image: url("svg/techno/clock.svg");
}

/* Hero */
.techno-hero {
  position: relative;
  min-height: 42vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--techno-white);
}

.techno-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.techno-hero__content {
  position: relative;
  z-index: 1;
  padding: 48px 16px;
  width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.techno-hero__title {
  margin: 0 0 16px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.techno-hero__subtitle {
  margin: 0 0 24px;
  font-size: 16px;
  opacity: 0.95;
  max-width: 560px;
  margin-inline: auto;
}

.techno-hero__cta {
  margin-top: 8px;
}

@media (min-width: 768px) {
  .techno-hero__subtitle {
    font-size: 18px;
  }
}

/* About – Figma: leva polovica bež + prekrivajoči sliki, desna črna z oranžno črto */
.techno-about {
  padding: 0;
  background: transparent;
}

.techno-about .techno-container {
  width: 100%;
}

@media (max-width: 991px) {
  .techno-about .techno-container {
    width: 100%;
  }
}

.techno-about__inner {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  gap: 0;
  min-height: 0;
  margin-left: 0;
}

/* Mobil: bež ozadje samo do polovice (do spodnje slike), brez ::before; spodnja levo, zgornja desno; sliki se prekrivata */
.techno-about__images {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
  /* Bež 50% po horizontali (leva polovica), po vertikali ne polni celotne višine */
  background-image: linear-gradient(to bottom, var(--techno-beige) 80%, transparent 50%);
  background-size: 100% 50%;
  background-position: top left;
  background-repeat: no-repeat;
  padding: 40px 24px;
  min-height: 330px;
  overflow: visible;
}

.techno-about__images img {
  position: absolute;
  width: 72%;
  max-width: 280px;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Spodnja slika: levo ob robu, v ozadju */
.techno-about__images img:last-child {
  left: 0px;
  right: auto;
  top: 123px;
  z-index: 2;
}

/* Zgornja slika: na vrhu, bolj na desnem robu, v ospredju */
.techno-about__images img:first-child {
  right: 0px;
  left: auto;
  top: 28px;
  bottom: auto;
  z-index: 1;
}

.techno-about__images img:only-child {
  left: 50%;
  right: auto;
  top: 50%;
  bottom: auto;
  transform: translate(-50%, -50%);
}

.techno-about__content {
  background: var(--techno-white);
  color: var(--techno-black);
  padding: 40px 24px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-width: 300px;
  max-width: 613px;
  width: 100%;
  margin-left: 0;
  overflow: visible;
  min-height: 0;
  box-sizing: border-box;
  text-align: left;
}

.techno-about__title {
  margin: 0 0 12px;
  color: var(--techno-black);
}

.techno-about__title::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  background: var(--techno-primary);
  margin-top: 14px;
  border-radius: 2px;
}

.techno-about__desc {
  margin: 0;
  font-size: 16px;
  color: var(--techno-dark-gray);
  line-height: 1.6;
  width: 100%;
  min-width: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  box-sizing: border-box;
}

/* 500px–999px: sliki na sredini in se prekrivata, o nas blok sredinsko poravnan */
@media (min-width: 500px) and (max-width: 999px) {
  .techno-about__images {
    align-items: center;
    justify-content: center;
    background: var(--techno-beige);
    min-height: 350px;
        margin-bottom: 60px;
  }
  .techno-about__images img {
    width: 72%;
    max-width: 320px;
  }
  /* Spodnja slika: v ozadju, centrirana z rahlim pomikom levo */
  .techno-about__images img:last-child {
    left: 40%;
    right: auto;
    top: 86%;
    transform: translate(calc(-50% - 8%), -50%);
    z-index: 1;
  }
  /* Zgornja slika: v ospredju, centrirana z rahlim pomikom desno – prekrivata se */
  .techno-about__images img:first-child {
    left: 60%;
    right: auto;
    top: 44%;
    bottom: auto;
    transform: translate(calc(-50% + 8%), -50%);
    z-index: 2;
  }
  .techno-about__images img:only-child {
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .techno-about__content {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    align-items: center;
  }
  .techno-about__title::after {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 992px) {
  /* Row z razmerjem 5 (bež) : 7 (o nas), velikost se spreminja z velikostjo strani, vmes 191px */
  .techno-about__inner {
    grid-template-columns: 5fr 7fr;
    grid-template-rows: 1fr;
    align-items: stretch;
    min-height: 620px;
    overflow: visible;
    gap: 0 191px;
  }
  .techno-about__images {
    padding: 48px 40px 48px 80px;
    min-height: 620px;
    min-width: 0;
    gap: 0;
    background: var(--techno-beige);
  }
  .techno-about__images img {
    position: absolute;
    max-width: none;
    object-fit: cover;
  }
  /* Zgornja slika (first-child): desno od spodnje, prekriva bež in malo čez beli del */
  .techno-about__images img:first-child {
    width: 50%;
    height: 50%;
    top:34%;
    right: -15%;
    left: auto;
    bottom: auto;
    transform: translateY(-50%);
    z-index: 2;
  }
  /* Spodnja slika (last-child): na sredini bežega dela */
  .techno-about__images img:last-child {
    width: 50%;
    height: 50%;
    left: 50%;
    top: 50%;
    right: auto;
    bottom: auto;
    transform: translate(-50%, -50%);
    z-index: 1;
  }
  .techno-about__images img:only-child {
    width: 70%;
    height: auto;
    max-height: 75%;
    top: 50%;
    left: 50%;
    right: auto;
    bottom: auto;
    transform: translate(-50%, -50%);
  }
  /* O nas blok: min 300px, max 613px, besedilo se prelama, levo poravnano */
  .techno-about__content {
    padding: 48px 80px 48px 0;
    min-width: 300px;
    max-width: 613px;
    width: 100%;
    margin-left: 0;
  }
  .techno-about__desc {
    font-size: 22px;
    line-height: 1.5;
    min-width: 0;
    max-width: 100%;
    width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
  }
}

/* Process (storitve) – slika v overlayu 569px (center/cover no-repeat), pod karticami; 1/3 kartice gleda izven */
.techno-process {
  position: relative;
  padding-top: 569px;
  padding-bottom: 60px;
  color: var(--techno-white);
}
@media (min-width: 768px) {
  .techno-process {
    padding-bottom: 20px;
  }
}

.techno-process__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 569px;
  z-index: 0;
  background-color: transparent;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* 2/3 kartice prekriva sliko, 1/3 gleda izven (margin-top negativen). Vedno flex vrstica, nikoli grid. */
.techno-process__grid {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
  margin-top: calc(-2 / 3 * 305px);
}

.techno-process-card {
  background: var(--techno-primary);
  padding: 24px;
  text-align: center;
  width: 275px;
  height: 305px;
  min-height: 305px;
  max-width: 275px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.techno-process-card__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--techno-white);
  color: var(--techno-primary);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.techno-process-card__title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  color: var(--techno-white);
}

.techno-process-card__desc {
  margin: 0;
  font-size: 14px;
  opacity: 0.95;
  line-height: 1.5;
}

/* Manjši zasloni: prva kartica cela, druga malo vidna, horizontalni scroll brez scrollbar – širina strani se ne poveča */
@media (max-width: 991px) {
  .techno-process {
    /* overflow-x: hidden; */
  }
  .techno-process .techno-container {
    /* overflow-x: hidden; */
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .techno-process__grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 24px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 8px;
    padding-left: 31px;
    padding-right: 31px;
    justify-content: flex-start;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .techno-process__grid::-webkit-scrollbar {
    display: none;
  }
  .techno-process-card {
    flex: 0 0 auto;
    width: 275px;
    min-width: 275px;
    max-width: 275px;
    height: 305px;
    min-height: 305px;
  }
}

@media (min-width: 992px) {
  .techno-process .techno-container {
    overflow-x: hidden;
  }
  .techno-process__grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding-bottom: 8px;
    justify-content: center;
    width: 100%;
    min-width: 0;
  }
  .techno-process__grid::-webkit-scrollbar {
    height: 6px;
  }
  .techno-process__grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
  }
  .techno-process-card {
    flex: 0 0 auto;
    width: 275px;
    min-width: 275px;
    max-width: 275px;
  }
}

/* Pricing */
.techno-pricing {
  padding: 48px 0;
  background: var(--techno-white);
}

.techno-section-title {
  margin: 0 0 8px;
  color: var(--techno-black);
}

.techno-section-title--center {
  text-align: center;
}

.techno-section-title--light {
  color: var(--techno-white);
}

/* Partners "Sodelujemo z" – poenoteno z techno (Oswald naslov, techno barve) */
#sodelujemo {
  overflow-x: clip;
}
@supports not (overflow-x: clip) {
  #sodelujemo {
    overflow-x: hidden;
  }
}
.techno-partners {
  padding: 48px 0;
  /* background: var(--techno-beige); */
}
.techno-partners .techno-section-title {
  margin-bottom: 24px;
}
.techno-partners__viewport {
  overflow: hidden;
  width: 100%;
}
.techno-partners__track {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
}
.techno-partners__item {
  flex: 0 0 auto;
  width: 140px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.techno-partners__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.techno-partners__img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  opacity: 0.9;
}
@media (min-width: 992px) {
  .techno-partners__item {
    width: 180px;
    height: 80px;
  }
}
.techno-partners--loop .techno-partners__track {
  animation: technoPartnersScroll 30s linear infinite;
}
@keyframes technoPartnersScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.techno-partners--slide .techno-partners__scroll {
  display: flex;
  align-items: center;
  gap: 40px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
}
.techno-partners--slide .techno-partners__scroll .techno-partners__item {
  scroll-snap-align: start;
}
.techno-partners--slide .techno-partners__scroll::-webkit-scrollbar {
  height: 6px;
}
.techno-partners--slide .techno-partners__scroll::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.06);
  border-radius: 3px;
}
@media (max-width: 991px) {
  .techno-partners__viewport {
    overflow-x: hidden;
    overflow-y: hidden;
  }
  .techno-partners--slide .techno-partners__scroll {
    overflow-x: hidden;
    overflow-y: hidden;
  }
}

.techno-muted {
  margin: 0 0 24px;
  font-size: 16px;
  color: var(--techno-dark-gray);
  opacity: 0.9;
}

.techno-muted--center {
  text-align: center;
}

.techno-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.techno-tab {
  padding: 10px 20px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--techno-dark-gray);
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.techno-tab:hover {
  background: color-mix(in srgb, var(--techno-primary) 28%, white);
  color: var(--techno-dark-gray);
}

.techno-tab--active {
  background: var(--techno-primary);
  color: var(--techno-white);
}

.techno-price-list-wrapper {
  display: block;
}

.techno-price-list-panel {
  display: block;
}

.techno-price-list-panel[hidden] {
  display: none;
}

.techno-price-item {
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.techno-price-item__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.techno-price-item__name {
  font-weight: 600;
  color: var(--techno-black);
}

.techno-price-item__price {
  font-weight: 700;
  color: var(--techno-primary);
  flex-shrink: 0;
}

.techno-price-item__desc {
  margin: 8px 0 0;
  font-size: 14px;
  color: var(--techno-dark-gray);
  opacity: 0.9;
}

/* Banner */
.techno-banner {
  background: var(--techno-banner-bg, var(--techno-primary));
  color: var(--techno-white);
  padding: 40px 0;
  text-align: center;
}

.techno-banner__inner {
  max-width: 720px;
  margin-inline: auto;
}

.techno-banner__title {
  margin: 0 0 12px;
}

.techno-banner__text {
  margin: 0 0 20px;
  font-size: 16px;
  opacity: 0.95;
}

/* Jedilni list – ista funkcionalnost kot profession, slog iz techno teme (fonti, barve, oblike gumbov) */
.techno-menu {
  position: relative;
  padding: 70px 0;
  min-height: 480px;
  overflow-x: clip;
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
@supports not (overflow-x: clip) {
  .techno-menu {
    overflow-x: hidden;
  }
}
.techno-menu__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: var(--techno-menu-image-opacity, 0.5);
  pointer-events: none;
}
.techno-menu__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.techno-menu::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("assets/food-pattern.png");
  background-repeat: repeat;
  background-size: 900px auto;
  opacity: var(--techno-menu-pattern-opacity, 0.22);
  pointer-events: none;
}
.techno-menu__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.techno-menu__title {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: 0;
  margin: 0 0 10px;
  color: var(--techno-dark-gray);
}
.techno-menu__lead {
  max-width: 760px;
  margin: 0 auto 18px;
  font-size: 14px;
  line-height: 22px;
  color: var(--techno-dark-gray);
  opacity: 0.85;
}
.techno-menu__tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  justify-content: center;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 10px 2px 16px;
  margin: 0 auto 10px;
  max-width: 100%;
  min-width: 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-behavior: smooth;
}
.techno-menu__tabs::-webkit-scrollbar {
  display: none;
}
@media (max-width: 991px) {
  .techno-menu__tabs {
    justify-content: flex-start;
  }
}
.techno-menu__tab {
  flex: 0 0 auto;
  width: 108px;
  border: 2px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.65);
  border-radius: 8px;
  padding: 10px 10px 9px;
  cursor: pointer;
  text-align: center;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.2s ease;
  font-weight: 600;
  font-size: 14px;
}
.techno-menu__tab:hover {
  background: rgba(255, 255, 255, 0.9);
}
.techno-menu__tab:active {
  transform: scale(0.98);
}
.techno-menu__tabDay {
  display: block;
  font-weight: 700;
  font-size: 12px;
  line-height: 14px;
  color: var(--techno-dark-gray);
}
.techno-menu__tabDate {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  line-height: 13px;
  color: var(--techno-dark-gray);
  opacity: 0.75;
  transition: color 0.25s ease;
}
.techno-menu__tab.is-active {
  background: var(--techno-primary);
  border-color: var(--techno-primary);
  color: var(--techno-white);
}
.techno-menu__tab.is-active .techno-menu__tabDate {
  color: rgba(255, 255, 255, 0.9);
}
.techno-menu__card {
  max-width: 760px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 18px 16px;
  text-align: left;
  perspective: 1200px;
}
.techno-menu__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.techno-menu__listPanel {
  display: none;
}
.techno-menu__card > .techno-menu__listPanel {
  display: none;
}
.techno-menu__listPanel.is-active {
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: techno-menu-panel-in 0.4s cubic-bezier(0.33, 1, 0.68, 1) both;
}
@keyframes techno-menu-panel-in {
  0% {
    opacity: 0;
    transform: translateY(-8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.techno-menu__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: start;
  padding-bottom: 14px;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.18);
}
.techno-menu__row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.techno-menu__rowTitle {
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 3px;
  color: var(--techno-dark-gray);
}
.techno-menu__rowDesc {
  font-size: 13px;
  line-height: 20px;
  color: var(--techno-dark-gray);
  opacity: 0.8;
}
.techno-menu__price {
  font-weight: 700;
  color: var(--techno-primary);
  white-space: nowrap;
  padding-top: 2px;
}
.techno-menu__subTitle {
  text-align: center;
  font-weight: 700;
  margin: 18px 0 12px;
  font-size: 16px;
  color: var(--techno-dark-gray);
}
.techno-menu__empty {
  margin: 8px 0 4px;
  text-align: center;
  font-size: 13px;
  line-height: 20px;
  color: var(--techno-dark-gray);
  opacity: 0.8;
  font-style: italic;
}
.techno-menu__foot {
  margin: 16px 0 0;
  font-size: 12px;
  line-height: 18px;
  color: var(--techno-dark-gray);
  opacity: 0.8;
}
@media (min-width: 992px) {
  .techno-menu {
    padding: 90px 0;
  }
  .techno-menu__title {
    font-size: 40px;
  }
  .techno-menu__tab {
    width: 120px;
  }
  .techno-menu__card {
    padding: 22px;
    border-radius: 12px;
  }
  .techno-menu__rowTitle {
    font-size: 15px;
  }
  .techno-menu__rowDesc {
    font-size: 14px;
  }
}

/* Booking – mere kot v Figmi (759px), ne razteguj; na mobilnem 3 termini v vrsti (v widgetu) */
.techno-booking {
  padding: 48px 0;
  background: var(--techno-light-gray);
}

.techno-booking .techno-section-title,
.techno-booking .techno-muted {
  text-align: center;
}

.techno-booking__widget {
  margin-top: 24px;
  max-width: 759px;
  margin-left: auto;
  margin-right: auto;
}

/* Lit widget (planego-booking-widget): barva poudarka in badgea „št. prostih“ v terminih */
.techno-booking__widget planego-booking-widget {
  --primary: var(--techno-primary, #ee792c);
}

/* Na mobilnem: ure (termini) min 3 v vrstici (Angular widget .slots) */
@media (max-width: 991px) {
  #termini .slots {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Trusted by (company wall / testimonials) – preddefinirane barve kartice */
.techno-trusted {
  position: relative;
  padding: 48px 0;
  background: var(--techno-card-bg);
  color: var(--techno-card-text);
  overflow-x: hidden;
}

/* Splošna slika sekcije (ozadje) */
.techno-trusted__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.35;
}
.techno-trusted__bg--grayscale {
  filter: grayscale(100%);
}
.techno-trusted__inner {
  position: relative;
  z-index: 1;
}

.techno-trusted .techno-container {
  margin-inline: auto;
  width: min(1120px, calc(100% - 32px));
  /* padding-inline: 16px; */
}

.techno-trusted__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
}

.techno-trusted .techno-section-title--light {
  margin-bottom: 0;
}

.techno-trusted__nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.techno-trusted__nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: var(--techno-primary);
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.techno-trusted__nav-btn:hover {
  background: color-mix(in srgb, var(--techno-primary) 20%, transparent);
  color: var(--techno-primary);
}

.techno-trusted__nav-btn:active {
  background: color-mix(in srgb, var(--techno-primary) 35%, transparent);
}

.techno-trusted__nav-icon {
  width: 17px;
  height: 31px;
  flex-shrink: 0;
}

.techno-trusted__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 0;
}

.techno-trusted-card {
  background: #818181;
  color: var(--techno-card-text);
  padding: 24px 24px;
  position: relative;
  width: 432px;
  min-height: 320px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.techno-trusted-card__quote {
  display: block;
  flex-shrink: 0;
  margin-bottom: 8px;
}

.techno-trusted-card__quote img {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.techno-trusted-card__text {
  margin: 0 0 20px 0;
  font-size: 16px;
  line-height: 1.65;
  font-style: italic;
  opacity: 0.95;
  color: var(--techno-card-text);
}

.techno-trusted-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  margin-top: auto;
}

/* Samo črka (iniciala): krog z barvo assets (avatar) */
.techno-trusted-card__initial,
.techno-trusted-card__author .techno-trusted__initial {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--techno-card-avatar-bg);
  color: var(--techno-card-avatar-text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

/* Slika avatara: če je transparentna, ozadje kroga v barvi assets */
.techno-trusted__avatar {
  width: 36px;
  height: 36px;
  object-fit: cover;
  border-radius: 50%;
  background: var(--techno-card-avatar-bg);
}

.techno-trusted-card__name {
  font-weight: 600;
  font-size: 16px;
  color: var(--techno-card-text);
}

/* Mobil + tablet: horizontalni scroll znotraj sekcije, sekcija ne povzroča horizontalnega scrolla strani */
@media (max-width: 991px) {
  .techno-trusted .techno-container {
    width: 100%;
    max-width: none;
    overflow-x: hidden;
  }
  .techno-trusted__header {
    padding-left: max(16px, env(safe-area-inset-left));
    padding-right: max(16px, env(safe-area-inset-right));
  }
  .techno-trusted__grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 8px;
    margin-left: 0;
    width: 100%;
    padding-left: max(16px, env(safe-area-inset-left));
    padding-right: max(16px, env(safe-area-inset-right));
  }
  .techno-trusted__grid::-webkit-scrollbar {
    display: none;
  }
  .techno-trusted-card {
    flex: 0 0 auto;
    width: 432px;
    min-width: 432px;
    max-width: none;
    min-height: 320px;
  }
}

/* Desktop: 75px odmik od leve, naslov in prva kartica na istih pikslih; kartice v desno čez rob */
@media (min-width: 992px) {
  .techno-trusted .techno-container {
    overflow-x: visible;
    width: 100%;
    max-width: none;
    padding-left: 75px;
  }
  .techno-trusted__header {
    justify-content: flex-start;
    gap: 16px;
  }
  /* 75px odmik od leve: prva kartica in naslov na istih pikslih; grid ne širi strani */
  .techno-trusted__grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 24px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 8px;
    padding-left: 0;
    padding-right: 0;
    width: calc(100vw - 75px);
    margin-left: 0;
    box-sizing: content-box;
  }
  .techno-trusted__grid::-webkit-scrollbar {
    display: none;
  }
  .techno-trusted-card {
    flex: 0 0 auto;
    width: 432px;
    min-width: 432px;
    max-width: none;
    min-height: 320px;
  }
}

/* Contact form section – preddefinirane barve kot pri Zaupa nam */
.techno-contact-form {
  position: relative;
  padding: 48px 0;
  background: var(--techno-card-bg);
  color: var(--techno-card-text);
  background-size: cover;
  background-position: center;
}

.techno-contact-form__overlay {
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, var(--techno-card-bg) 85%, transparent);
  z-index: 0;
}

.techno-contact-form__inner {
  position: relative;
  z-index: 1;
  max-width: 432px;
  margin-inline: auto;
}

.techno-contact-form__card {
  background: rgba(245, 245, 245, 0.46);
  backdrop-filter: blur(10px);
  color: var(--techno-dark-gray);
  padding: 32px 24px;
}

.techno-contact-form__title {
  margin: 0 0 24px;
  color: var(--techno-black);
}

/* Form inside card: light inputs, dark text */
.techno-contact-form__card .techno-form__message {
  background: rgba(0, 0, 0, 0.06);
  color: var(--techno-dark-gray);
  border-radius: 12px;
}

.techno-contact-form__card .techno-form__message--success {
  background: rgba(76, 175, 80, 0.15);
  color: #2e7d32;
}

.techno-contact-form__card .techno-form__message--error {
  background: rgba(244, 67, 54, 0.15);
  color: #c62828;
}

.techno-contact-form__card .techno-input,
.techno-contact-form__card .techno-textarea {
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: var(--techno-light-gray);
  color: var(--techno-dark-gray);
  border-radius: 12px;
}

.techno-contact-form__card .techno-input::placeholder,
.techno-contact-form__card .techno-textarea::placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.techno-contact-form__card .techno-btn {
  border-radius: 12px;
}

/* Mobil: gumb na levi */
.techno-contact-form__card .techno-form {
  text-align: left;
}

@media (min-width: 768px) {
  .techno-contact-form__inner {
    max-width: 432px;
  }
  .techno-contact-form__card {
    padding: 40px 48px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  }
  .techno-contact-form__card .techno-form {
    text-align: center;
  }
  .techno-contact-form__title {
    margin-bottom: 28px;
  }
}

/* Map + contact details section (no background, map left / contact right) */
.techno-map-contact {
  padding: 112px 0;
  background: var(--techno-white);
  color: var(--techno-dark-gray);
}

.techno-map-contact__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

.techno-map-contact__map {
  width: 100%;
  min-height: 220px;
  max-height: 280px;
  background: var(--techno-light-gray);
  border-radius: 10px;
  overflow: hidden;
}

.techno-map-contact__map iframe {
  display: block;
  width: 100%;
  min-height: 220px;
  max-height: 280px;
  object-fit: cover;
}

.techno-map-contact__details {
  text-align: left;
}

.techno-map-contact__details .techno-contact-list {
  margin: 0;
}

.techno-map-contact__details .techno-contact-item {
  color: var(--techno-dark-gray);
  justify-content: flex-start;
  text-align: left;
}

.techno-map-contact__details .techno-contact-item span:last-child {
  text-align: left;
}

.techno-map-contact__details .techno-contact-item .techno-icon {
  background-color: var(--techno-primary);
}

/* V kontaktih ne prikazujemo formatiranja (npr. strong kot navadno besedilo) */
.techno-contact-form strong,
.techno-map-contact strong {
  font-weight: normal;
}

@media (min-width: 768px) {
  .techno-map-contact__inner {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
  .techno-map-contact__map {
    min-height: 260px;
    max-height: 320px;
  }
  .techno-map-contact__map iframe {
    min-height: 260px;
    max-height: 320px;
  }
}

.techno-form__message {
  margin-bottom: 16px;
  padding: 12px;
  font-size: 14px;
}

.techno-form__message--success {
  background: rgba(76, 175, 80, 0.3);
  color: #c8e6c9;
}

.techno-form__message--error {
  background: rgba(244, 67, 54, 0.3);
  color: #ffcdd2;
}

.techno-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.techno-form__full {
  grid-column: 1 / -1;
}

.techno-input,
.techno-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: var(--techno-white);
  font-size: 16px;
}

.techno-input::placeholder,
.techno-textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.techno-input--error,
.techno-textarea--error {
  border-color: #f44336;
}

.techno-textarea {
  min-height: 120px;
  resize: vertical;
  margin-bottom: 16px;
}


.techno-contact-list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.techno-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.techno-contact-item:has(.techno-icon--location) {
  align-items: center;
}

.techno-contact-item .techno-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  background-color: var(--techno-primary);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.techno-contact-item:has(.techno-icon--location) .techno-icon {
  margin-top: 0;
}

/* Footer – višina 376px, levi stolpec 256px, socialna omrežja na levi strani drugega stolpca */
.techno-footer {
  background: #363636;
  color: var(--techno-white);
  min-height: 376px;
  padding: 48px 26px;
  box-sizing: border-box;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
}

/* Desktop: vsebina od 1/4 do 3/4 zaslona (levi rob 25vw, desni konec 25vw od desne) */
@media (min-width: 992px) {
  .techno-footer {
    padding-left: 16vw;
    padding-right: 0vw;
  }
  .techno-footer .techno-container {
    margin-inline: 0;
    width: 100%;
    max-width: none;
  }
}

.techno-footer__inner {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
  flex: 1;
  min-height: 280px;
}

.techno-footer__right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.techno-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 256px;
}

.techno-footer__brand-line {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
}

.techno-footer__logo img,
.techno-footer__logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}

.techno-footer__name {
  font-size: 17px;
  font-weight: 400;
  color: var(--techno-white);
  line-height: 1.4;
}

.techno-footer__name strong {
  font-weight: 700;
}

.techno-footer__address,
.techno-footer__phone {
  margin: 0;
  font-size: 20px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.techno-footer__meta {
  font-size: 20px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

.techno-footer__meta div {
  margin-bottom: 4px;
}

.techno-footer__social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.techno-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--techno-white);
}

.techno-footer__social-link img {
  width: 24px;
  height: 24px;
  opacity: 0.9;
  filter: brightness(0) invert(1);
}

.techno-footer__social-link:hover img {
  opacity: 1;
}

@media (min-width: 768px) {
  .techno-footer__inner {
    grid-template-columns: 1.2fr 1fr;
    align-items: start;
    gap: 40px;
  }
  .techno-footer__right {
    align-items: flex-start;
  }
  .techno-footer__social {
    justify-content: flex-start;
  }
}

/* Back to top */
.techno-back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 0;
  background: var(--techno-primary);
  color: var(--techno-white);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  z-index: 50;
  display: grid;
  place-items: center;
}

.techno-back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
}

.techno-back-to-top svg {
  width: 24px;
  height: 24px;
}

/* Mobil: gumb vedno na vrhu sklada, varno oddaljen od roba (notch, home indicator) */
@media (max-width: 767px) {
  .techno-back-to-top {
    z-index: 9999;
    bottom: calc(24px + env(safe-area-inset-bottom, 0px));
    right: calc(24px + env(safe-area-inset-right, 0px));
  }
}

/* Galerija */
.techno-gallery {
  padding: 48px 0;
  background: var(--techno-light-gray, #f5f5f5);
}

.techno-gallery .techno-section-title--center {
  margin-bottom: 8px;
}

.techno-gallery .techno-muted--center {
  margin-bottom: 24px;
}

.techno-gallery__grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.techno-gallery__row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

@media (min-width: 992px) {
  .techno-gallery__row {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding-bottom: 8px;
  }
  .techno-gallery__row::-webkit-scrollbar {
    height: 8px;
  }
  .techno-gallery__row::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.06);
    border-radius: 4px;
  }
  .techno-gallery__row::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
  }
  .techno-gallery__row::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.35);
  }
}

.techno-gallery-item {
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: block;
  line-height: 0;
  border-radius: 8px;
  overflow: hidden;
}

.techno-gallery-item img {
  width: min(45vw, 220px);
  height: 160px;
  object-fit: cover;
  display: block;
}

@media (min-width: 768px) {
  .techno-gallery-item img {
    width: 200px;
    height: 160px;
  }
}

@media (min-width: 992px) {
  .techno-gallery-item img {
    width: 240px;
    height: 200px;
  }
}

/* Galerija – lightbox */
.techno-gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.techno-gallery-lightbox.techno-gallery-lightbox-open {
  opacity: 1;
  visibility: visible;
}

.techno-gallery-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  cursor: pointer;
}

.techno-gallery-lightbox__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s;
}

.techno-gallery-lightbox__close:hover {
  background: rgba(255, 255, 255, 0.35);
}

.techno-gallery-lightbox__close svg {
  width: 24px;
  height: 24px;
}

.techno-gallery-lightbox__nav {
  display: none;
}

@media (min-width: 992px) {
  .techno-gallery-lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background 0.2s;
  }
  .techno-gallery-lightbox__nav:hover {
    background: rgba(255, 255, 255, 0.35);
  }
  .techno-gallery-lightbox__nav svg {
    width: 28px;
    height: 28px;
  }
  .techno-gallery-lightbox__nav--prev {
    left: 20px;
  }
  .techno-gallery-lightbox__nav--next {
    right: 20px;
  }
  .techno-gallery-lightbox--single .techno-gallery-lightbox__nav {
    display: none;
  }
}

.techno-gallery-lightbox__content {
  position: relative;
  z-index: 1;
  max-width: 100%;
  max-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.techno-gallery-lightbox__img {
  max-width: 100%;
  max-height: calc(100vh - 40px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}