/* ============================================
   LINUM BROW — Header Styles
   Dodaj u: Appearance > Additional CSS
   ili u child theme style.css
   ============================================ */

/* --- CSS Varijable --- */
:root {
  --color-bg:           #F8F6F6;
  --color-btn-primary:  #523626;
  --color-btn-light:    #F5EFEA;
  --color-text:         #523626;
  --color-text-nav:     #3a2a1e;


  --font-main: 'Montserrat', sans-serif;
  --font-weight-nav: 500;
  --font-size-nav: 18px;

  --header-height-desktop: 90px;
  --header-height-mobile:  100px;

  --transition: 0.25s ease;
  --radius-btn: 12px;

    --hero-title-font: "Manrope", sans-serif;
  --hero-title-weight: 400;
  --hero-title-size: 64px;
  --hero-title-lh: 1.16;

  --hero-text-font: "Poppins", sans-serif;
  --hero-text-weight: 400;
  --hero-text-size: 22px;
  --hero-text-lh: 1.45;

  --hero-gap: 32px;

   --services-head-width: 600px;
}

/* --- Reset & Base --- */
#site-header *,
#site-header *::before,
#site-header *::after {
  box-sizing: border-box;

}
body{
    margin: 0;
   
}

/* --- Header wrapper --- */
#site-header {
   background: rgba(248, 246, 246, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(82, 54, 38, 0.1);
  
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1000;
  
}


/* --- Inner container --- */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto;
  padding: 10px 100px;
  height: var(--header-height-desktop);
  gap: 32px;
}

/* --- Logo --- */
.brand {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  text-decoration: none;
}

/* the_custom_logo() generira <img> unutar <a> koji je unutar našeg .brand <a>
   WP wrapper link sakrij, sliku prikaži direktno */
.brand .custom-logo-link {
  display: flex;
  align-items: center;
}

.brand img,
.brand .custom-logo {
  height: 95px;
  width: auto;
  max-width: 109px;
  display: block;
  object-fit: contain;
}

/* --- Nav (desktop) --- */
.header-nav {
  display: flex;
  align-items: center;
  gap: 40px;
  flex: 1;
  justify-content: end;
}

.header-nav a {
  font-family: var(--font-main);
  font-weight: var(--font-weight-nav);
  font-size: var(--font-size-nav);
  line-height: 1;
  letter-spacing: 0;
  color: var(--color-text-nav);
  text-decoration: none;
  white-space: nowrap;
  transition: opacity var(--transition);
}

.header-nav a:hover {
  opacity: 0.65;
}

/* --- Actions group (CTA + hamburger) --- */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  flex-shrink: 0;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-btn-primary);
  color: #fff;
  font-family: var(--font-main);
  font-size: var(--font-size-nav);
  line-height: 1;
  text-decoration: none;
  padding: 16px 24px;
  border-radius: var(--radius-btn);
  white-space: nowrap;
  transition: background-color var(--transition), transform var(--transition);
}

.btn-primary:hover {
  background-color: #3d2719;
  transform: translateY(-1px);
  color: #fff;
  text-decoration: none;
}

/* --- Hamburger (mobile only) --- */
.header-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
}

.header-hamburger span {
  display: block;
  width: 28px;
  height: 2.5px;
  background-color: var(--color-text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* Hamburger animacija — active state */
.header-hamburger.is-active span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}
.header-hamburger.is-active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.header-hamburger.is-active span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

/* --- Mobile menu (dropdown) --- */
.header-mobile-menu {
  position: fixed;
  
  left: 0;
  width: 100%;
  
  background: var(--color-bg);
  
  display: flex;
  flex-direction: column;
  padding: 100px 40px 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
    top: var(--header-height-mobile); /* ← počni ispod headera */
  height: calc(100dvh - var(--header-height-mobile));
  z-index: 998;
}

.header-mobile-menu.is-open {
  opacity: 1;
  pointer-events: all;
}

/* Nav linkovi */
.header-mobile-menu a {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(82,54,38,0.1);
  text-decoration: none;
  transition: padding-left 0.3s ease;
  position: relative;
}

.header-mobile-menu a:first-child {
  border-top: 1px solid rgba(82,54,38,0.1);
}

.header-mobile-menu a:hover {
  padding-left: 12px;
  opacity: 1;
}

/* Broj ispred linka */
.header-mobile-menu a::before {
  content: attr(data-num);
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: rgba(82,54,38,0.4);
  letter-spacing: 1px;
  min-width: 28px;
  transition: color 0.2s;
}

.header-mobile-menu a:hover::before {
  color: #523626;
}

/* Tekst linka */
.header-mobile-menu a span {
  font-family: "Manrope", sans-serif;
  font-size: 36px;
  font-weight: 500;
  color: #2b2b2b;
  letter-spacing: -0.5px;
  line-height: 1;
  transition: color 0.2s;
}

.header-mobile-menu a:hover span {
  color: #523626;
}

/* Strelica */
.header-mobile-menu a::after {
  content: '→';
  margin-left: auto;
  font-size: 20px;
  color: rgba(82,54,38,0.3);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.2s, transform 0.2s;
}

.header-mobile-menu a:hover::after {
  opacity: 1;
  transform: translateX(0);
}

/* CTA gumb unutar menija */
.header-mobile-menu .menu-cta {
  display: inline-flex;
  align-items: center;
  background: #523626;
  color: #fff;
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  margin-top: auto;
  width: fit-content;
  transition: background 0.2s;
  border: none;
  border-top: none;
}

.header-mobile-menu .menu-cta::before,
.header-mobile-menu .menu-cta::after {
  display: none; /* makni pseudo elemente na CTA */
}

.header-mobile-menu .menu-cta:hover {
  background: #3d2719;
  padding-left: 28px; /* override hover pomaka */
}
.header-mobile-menu {
  padding: 40px 40px 40px; /* ← bez 100px top paddinga */
}
@media (min-width: 601px) {
  .header-mobile-menu {
    top: var(--header-height-desktop);
    height: calc(100dvh - var(--header-height-desktop));
  }
}


/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet: sakrij nav linkove, pokaži hamburger */
@media (max-width: 900px) {
  .header-nav {
    display: none;
  }

  .header-inner {
    gap: 12px;
  }

  .header-hamburger {
    display: flex;
  }
}

/* Mobile: prilagodi visinu i padding */
@media (max-width: 600px) {
  .header-inner {
    height: var(--header-height-mobile);
    padding: 0 20px;
    gap: 16px;
  }

  /* ← OVO NEDOSTAJE — smanji logo na mobu */
  .brand img,
  .brand .custom-logo,
  .brand__logo {
        height: 74px;
        max-width: 80px;

  }

  .btn-primary {
    font-size: 14px;
    padding: 12px 16px;
  }

  .header-hamburger {
    width: 44px;
    height: 44px;
  }
}

/* sekcija HERO */
.hero {
  background: var( --color-bg);
  overflow: hidden;
}

/* ← ISPRAVLJENO: bilo .hero__inner, sad .hero__container I .hero__inner */
.hero__container,
.hero__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 0 0 100px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  align-items: center;
  min-height: 600px;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: var(--hero-gap);
  max-width: 560px;

}

.hero__title {
  margin: 0;
  font-family: var(--hero-title-font);
  font-weight: var(--hero-title-weight);
  font-size: var(--hero-title-size);
  line-height: var(--hero-title-lh);
  color: #2b2b2b;
}

/* ← ISPRAVLJENO: hero__subtitle → hero__text + dodan hero__subtitle alias */
.hero__text,
.hero__subtitle {
  margin: 0;
  font-family: var(--hero-text-font);
  font-weight: var(--hero-text-weight);
  font-size: var(--hero-text-size);
  line-height: var(--hero-text-lh);
  color: #2b2b2b;
  opacity: .9;
}

/* ← ISPRAVLJENO: btn stilovi nedostajali */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 16px;
  padding: 14px 16px;
  border-radius: var(--radius-btn);
  text-decoration: none;
  width: fit-content;
  transition: background-color var(--transition), transform var(--transition);
  cursor: pointer;
  border: none;
}

.btn--primary {
  background-color: var(--color-btn-primary);
  color: #fff;
}

.btn--primary:hover {
  background-color: #3d2719;
  transform: translateY(-1px);
  color: #fff;
  text-decoration: none;
}

/* desna slika */
.hero__media {
  height: 100%;
  min-height: 520px;   /* ← minimalni fallback */
  position: relative;
  overflow: hidden;
  align-self: stretch; /* ← rastegni na punu visinu grid ćelije */
}

.hero__img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  
  transform-origin: center;
}

/* Responsive */
@media (max-width: 900px) {
  .hero__container,
  .hero__inner {
    padding: 100px 0 0 20px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    min-height: unset;
  }
    .hero__media {
    height: 360px;
    min-height: unset; /* ← makni min-height na tabu */
    align-self: auto;
  }

  .hero__content {
    padding-right: 0;
    max-width: 100%;
  }

  .hero__media {
    height: 360px;
  }
}

@media (max-width: 600px) {
  .hero__title  { font-size: 40px; }
  .hero__text,
  .hero__subtitle { font-size: 18px; }
  .btn,
  .btn--primary {
    font-size: 14px;
    padding: 12px 16px;
  }
}

@media (max-width: 400px) {
  .hero__media {
    height: 290px;
  }}

/*-- USLUGA STIL --*/
.services__container{
  max-width:1440px;
  margin:0 auto;
  padding:100px;
}

.services__head{
  max-width:680px;
  margin-bottom:56px;
}

.services__grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}



.service-card{
  background:#F5EFEA;
  border-radius:22px;
  overflow:hidden;
}

.service-card__media img{
  width:100%;
  height:210px;
  object-fit:cover;
  display:block;
}
.service-card__title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.service-card__arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #F5EFEA;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #523626;
  flex-shrink: 0;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.service-card:hover .service-card__arrow {
  opacity: 1;
  transform: scale(1);
}

.service-card__body{ padding:20px; }
.service-card__title{ margin:0 0 10px; }
.service-card__text{ opacity:.9; }

.service-card__link{
  display:inline-flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  font-weight:600;
}
a.service-card,
a.service-card:hover,
a.service-card:visited {
  text-decoration: none;
  color: inherit;
}

.services__head{
  max-width: var(--services-head-width);
}

/* Title */
.services__title{
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 54px;
  line-height: 1.25; /* 125% */
  letter-spacing: 0;
  color: #212121;
  margin: 0 0 24px;
}

/* Intro */
.services__intro{
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.45; /* 145% */
  letter-spacing: 0;
  color: #1D1D1D;
  margin: 0;
}

/* Card title */
.service-card__title{
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 23px;
  line-height: 1.45; /* 145% */
  letter-spacing: 0;
  color: #000000;
  margin: 0 0 8px;
}

/* Card text */
.service-card__text{
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.45; /* 145% */
  letter-spacing: 0;
  color: #282828;
  margin: 0;
}

/* Card link */
.service-card__link{
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.45; /* 145% */
  letter-spacing: 0;
  color: #563B2A;
}
@media (max-width: 900px){
  .services__grid{ grid-template-columns:1fr; }
  .services__container{
    padding: 80px 20px;
  }
  .services__title{
    font-size: 32px;
  }

  .services__intro{
    font-size: 15px;
  }

  /* Card */
  .service-card__title{
    font-size: 20px;
  }

  .service-card__text{
    font-size: 14px;
  }

  .service-card__link{
    font-size: 13px;
  }
  .services__head{
    margin-bottom: 42px;
  }
}


/* ============================================
   PRIJE & POSLIJE — Slider
   ============================================ */

.pp-section {
  overflow: hidden;
}

.pp-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 100px 100px;
}

/* Head: tekst lijevo, strelice desno */
.pp-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px;
}

.pp-head__text {
  max-width: 520px;
}

.pp-title {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 54px;
  line-height: 1.25;
  color: #212121;
  margin: 0 0 16px;
}

.pp-intro {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.55;
  color: #1D1D1D;
  margin: 0;
}

/* Strelice */
.pp-arrows {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.pp-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.pp-arrow--prev {
  background-color: #EDDDD4;
  color: var(--color-text);
}

.pp-arrow--next {
  background-color: var(--color-btn-primary);
  color: #fff;
}

.pp-arrow:hover {
  opacity: 0.8;
}

.pp-arrow:disabled {
  opacity: 0.35;
  cursor: default;
}

/* Track wrapper — clip */
.pp-track-wrapper {
  overflow: visible; /* makni clip */
  margin: 0 -100px; /* negativni margin = izlazi van */
  padding: 0 100px; /* ali sadržaj počinje na 100px */
  overflow-x: clip; /* sakrij samo horizontalni overflow */
}

.pp-track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s ease;
  will-change: transform;
}

/* Kartica */
.pp-card {
  flex: 0 0 calc(50% - 12px); /* 2 kartice vidljive */
  background: #F5EFEA;
  max-width: 599px;
  border-radius: 22px;
  overflow: hidden;
}

.pp-card__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.pp-card__images img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.pp-card__caption {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #282828;
  padding: 16px 20px;
  margin: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 900px) {
  .pp-container {
    padding: 0 20px 80px 20px;
  }

  .pp-title {
    font-size: 32px;
  }

  .pp-intro {
    font-size: 15px;
  }

  /* Na mobu: 1 kartica cijela širina */
  .pp-card {
    flex: 0 0 100%;
  }

  .pp-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 32px;
  }
}

@media (max-width: 600px) {
  .pp-card__images img {
    height: 180px;
  }
    .pp-track-wrapper {
    margin: 0 -20px;
    padding: 0 20px;
  }
    .pp-arrow {
    width: 40px;
    height: 40px;
    
  }
}

/* ============================================
   RECENZIJE — Slider
   ============================================ */

.reviews-section {
  background-color: var(--color-btn-primary);
  overflow-x: clip;
}

.reviews-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 100px;
}

.reviews-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px;
}

.reviews-head__text {
  max-width: 520px;
}

.reviews-title {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 54px;
  line-height: 1.25;
  color: #fff;
  margin: 0 0 16px;
}

.reviews-intro {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255,255,255,0.75);
  margin: 0;
}

/* Strelice */
.reviews-arrows {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.reviews-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.25s ease;
}

.reviews-arrow--prev {
  background-color: rgba(255,255,255,0.15);
  color: #fff;
}

.reviews-arrow--next {
  background-color: #fff;
  color: var(--color-btn-primary);
}

.reviews-arrow:hover { opacity: 0.8; }
.reviews-arrow:disabled { opacity: 0.35; cursor: default; }

/* Track */
.reviews-track-wrapper {
  overflow: visible;
  
  margin: 0 -100px;
  padding: 0 100px;
}

.reviews-track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s ease;
  will-change: transform;
}

/* Kartica */
.review-card {
  flex: 0 0 calc(33.333% - 20px);
  background: #F5EFEA;
  border-radius: 22px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
    padding-bottom: 4px;
  border-bottom: 1px solid rgba(82, 54, 38, 0.15);
}

.review-card__name {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: #212121;
}

.review-card__quote {
  font-family: Georgia, serif;
  font-size: 48px;
  line-height: 1;
  color: var(--color-btn-primary);
  opacity: 0.4;
  margin-top: -8px;
}

.review-card__text {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #282828;
  margin: 0;
  flex: 1;
}

.review-card__stars {
  display: flex;
  gap: 4px;
}

.review-card__star {
  font-size: 20px;
  color: #ddd;
}

.review-card__star.is-filled {
  color: #C47B3A;
}

/* Responsive */
@media (max-width: 900px) {
  .reviews-container {
    padding: 80px 20px;
  }

  .reviews-title { font-size: 32px; }
  .reviews-intro { font-size: 15px; }

  .review-card {
    flex: 0 0 calc(80% - 12px);
  }

  .reviews-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    margin-bottom: 32px;
  }

  .reviews-track-wrapper {
    margin: 0 -20px;
    padding: 0 20px;
  }
}

@media (max-width: 600px) {
  .review-card {
    flex: 0 0 calc(90% - 12px);
  }
    .reviews-arrow {
    width: 40px;
    height: 40px;
    
  }
}

/* ============================================
   CTA BANNER
   ============================================ */

.cta-banner {
  position: relative;
  z-index: 2;
  padding: 0 100px;
  margin-bottom: -80px; /* "ulazi" u footer */
}

.cta-banner__inner {
  max-width: 1240px;
  margin: 0 auto;
  background-color: var(--color-btn-primary);
  border-radius: 28px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 380px;
}

.cta-banner__content {
  padding: 42px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.cta-banner__title {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 1.2;
  color: #fff;
  margin: 0;
}

.cta-banner__text {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255,255,255,0.8);
  margin: 0;
}

.cta-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: var(--color-btn-primary);
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 14px;
  padding: 15px;
  border-radius: var(--radius-btn);
  text-decoration: none;
  width: fit-content;
  transition: opacity 0.25s ease;
}

.cta-banner__btn:hover {
  opacity: 0.85;
  text-decoration: none;
  color: var(--color-btn-primary);
}

.cta-banner__media {
  overflow: hidden;
}

.cta-banner__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background-color: #F5EFEA;
  position: relative;
  z-index: 1;
  padding-top: calc(80px + 60px); /* kompenzira banner overlap + razmak */
}

.site-footer__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 100px 60px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 80px;
  align-items: start;
}

/* Logo */
.site-footer__logo .custom-logo-link {
  display: inline-flex;
}

.site-footer__logo img {
  height: 120px;
  width: auto;
  display: block;
}

/* Nav & kontakt kolone */
.site-footer__nav,
.site-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.site-footer__nav-title {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--color-btn-primary);
  margin-bottom: 4px;
}
.site-footer__nav-title{
    color:var(--color-btn-primary);
}

.site-footer__nav a,
.site-footer__contact a,
.site-footer__contact span {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #3a2a1e;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.site-footer__nav a:hover,
.site-footer__contact a:hover {
  opacity: 0.65;
}

/* Bottom bar */
.site-footer__bottom {
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px 100px;
  border-top: 1px solid rgba(82, 54, 38, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-footer__bottom span {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #3a2a1e;
  opacity: 0.7;
}

.site-footer__bottom a {
  color: var(--color-btn-primary);
  display: flex;
  transition: opacity 0.2s ease;
}

.site-footer__bottom a:hover {
  opacity: 0.65;
}
.site-footer__logo .brand__logo {
  height: 120px;
  width: auto;
  display: block;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 900px) {
  .cta-banner {
    padding: 0 20px;
    margin-bottom: -60px;
  }

  .cta-banner__inner {
    grid-template-columns: 1fr;
    min-height: unset;
  }

  .cta-banner__media {
    height: 260px;
    order: -1; /* slika gore na mobu */
  }

  .cta-banner__content {
    padding: 40px 28px;
  }

  .cta-banner__title {
    font-size: 32px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px 48px;
  }

  .site-footer__bottom {
    padding: 20px;
  }

  .site-footer {
    padding-top: calc(60px + 48px);
  }
}

/* ============================================
   O MENI
   ============================================ */

.about {
  background-color: #fff;
}

.about__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 120px 100px;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

.about__content {
  display: flex;
  flex-direction: column;
  gap: 56px;
  max-width: 520px;
}

.about__intro {
  display: flex;
  flex-direction: column;
  gap: 24px; /* mali razmak između naslova i teksta */
}

.about__title {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 54px;
  line-height: 1.25;
  color: #212121;
  margin: 0;
}

.about__text {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: #1D1D1D;
  margin: 0;
}

.about__media {
  border-radius: 28px;
  overflow: hidden;
}

.about__img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Responsive */
@media (max-width: 900px) {
  .about__container {
    padding: 80px 20px;
  }

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

  .about__content {
    max-width: 100%;
  }

  .about__title {
    font-size: 32px;
  }

  .about__text {
    font-size: 16px;
  }

  .about__img {
    height: 420px;
  }
}



.about__features {
  display: flex;
  flex-direction: column;
  gap: 44px;
  margin-top: 8px;
}

.about__feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.about__feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #F5EFEA;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about__feature-title {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #212121;
  margin: 0 0 8px;
}

.about__feature-text {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  color: #1D1D1D;
  margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .about__features {
    gap: 32px;
  }

  .about__feature-title {
    font-size: 18px;
  }

  .about__feature-text {
    font-size: 14px;
  }
}