/* Brand override: minimal changes on top of original theme */
:root {
  --brand-facade: #F1EFE9;
  --brand-frame: #2F353A;
  --brand-roof: #6C757D;
  --brand-green: #6F8F3A;
  --brand-beige: #CDBFA6;
}

body {
  background-color: var(--brand-facade) !important;
}

.site-header,
.site-header .site-header-main,
.site-header .header-main,
.main-navigation,
.mainmenu-container {
  background-color: var(--brand-frame) !important;
}

.site-header .custom-header.container {
  max-width: 100% !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 10px 26px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.95) !important;
}

.site-header .header-main-content {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 20px !important;
}

.main-navigation .top-menu > li > a,
.mainmenu-container .top-menu > li > a,
.site-header a {
  color: #ffffff !important;
}

.mainmenu-container .menu-item > a:hover,
.mainmenu-container li.current-menu-parent > a,
.mainmenu-container li.current-menu-item > a {
  color: var(--brand-beige) !important;
}

.mainmenu-container .top-menu {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  gap: 4px !important;
  align-items: center !important;
}

.mainmenu-container .top-menu > li {
  position: relative !important;
  list-style: none !important;
}

.mainmenu-container .top-menu > li > a {
  display: block !important;
  padding: 8px 10px !important;
  text-decoration: none !important;
  font-weight: 600 !important;
}

.main-navigation .menu-toggle {
  display: none !important;
}

.mainmenu-container .top-menu .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 999;
  min-width: 230px;
  background: #0f355f;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 8px 0;
  margin: 0;
  list-style: none !important;
}

.mainmenu-container .top-menu > li:hover > .sub-menu {
  display: block;
}

.mainmenu-container .top-menu .sub-menu a {
  display: block;
  padding: 8px 12px;
  color: #ffffff !important;
  text-decoration: none;
}

.mainmenu-container .menu,
.mainmenu-container .menu li {
  list-style: none !important;
}

.mainmenu-container .top-menu .sub-menu a:hover {
  background: rgba(255, 255, 255, 0.12);
}

.site-footer,
.site-footer .widget-area {
  background-color: var(--brand-frame) !important;
  color: var(--brand-facade) !important;
}

.site-footer a:hover {
  color: var(--brand-beige) !important;
}

.button-primary,
.elementor-element .elementor-button-primary .elementor-button,
.more-link,
.wpforms-submit,
button[type="submit"] {
  background-color: var(--brand-green) !important;
  border-color: var(--brand-green) !important;
}

.button-primary:hover,
.elementor-element .elementor-button-primary .elementor-button:hover,
.more-link:hover,
.wpforms-submit:hover,
button[type="submit"]:hover {
  background-color: var(--brand-roof) !important;
  border-color: var(--brand-roof) !important;
}

a,
.btn-link,
.button-link,
.c-primary,
.text-primary {
  color: var(--brand-green) !important;
}

.bg-secondary,
.button-secondary,
.secondary-button .search-submit,
.elementor-element .elementor-button-secondary .elementor-button {
  background-color: var(--brand-frame) !important;
  border-color: var(--brand-frame) !important;
}

.button-secondary:hover,
.secondary-button .search-submit:hover,
.elementor-element .elementor-button-secondary .elementor-button:hover {
  background-color: var(--brand-roof) !important;
  border-color: var(--brand-roof) !important;
}

.custom-logo,
.site-branding img,
img[src*="Logo.png"],
img[src*="Ozoneresidence-logo"] {
  max-height: 72px;
  width: auto;
}


.custom-intro-copy-section {
  background: var(--brand-facade);
  padding: 42px 0 14px;
}

.custom-intro-copy-section .custom-intro-copy-inner {
  max-width: 1080px;
  margin: 0 auto;
  font-family: "Montserrat", Sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: #000000;
  line-height: 1.75;
}

.custom-intro-copy-section .custom-intro-copy-inner p {
  margin: 0 0 18px;
}

.custom-intro-copy-section .custom-intro-copy-inner p:last-child {
  margin-bottom: 0;
}

.custom-intro-copy-section .custom-intro-copy-inner.custom-intro-animate p {
  opacity: 0;
  transform: translateY(16px);
  animation: customIntroFadeUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.custom-intro-copy-section .custom-intro-copy-inner.custom-intro-animate p:nth-child(1) {
  animation-delay: 0.18s;
}

.custom-intro-copy-section .custom-intro-copy-inner.custom-intro-animate p:nth-child(2) {
  animation-delay: 0.34s;
}

@keyframes customIntroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 767px) {
  .site-header .custom-header.container {
    padding: 10px 14px !important;
  }
  .site-header .header-main-content {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
  .mainmenu-container .top-menu {
    display: block !important;
    width: 100% !important;
  }
  .mainmenu-container .top-menu > li > a {
    padding: 7px 4px !important;
  }
  .mainmenu-container .top-menu .sub-menu {
    display: block;
    position: static;
    min-width: 100%;
    border: 0;
    border-radius: 0;
    padding: 0 0 0 16px;
    background: transparent;
  }
  .mainmenu-container .top-menu .sub-menu a {
    padding: 7px 8px;
    color: #dfefff !important;
  }
  .custom-intro-copy-section {
    padding: 30px 0 10px;
  }

  .custom-intro-copy-section .custom-intro-copy-inner {
    line-height: 1.65;
  }
}

/* Homepage amenities slider section */
.custom-properties-slider-section {
  background: var(--brand-facade);
  padding: 42px 0 20px;
}

.custom-properties-slider-section .container-xxl {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.custom-properties-slider-section .slick-slider {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
}

.custom-properties-slider-section .slick-list {
  overflow: hidden;
}

.custom-properties-slider-section .slick-track {
  position: relative;
  display: flex;
  min-height: 568px;
  transition: transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.custom-properties-slider-section .custom-properties-slide {
  position: relative;
  min-width: 100%;
  flex: 0 0 100%;
  background-position: center;
  background-size: cover;
}

.custom-properties-slider-section .custom-properties-slide.is-clone {
  pointer-events: none;
}

.custom-properties-slider-section .custom-properties-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
}

.custom-properties-slider-section .custom-properties-slide > .container {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  height: 100%;
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.custom-properties-slider-section .custom-properties-layout {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.custom-properties-slider-section .custom-slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  background: rgba(47, 53, 58, 0.72);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  transition: background-color 0.25s ease, transform 0.25s ease;
  cursor: pointer;
}

.custom-properties-slider-section .custom-slider-arrow i {
  font-size: 22px;
  line-height: 1;
}

.custom-properties-slider-section .custom-slider-arrow:hover {
  background: var(--brand-green);
  transform: translateY(-50%) scale(1.05);
}

.custom-properties-slider-section .custom-slider-arrow-prev {
  left: 18px;
}

.custom-properties-slider-section .custom-slider-arrow-next {
  right: 18px;
}

.custom-properties-slider-section .custom-properties-card {
  width: min(100%, 520px);
  background: #fff;
  border-radius: 10px;
  padding: 34px 34px 24px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
}

.custom-properties-slider-section .custom-properties-card h2 {
  margin-top: 6px;
}

.custom-properties-slider-section .custom-properties-card h2 a {
  color: var(--brand-frame) !important;
}

.custom-properties-slider-section .custom-properties-card p {
  color: #4d4d4d;
}

.custom-properties-slider-section .heading-divider {
  display: inline-block;
  width: 56px;
  height: 3px;
  margin: 12px 0 16px;
  background: var(--brand-green);
}

.custom-properties-slider-section .custom-properties-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.custom-properties-slider-section .custom-properties-list li {
  color: var(--brand-frame);
  font-weight: 500;
}

.custom-properties-slider-section .custom-properties-list .fa-check {
  color: var(--brand-green) !important;
  margin-right: 8px;
}

@media (max-width: 991px) {
  .custom-properties-slider-section {
    padding-top: 28px;
  }

  .custom-properties-slider-section .slick-list,
  .custom-properties-slider-section .slick-track {
    min-height: 520px;
  }
}

@media (max-width: 767px) {
  .custom-properties-slider-section .custom-slider-arrow {
    width: 40px;
    height: 40px;
  }

  .custom-properties-slider-section .custom-slider-arrow-prev {
    left: 10px;
  }

  .custom-properties-slider-section .custom-slider-arrow-next {
    right: 10px;
  }


  .custom-properties-slider-section .slick-list,
  .custom-properties-slider-section .slick-track {
    min-height: 620px;
  }

  .custom-properties-slider-section .custom-properties-slide > .container {
    padding: 26px 14px;
    align-items: flex-end;
  }

  .custom-properties-slider-section .custom-properties-card {
    padding: 24px 20px 18px;
  }

  .custom-properties-slider-section .custom-properties-list {
    grid-template-columns: 1fr;
  }

}

/* ===== BENEFITI (MODERNO) ===== */
.custom-properties-slider-section .custom-properties-list.modern-benefits{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 12px;
  margin-top: 18px;
  padding: 0;
  list-style: none;
}

.custom-properties-slider-section .custom-properties-list.modern-benefits li{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(47,53,58,.10);
  background: rgba(241,239,233,.55);
  color: var(--brand-frame);
  font-weight: 600;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}

.custom-properties-slider-section .custom-properties-list.modern-benefits li span{
  flex: 1;
  line-height: 1.35;
}

.custom-properties-slider-section .custom-properties-list.modern-benefits li .fa-check{
  width: 18px;
  text-align: center;
  color: var(--brand-green) !important;
  transition: transform .22s ease;
}

.custom-properties-slider-section .custom-properties-list.modern-benefits li:hover{
  transform: translateY(-2px);
  background: #fff;
  border-color: rgba(111,143,58,.35);
  box-shadow: 0 10px 24px rgba(0,0,0,.10);
}

.custom-properties-slider-section .custom-properties-list.modern-benefits li:hover .fa-check{
  transform: scale(1.12);
}


/* HERO IMAGE UMESTO VIDEA */

.custom-hero-image {
    position: absolute;
    inset: 0;
    background-image: url('/Uz stan se dobija parking mesto.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 1;
}

/* Overlay ostaje iznad slike */
.custom-video-dark-overlay {
    z-index: 2;
}

/* Tekst ostaje iznad svega */
.custom-video-overlay-heading {
    position: relative;
    z-index: 3;
}

/* mobilni */
@media (max-width: 767px){
  .custom-properties-slider-section .custom-properties-list.modern-benefits{
    grid-template-columns: 1fr;
  }
  
  .custom-properties-slider-section .custom-properties-card{
      padding: 24px 20px 18px;
        z-index: 99999999999;
        top: 10px;
  }
  
  .custom-properties-slider-section .custom-properties-slide{
      position: relative;
    min-width: 100%;
    flex: 0 0 100%;
    background-position: top;
    background-size: contain;
    background-repeat: no-repeat;
  }
  .custom-properties-slider-section .custom-properties-slide > .container{
      height: 900px;
  }
  .elementor-9709 .elementor-element.elementor-element-8a08491 > .elementor-element-populated {
    padding: 10px 10px 10px 10px;
}

.elementor-9709 .elementor-element.elementor-element-171ac74 > .elementor-element-populated{
        transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    padding: 0px 0px 0px 10px;
}

.elementor-9709 .elementor-element.elementor-element-0dcc29d .elementor-heading-title{
        font-size: 40px;

}

.elementor-9709 .elementor-element.elementor-element-cde8180 p{
    text-align: left!important;
    font-size: 24px;
}
  
  
  .custom-properties-slider-section .custom-properties-card p {
    color: #4d4d4d;
    height: 190px;
}

.elementor-background-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center; /* možeš menjati */
}

.custom-properties-slider-section .custom-properties-card h2 {
    margin-top: 6px;
    height: 60px;
}
.elementor-element-8c61828{
    margin-bottom:0px!important;
}

/* 2 kolone */
  .location-stats .elementor-container {
      display: flex !important;
      flex-wrap: wrap !important;
  }

  .location-stats .elementor-column {
      width: 50% !important;
      max-width: 50% !important;
      flex: 0 0 50% !important;
      padding: 10px 5px;
  }

  /* Smanji razmak između naziva i broja */
  .location-stats .elementor-icon-box-description {
      margin-bottom: 5px !important;
      font-size: 14px;
  }

  .location-stats .elementor-counter-number-wrapper {
      margin-top: 0px !important;
  }

  /* Centriraj sve lepo */
  .location-stats .elementor-widget-wrap {
      text-align: center;
  }
  .elementor-element .elementor-icon {
    font-size: 60px!important;
}
.elementor-element-b992e9f{
    margin-block: 0px!important;
}

.pusiga h2{
    text-align: right!important;
}

.jebiga{
    text-align: right;
    top: -30px;
}

.kocitauletikita{
        text-align: center;
    top: -30px;
}

.main-navigation{
    background-color: #012d5a !important;
}
.menu-toggle{
    font-size:30px!important;
}

.kitalabava{
        top: -60px!important;
}
.elementor-element-ac51ee4 p{
    color:black!important;

}

.elementor-9709 .elementor-element.elementor-element-3e0b8a2:not(.elementor-motion-effects-element-type-background){
    background-color: transparent;
}

}
.pusiga h2{
    text-align: center!important;
}

 .jebiga .elementor-widget-container{      width: 100%!important;
    display: block!important;  text-align: center;}

.jebiga{
    text-align: right;
    top: -30px;
}
.kocitauletikita{
        text-align: center;
    top: -30px;
}
.kocitauletikita .elementor-widget-container{      width: 100%!important;
    display: block!important;  text-align: center;}
.kitalabava{
        top: -40px!important; text-align: center;
}
.kitalabava .elementor-widget-container{      width: 100%!important;
    display: block!important;  text-align: center;}
    .elementor-element-ac51ee4 p{
    color:black!important;

}

.elementor-9709 .elementor-element.elementor-element-3e0b8a2:not(.elementor-motion-effects-element-type-background){
    background-color: transparent;
}

/* ======================================================
   nemanja drkao css
   ====================================================== */
   
