/* ===============================
   DEFINIRANJE VARIJABLI (boje, sjene, zaobljenja)
   =============================== */
:root {
  --bg: #fff9fb;                /* svijetla ružičasta pozadina stranice */
  --card: #ffffff;              /* bijela pozadina za kartice i blokove */
  --ink: #2b2b2b;               /* tamna boja teksta */
  --muted: #6b6b6b;             /* siva boja za sekundarni tekst (opisni) */
  --brand: #e8a4c7;             /* glavna brend boja (pastelno roza) */
  --brand-strong: #cf6fa5;      /* jača nijansa roze, koristi se na hoveru */
  --shadow: 0 6px 20px rgba(0,0,0,.06); /* meka sjena za dubinu elemenata */
  --radius: 20px;               /* univerzalno zaobljenje rubova */
}

/* ===============================
   OSNOVNE POSTAVKE ZA SVE ELEM.
   =============================== */
* {
  box-sizing: border-box;       /* uključuje padding i border u ukupnu širinu elementa */
}

html {
  scroll-behavior: smooth;      /* glatko skrolanje između sekcija */
}

/* ===============================
   GLOBALNE POSTAVKE ZA STRANICU
   =============================== */
html, body {

  margin: 0;                    /* uklanja defaultni razmak oko stranice */
  padding: 0;                   /* uklanja unutarnji razmak */
  background: var(--bg);        /* postavlja definiranu svijetlu pozadinu */
  color: var(--ink);            /* glavna boja teksta */
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, "Helvetica Neue", Arial, sans-serif; /* moderan sans-serif font */
}

/* ===============================
   POSTAVKE ZA SLIKE
   =============================== */
img {
  max-width: 100%;              /* slike se ne protežu šire od roditelja */
  display: block;               /* uklanja praznine ispod inline slika */
  border-radius: var(--radius); /* blago zaobljeni rubovi slika */
}


/* ===============================
   LINKOVI
   =============================== */
a {
  color: inherit;               /* preuzima boju teksta iz roditelja */
  text-decoration: none;        /* uklanja podcrtavanje */
}

/* ===============================
   GLAVNI KONTEJNER STRANICE
   =============================== */
.container {
  width: min(95vw, 1100px);     /* maksimalna širina 1100px, inače 95% širine ekrana */
  margin-inline: auto;          /* centrira sadržaj vodoravno */
  padding: 0 0.75rem;           /* unutarnji razmak sa strane */
}

@media (min-width: 640px) {
  .container {
    padding: 0 1rem;
  }
}

/* ===============================
   GUMBI (BTN)
   =============================== */
.btn {
  appearance: none;             /* uklanja defaultni izgled gumba ovisno o pregledniku */
  border: none;                 /* uklanja rub */
  background: var(--brand);     /* pastelno roza pozadina */
  color: #fff;                  /* bijeli tekst */
  padding: 0.7rem 1rem;         /* manji unutarnji razmak za male ekrane */
  border-radius: 999px;         /* potpuno zaobljen (pilula oblik) */
  font-weight: 600;             /* deblji tekst */
  font-size: 0.9rem;            /* manji font za male ekrane */
  cursor: pointer;              /* pokazivač ruke kad se pređe mišem */
  box-shadow: var(--shadow);    /* dodaje meku sjenu */
  transition: 0.2s;             /* glatka animacija za hover */
  display: inline-block;        /* omogućuje da se ponaša kao inline element, ali s dimenzijama */
  text-align: center;           /* centriran tekst */
}

@media (min-width: 640px) {
  .btn {
    padding: 0.9rem 1.2rem;
    font-size: 1rem;
  }
}

div .btn {
  margin: 0.3rem;
}

/* Efekt kad pređeš mišem preko gumba */
.btn:hover {
  transform: translateY(-2px);  /* lagano podiže gumb (vizualni klik efekt) */
  background: var(--brand-strong); /* tamnija nijansa roze */
}

/* Gumb s obrubom i bijelom pozadinom */
.btn-outline {
  background: #fff;             /* bijela pozadina */
  color: var(--brand);          /* rozi tekst */
  border: 2px solid var(--brand); /* rozi obrub */
}

/* ===============================
   HEADER I NAVIGACIJA
   =============================== */
header {
  top: 0;                       /* pozicioniran na vrhu stranice */
  position: sticky;             /* ostaje zalijepljen na vrhu prilikom skrolanja */
  background: rgba(255, 255, 255, 0.9); /* prozirna bijela pozadina */
  z-index: 20;                  /* sloj iznad ostalih elemenata */
  border-bottom: 1px solid #f2e6ee; /* tanka svijetla linija ispod headera */
  
}

/* Glavna navigacija unutar headera */
.nav {
  display: flex;                /* koristi fleks kutije */
  flex-direction: row;          /* elementi idu u red */
  justify-content: space-between; /* razmak između elemenata */
  align-items: center;          /* centrirano po sredini */
  padding: 0.75rem 0;           /* manji razmak za male ekrane */
  gap: 0.4rem;                  /* manji razmak između linkova */
  position: relative;
}

@media (min-width: 640px) {
  .nav {
    padding: 1rem 0;
    gap: 0.6rem;
  }
}

/* Navigacija */
nav {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

/* Burger menu - sakriven na većim ekranima */
.burger-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 30;
}

.burger-menu span {
  width: 25px;
  height: 3px;
  background-color: var(--brand-strong);
  border-radius: 3px;
  transition: all 0.3s ease;
}

@media (max-width: 400px) {
  .burger-menu {
    padding: 8px;
  }
  
  .burger-menu span {
    width: 22px;
    height: 2.5px;
  }
}

/* Animacija burger ikone kada je otvorena */
.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
  opacity: 0;
}

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobilni prikaz - burger meni */
@media (max-width: 768px) {
  .burger-menu {
    display: flex;
  }
  
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    justify-content: flex-start;
    padding: 70px 15px 20px;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 25;
    overflow-y: auto;           /* omogući skrolanje ako ima puno sadržaja */
  }
  
  nav.active {
    right: 0;
  }
  
  nav a {
    width: 100%;
    text-align: center;
    padding: 12px;
    border-bottom: 1px solid #f2e6ee;
    font-size: 0.9rem;
  }
  
  nav a.btn {
    margin-top: 10px;
    border-bottom: none;
  }
  
  /* Mobilni tretmani u burger meniju */
  .mobile-services {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 10px 0;
    padding: 10px 0;
    border-top: 2px solid var(--brand);
    border-bottom: 2px solid var(--brand);
  }
  
  .service-link-mobile {
    width: 100%;
    text-align: center;
    padding: 10px;
    font-size: 0.8rem;
    color: var(--ink);
    font-weight: 500;
    background: var(--bg);
    border-radius: 8px;
    margin: 3px 0;
    transition: all 0.2s ease;
    text-decoration: none;
  }
  
  .service-link-mobile:hover {
    background: var(--brand);
    color: white;
  }
}

@media (max-width: 400px) {
  nav {
    width: 85%;
    padding: 65px 12px 20px;
  }
  
  nav a {
    padding: 10px;
    font-size: 0.85rem;
  }
  
  .service-link-mobile {
    padding: 9px;
    font-size: 0.75rem;
  }
}

/* Sakrij mobilne tretmane na većim ekranima */
@media (min-width: 769px) {
  .mobile-services {
    display: none;
  }
}

/* ===============================
   SERVICES LINKS (Hero sekcija)
   =============================== */
.services-links {
  display: grid;
  grid-template-columns: 1fr; /* 1 kolona na mobitelu */
  gap: 8px;
  margin-top: 15px;
  max-width: 900px;
  margin-inline: auto;
}

.service-btn {
  font-size: 0.8rem;
  padding: 0.6rem 0.8rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 400px) {
  .services-links {
    gap: 10px;
    margin-top: 18px;
  }
  
  .service-btn {
    font-size: 0.85rem;
    padding: 0.65rem 0.9rem;
  }
}

/* Tablet - 2 kolone */
@media (min-width: 480px) {
  .services-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop - 3 kolone */
@media (min-width: 768px) {
  .services-links {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
  
  .service-btn {
    font-size: 0.9rem;
    padding: 0.75rem 1rem;
  }
}

/* Veliki ekrani - 4 kolone za kraće buttone */
@media (min-width: 1024px) {
  .services-links {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

/* Dio koji sadrži logo i naziv brenda */
.brand {
  display: flex;                /* postavlja elemente u red */
  align-items: center;          /* vertikalno centriranje loga i teksta */
  gap: 0.4rem;                  /* manji razmak za male ekrane */
}

.brand a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

@media (min-width: 640px) {
  .brand {
    gap: 0.6rem;
  }
  
  .brand a {
    gap: 0.8rem;
  }
}

.brand-name {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brand-strong);
  display: block; /* Vidljiv na svim ekranima */
}

@media (min-width: 480px) {
  .brand-name {
    font-size: 1.3rem;
  }
}

@media (min-width: 640px) {
  .brand-name {
    font-size: 1.4rem;
  }
}

@media (min-width: 768px) {
  .brand-name {
    font-size: 1.8rem; /* Veći font na većim ekranima */
  }
}

/* Services bar - horizontalna traka tretmana */
.services-bar {
  display: none;                /* sakriveno na mobilnim i tabletima */
  background: var(--card);
  border-bottom: 2px solid var(--brand);
  padding: 0.8rem 0;
  overflow-x: auto;
}

/* Prikaži samo na većim ekranima (desktop) */
@media (min-width: 1024px) {
  .services-bar {
    display: block;
  }
}

.services-scroll {
  display: flex;
  gap: 1rem;
  padding: 0 1rem;
  white-space: nowrap;
  max-width: 1100px;
  margin: 0 auto;
}

.service-link {
  color: var(--ink);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  background: var(--bg);
  transition: all 0.2s ease;
  text-decoration: none;
  border: 1px solid transparent;
}

.service-link:hover {
  background: var(--brand);
  color: white;
  transform: translateY(-2px);
  border-color: var(--brand-strong);
}

/* Stil za logo sliku */
.logo {
  width: 50px;                  /* manja širina za male ekrane */
  height: 50px;                 /* manja visina za male ekrane */
  border-radius: 50%;           /* kružni logo */
  object-fit: cover;            /* slika popunjava okvir bez deformacije */
}

@media (min-width: 480px) {
  .logo {
    width: 60px;
    height: 60px;
  }
}

@media (min-width: 768px) {
  .logo {
    width: 72px;
    height: 72px;
  }
}

/* Linkovi u navigaciji */
.nav a {
  font-weight: 600;             /* zadebljani tekst */
  padding: 0.3rem 0.6rem;       /* unutarnji razmak oko linka */
}

/* ===============================
   HERO SEKCIJA (naslovna)
   =============================== */
.hero-section {
  padding: 1.5rem 0;
  text-align: center;
  background: linear-gradient(135deg, #fff9fb 0%, #ffffff 100%);
  border-radius: 12px;
  margin: 1rem 0;
}

@media (min-width: 640px) {
  .hero-section {
    padding: 2.5rem 0;
    border-radius: var(--radius);
    margin: 1.5rem 0;
  }
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media (min-width: 640px) {
  .hero-content {
    padding: 0 1rem;
  }
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.75rem, 5vw, 3.5rem);
  color: var(--brand-strong);
  margin-bottom: 0.75rem;
  font-weight: 700;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: clamp(1rem, 3vw, 1.5rem);
  color: var(--ink);
  margin-bottom: 1rem;
  font-weight: 500;
  line-height: 1.3;
}

.hero-description {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: justify;
}

@media (min-width: 640px) {
  .hero-title {
    margin-bottom: 1rem;
  }
  
  .hero-subtitle {
    margin-bottom: 1.5rem;
  }
  
  .hero-description {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
  }
}

.hero-buttons {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (min-width: 640px) {
  .hero-buttons {
    gap: 1rem;
  }
}

.btn-primary {
  background: var(--brand-strong);
  color: white;
}

/* ===============================
   FEATURED SERVICES
   =============================== */
.featured-services {
  padding: 2rem 0;
}

.section-subtitle {
  text-align: center;
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  margin-top: -0.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

@media (min-width: 640px) {
  .services-grid {
    gap: 1.5rem;
    margin-top: 1.5rem;
  }
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: var(--card);
  padding: 1.25rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #f3e7ef;
}

@media (min-width: 640px) {
  .service-card {
    padding: 1.5rem;
    border-radius: var(--radius);
  }
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.service-icon img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin: 0 auto;
}

.service-card h3 {
  font-family: "Playfair Display", serif;
  color: var(--brand-strong);
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.service-card p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-link-arrow {
  color: var(--brand-strong);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

.service-link-arrow:hover {
  color: var(--brand);
}

/* ===============================
   TEAM SECTION
   =============================== */
.team-section {
  padding: 2rem 0;
}

.team-description {
  text-align: center;
  color: var(--muted);
  max-width: 700px;
  margin: 1.5rem auto 0;
  line-height: 1.7;
  font-size: 1.05rem;
}

/* ===============================
   WHY US SECTION
   =============================== */
.why-us-section {
  padding: 2rem 0;
  background: linear-gradient(135deg, #fff9fb 0%, #ffffff 100%);
  border-radius: var(--radius);
  margin: 1.5rem 0;
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

@media (min-width: 480px) {
  .why-us-grid {
    gap: 1.25rem;
    margin-top: 1.25rem;
  }
}

@media (min-width: 640px) {
  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .why-us-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.why-card {
  background: white;
  padding: 1.25rem;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

@media (min-width: 640px) {
  .why-card {
    padding: 1.5rem;
    border-radius: 15px;
  }
}

.why-card:hover {
  transform: translateY(-5px);
}

.why-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.why-icon img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin: 0 auto;
}

.why-card h3 {
  color: var(--brand-strong);
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
}

.why-card p {
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.95rem;
}

/* ===============================
   CONTACT SECTION
   =============================== */
.contact-section {
  padding: 2rem 0;
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

@media (min-width: 480px) {
  .contact-cards {
    gap: 1.25rem;
    margin-top: 1.25rem;
  }
}

@media (min-width: 640px) {
  .contact-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .contact-cards {
    grid-template-columns: repeat(4, 1fr);
  }
}

.contact-card {
  background: linear-gradient(135deg, #fff5f9 0%, #ffffff 100%);
  padding: 1.25rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
  text-align: center;
  border: 2px solid var(--brand);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (min-width: 640px) {
  .contact-card {
    padding: 1.5rem;
    border-radius: var(--radius);
  }
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.contact-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact-icon img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin: 0 auto;
  border-radius: 0;
}

.contact-card h3 {
  font-family: "Playfair Display", serif;
  color: var(--brand-strong);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.contact-card p {
  color: var(--ink);
  line-height: 1.8;
  margin: 0.5rem 0;
}

.location-link {
  color: var(--brand-strong);
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.2s;
}

.location-link:hover {
  color: var(--brand);
}

.summer-hours {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.navigation-note {
  color: gray;
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

.shipping-note {
  color: grey;
  text-align: center;
}

/* Kartica za društvene mreže */
.social-card {
  background: linear-gradient(135deg, #fff5f9 0%, #ffffff 100%);
  border: 2px solid var(--brand);
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.5rem;
  align-items: center;
}

.social-link-compact {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  color: var(--ink);
}

.social-link-compact:hover {
  transform: translateX(5px);
}

.social-icon-small {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.social-link-compact span {
  color: var(--ink);
}

.social-link-compact:hover span {
  color: var(--brand-strong);
}

/* ===============================
   GALLERY SECTION
   =============================== */
.gallery-section {
  padding: 2rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 kolone na mobilnim */
  gap: 0.6rem;
  margin-top: 1rem;
}

@media (min-width: 480px) {
  .gallery-grid {
    gap: 0.8rem;
    margin-top: 1.25rem;
  }
}

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr); /* 3 kolone na tabletima */
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr); /* 4 kolone na desktopu */
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 1;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (min-width: 640px) {
  .gallery-item {
    border-radius: 15px;
  }
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* ===============================
   FAQ SECTION
   =============================== */
.faq-section {
  padding: 2rem 0;
}

.faq-container {
  max-width: 800px;
  margin: 1.5rem auto 0;
}

.faq-item {
  background: var(--card);
  border-radius: 10px;
  margin-bottom: 0.75rem;
  box-shadow: var(--shadow);
  border: 1px solid #f3e7ef;
  overflow: hidden;
}

@media (min-width: 640px) {
  .faq-item {
    border-radius: 12px;
    margin-bottom: 1rem;
  }
}

.faq-question {
  width: 100%;
  padding: 1rem 1.25rem;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
  transition: background 0.2s ease;
}

@media (min-width: 640px) {
  .faq-question {
    padding: 1.2rem 1.5rem;
    font-size: 1rem;
  }
}

.faq-question:hover {
  background: var(--bg);
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--brand-strong);
  transition: transform 0.3s ease;
  font-weight: 300;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.2rem;
}

.faq-answer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ===============================
   HERO SEKCIJA (STARA - BACKUP)
   =============================== */
.hero {
  display: flex;                /* koristi fleks raspored */
  flex-direction: column;       /* elementi idu jedan ispod drugog */
  gap: 1.5rem;                  /* razmak između njih */
  padding: 2rem 0;              /* razmak gore i dolje */
  text-align: center;           /* centriran tekst */
}

/* Glavni naslov */
.hero h1 {
  font-family: "Playfair Display", serif; /* elegantan serifni font */
  font-size: clamp(1.8rem, 6vw, 3rem);   /* automatski se prilagođava veličini ekrana */
  margin: 0.3rem 0;             /* mali razmak gore i dolje */
  line-height: 1.2;             /* gustoća teksta (kompaktno) */
}

/* Opis ispod naslova */
.hero p {
  color: var(--muted);          /* siva boja teksta */
  max-width: 50ch;              /* maksimalna širina (radi čitljivosti) */
  margin-inline: auto;          /* centrirano po sredini */
  font-size: 1rem;              /* normalna veličina teksta */
}

/* Kartica koja prikazuje slike, informacije ili poziv na akciju */
.hero-card {
  max-width: fit-content;
  background: var(--card);      /* bijela pozadina */
  border-radius: var(--radius); /* zaobljeni rubovi */
  padding: 1rem;                /* unutarnji razmak */
  box-shadow: var(--shadow);    /* meka sjena ispod kartice */
  display: flex;                /* fleks raspored */
  gap: 1rem;                    /* razmak između njih */
  align-items: center;          /* centrirano */
}

.hero-melem {
  max-width: 100%;
  background: var(--card);      /* bijela pozadina */
  border-radius: var(--radius); /* zaobljeni rubovi */
  padding: 1rem;                /* unutarnji razmak */
  box-shadow: var(--shadow);    /* meka sjena ispod kartice */
}

/* Grid za proizvode - mobilni: 1 kolona, laptop: 2 kolone */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 1.25rem;
}

@media (min-width: 640px) {
  .products-grid {
    gap: 1.75rem;
    margin-top: 1.75rem;
  }
}

@media (min-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Proizvod kartica */
.product-card {
  background: linear-gradient(135deg, #fff5f9 0%, #ffffff 100%);
  border-radius: 15px;
  padding: 1.25rem;
  box-shadow: var(--shadow);
  border: 2px solid var(--brand);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (min-width: 640px) {
  .product-card {
    border-radius: var(--radius);
    padding: 1.5rem;
    gap: 1rem;
  }
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.product-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  margin: 0;
  color: var(--brand-strong);
  text-align: center;
  line-height: 1.3;
}

.product-card p {
  flex: 1;
  margin: 0;
  line-height: 1.7;
  color: var(--muted);
  font-size: 0.95rem;
}

.product-image-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.product-image-section img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  border-radius: 12px;
  padding: 0;
  margin: 0;
  background: linear-gradient(135deg, #fff9fb 0%, #ffffff 100%);
}

@media (min-width: 480px) {
  .product-image-section img {
    width: 110px;
    height: 110px;
  }
}

@media (min-width: 640px) {
  .product-image-section img {
    width: 120px;
    height: 120px;
    border-radius: 15px;
  }
}

.product-image-section strong {
  font-size: 1.5rem;
  color: var(--brand-strong);
  font-weight: 700;
}


/* Webshop sekcija */
.webshop-section {
  padding: 3rem 0;
  scroll-margin-top: 80px;
}

.webshop-section .section-title {
  font-size: 2.2rem;
  color: var(--brand-strong);
  margin-bottom: 0.5rem;
}

.video-melem {
  width: 100%;
  max-width: 280px;
  height: auto;
  aspect-ratio: 4/3;
  border-radius: 12px;      /* zaobljeni rubovi */
  object-fit: cover;        /* da ispuni okvir bez crnih rubova */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: block;
  margin: 10px auto;
}

@media (min-width: 480px) {
  .video-melem {
    max-width: 320px;
    border-radius: 15px;
  }
}



/* ===============================
   SEKCIJE NA STRANICI
   =============================== */
section {
  padding: 1rem 0;              /* manji razmak za male ekrane */
}

@media (min-width: 640px) {
  section {
    padding: 1.5rem 0;
  }
}

/* Naslov svake sekcije (O nama, Usluge...) */
.section-title {
  font-family: "Playfair Display", serif; /* elegantan font */
  font-size: 1.5rem;            /* manji font za male ekrane */
  margin-top: 0;                /* uklonjen razmak iznad naslova */
  margin-bottom: 0.75rem;       /* manji razmak ispod naslova */
  text-align: center;           /* centrirano */
  line-height: 1.2;
}

@media (min-width: 640px) {
  .section-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
}

/* Klasa za sivi tekst (npr. opisi) */
.muted {
  color: var(--muted);          /* koristi sivu boju */
}

/* ===============================
   SEKCIJA "O NAMA"
   =============================== */
.about {
  display: flex;                /* koristi fleks raspored */
  flex-direction: column;       /* na mobitelu elementi idu jedan ispod drugog */
  gap: 1.5rem;                  /* razmak između blokova */
}

/* Kartica unutar sekcija (npr. info o salonu) */
.card {
  background: var(--card);      /* bijela pozadina */
  border-radius: 15px;          /* manji radius za male ekrane */
  padding: 0.85rem;             /* manji unutarnji razmak */
  box-shadow: var(--shadow);    /* meka sjena */
  border: 1px solid #f3e7ef;    /* svijetla ružičasta linija oko kartice */
}

@media (min-width: 640px) {
  .card {
    border-radius: var(--radius);
    padding: 1rem;
  }
}

/* ===============================
   SEKCIJA "USLUGE"
   =============================== */
.services {
  display: grid;                /* koristi CSS grid za raspored kartica */
  grid-template-columns: 1fr;   /* jedan stupac (na mobitelu) */
  gap: 1rem;                    /* razmak između kartica */
}

/* Cijena usluge */
.price {
  font-weight: 700;             /* podebljani tekst */
}

/* ===============================
   SEKCIJA "GALERIJA"
   =============================== */
.gallery {
  background: var(--card);      /* bijela pozadina */
  border-radius: var(--radius); /* zaobljeni rubovi */
  padding: 1rem;                /* unutarnji razmak */
  box-shadow: var(--shadow);    /* meka sjena ispod kartice */
  display: flex;                /* fleks raspored */
  flex-direction: row;       /* elementi jedan ispod drugog */
  gap: 1rem;                    /* razmak između njih */
  align-items: center;          /* centrirano */
}


/* ===============================
   FOOTER (podnožje)
   =============================== */
footer {
  padding: 1.5rem 0;            /* manji razmak za male ekrane */
  border-top: 1px solid #f2e6ee; /* linija iznad footera */
  color: var(--muted);          /* siva boja teksta */
  font-size: 0.85rem;           /* manji tekst za male ekrane */
  text-align: center;           /* centriran tekst */
  line-height: 1.6;
}

@media (min-width: 640px) {
  footer {
    padding: 2rem 0;
    font-size: 0.95rem;
  }
}
footer a {
  color: var(--brand);          /* rozi linkovi u footeru */
}


/* staff-row.css */
.staff-row{
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* uvijek 3 stupca */
  gap: 0.75rem;
  justify-items: center;
  padding: 0.5rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 480px) {
  .staff-row {
    gap: 1rem;
    padding: 0.75rem;
  }
}

@media (min-width: 640px) {
  .staff-row {
    gap: 1.5rem;
    padding: 1rem;
  }
}

/* estetski reset za figure */
.staff-card{
  width: 100%;
  max-width: 110px;
  text-align: center;
  background: transparent;
  transition: transform 0.3s ease;
}

@media (min-width: 480px) {
  .staff-card {
    max-width: 140px;
  }
}

@media (min-width: 640px) {
  .staff-card {
    max-width: 160px;
  }
}

@media (min-width: 768px) {
  .staff-card {
    max-width: 180px;
  }
}

.staff-card:hover {
  transform: translateY(-5px);
}

/* krug koji drži sliku */
.staff-card img{
  width: 100%;
  aspect-ratio: 1;
  max-width: 180px;
  object-fit: cover;      /* slika popunjava krug bez iskrivljenja */
  border-radius: 50%;
  display: block;
  overflow: hidden;
  border: 2px solid var(--brand); /* tanji okvir za male ekrane */
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 240ms ease, box-shadow 240ms ease, filter 240ms ease;
  cursor: pointer;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .staff-card img {
    border: 3px solid var(--brand);
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  }
}

@media (min-width: 768px) {
  .staff-card img {
    border: 4px solid var(--brand);
  }
}

/* malo zoom-a i pojačanje sjene na hover/focus */
.staff-card img:hover,
.staff-card img:focus{
  transform: scale(1.05);
  box-shadow: 0 14px 32px rgba(0,0,0,0.15);
  filter: saturate(1.05);
  outline: none;
  border-color: var(--brand-strong);
}

/* caption ispod slike */
.staff-card figcaption{
  margin-top: 0.4rem;
  font-size: 0.75rem;
  color: #333;
  font-weight: 500;
  line-height: 1.3;
}

.staff-card figcaption b {
  color: var(--brand-strong);
  font-size: 0.85rem;
}

@media (min-width: 480px) {
  .staff-card figcaption {
    margin-top: 0.6rem;
    font-size: 0.85rem;
    line-height: 1.4;
  }
  
  .staff-card figcaption b {
    font-size: 0.95rem;
  }
}

@media (min-width: 640px) {
  .staff-card figcaption {
    margin-top: 0.7rem;
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  .staff-card figcaption b {
    font-size: 1rem;
  }
}

@media (min-width: 768px) {
  .staff-card figcaption {
    margin-top: 0.8rem;
    font-size: 1rem;
  }
  
  .staff-card figcaption b {
    font-size: 1.1rem;
  }
}

/* Veći ekrani - više prostora */
@media (min-width: 768px) {
  .staff-row {
    gap: 2.5rem;
  }
  
  .staff-card figcaption {
    font-size: 1.05rem;
  }
}


.category {
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .category {
    margin-bottom: 1.5rem;
  }
}

.cat-title {
  font-weight: bold;
  font-size: 1.1rem;
  color: var(--brand-strong);
  margin-bottom: 0.5rem;
  border-left: 3px solid var(--brand);
  padding-left: 8px;
  line-height: 1.3;
}

@media (min-width: 640px) {
  .cat-title {
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
    border-left: 4px solid var(--brand);
    padding-left: 10px;
  }
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card);
  box-shadow: var(--shadow);
  border-radius: 10px;
  overflow: hidden;
  table-layout: fixed; /* fiksirana širina za bolje ponašanje */
}

th, td {
  padding: 8px 10px;
  text-align: left;
  font-size: 0.85rem;
  word-wrap: break-word; /* prelama dugačke riječi */
  overflow-wrap: break-word;
}

@media (max-width: 479px) {
  th, td {
    padding: 6px 8px;
    font-size: 0.8rem;
  }
  
  /* Prva kolona (naziv) šira, ostale uže */
  table td:first-child,
  table th:first-child {
    width: 50%;
  }
  
  table td:nth-child(2),
  table th:nth-child(2) {
    width: 30%;
  }
  
  table td:last-child,
  table th:last-child {
    width: 20%;
  }
}

@media (min-width: 480px) {
  th, td {
    padding: 10px 12px;
    font-size: 0.9rem;
  }
}

@media (min-width: 640px) {
  th, td {
    padding: 12px 16px;
    font-size: 1rem;
  }
}

th {
  background-color: var(--brand);
  color: white;
}

tr:nth-child(even) {
  background-color: #f8f8f8;
}

.price {
  text-align: right;
  font-weight: 600;
  color: var(--brand-strong);
}

:target {
  scroll-margin-top: 100px; /* prilagodi visini headera */
}


.card-columns {
  display: flex;
  flex-direction: column;
  gap: 12px; /* manji razmak za male ekrane */
}

@media (min-width: 640px) {
  .card-columns {
    flex-direction: row;
    gap: 20px;
  }
}

.column {
  flex: 1; /* oba stupca zauzimaju jednak prostor */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}



.card b {
  color: #cf6fa5;
}


.card-columns-three {
  display: flex;
  flex-direction: column;
  gap: 12px; /* manji razmak za male ekrane */
}

@media (min-width: 640px) {
  .card-columns-three {
    flex-direction: row;
    gap: 20px;
  }
}

.column-three {
  flex: 1; /* svaki stupac zauzima jednak prostor */
  display: flex;
  justify-content: center;
  align-items: center;
}

.column-three img {
  width: 100%; /* slika zauzima cijeli stupac */
  height: auto; /* omjer slike ostaje isti */
  border-radius: 10px; /* blagi zaobljeni rubovi */
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/*galerija2*/
.card-columns-three {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 15px; /* razmak između redova */
}

@media (min-width: 640px) {
  .card-columns-three {
    flex-direction: row;
    gap: 20px;
    margin-bottom: 20px;
  }
}

.column-three {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.column-three img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  cursor: pointer; /* pokazuje da se može kliknuti */
  transition: transform 0.3s;
}

.column-three img:hover {
  transform: scale(1.05);
}

.column-three img {
  width: 100%;
  max-width: 300px; /* maksimalna širina slike */
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

/* efekt klik/zumiranje */
.column-three img:active {
  transform: scale(1.2); /* 20% veća slika */
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}


/* MODAL */
.modal {
  display: none; 
  position: fixed; 
  z-index: 1000; 
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%; 
  overflow: auto; 
  background-color: rgba(0,0,0,0.8); 
}

.modal-content {
  margin: 10% auto; 
  display: block;
  max-width: 80%;
  border-radius: 10px;
}

.close {
  position: absolute;
  top: 20px;
  right: 40px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}


/* Modal pozadina */
.modal {
  display: none; 
  position: fixed; 
  z-index: 1000; 
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%; 
  overflow: auto; 
  background-color: rgba(0,0,0,0.5); 
  justify-content: center;
  align-items: center;
}

/* Modal sadržaj */
.modal-content {
  background-color: #fff;
  padding: 30px;
  border-radius: 15px;
  max-width: 800px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  position: relative;
  margin: auto;
}

/* Close button */
.modal .close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 30px;
  cursor: pointer;
  color: #666;
  font-weight: bold;
  line-height: 1;
  transition: color 0.2s;
}

.modal .close:hover {
  color: var(--brand-strong);
}

/* Forma */
.modal form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  align-items: start;
}

.modal form > div {
  display: flex;
  flex-direction: column;
}

.modal label {
  margin-bottom: 5px;
  font-weight: 500;
}

.modal input {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.modal button.btn {
  margin-top: 15px;
  background-color: #cf6fa5;
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
}

.modal button.btn:hover {
  background-color: #e8a4c7;
}

/* Elementi koji zauzimaju punu širinu u 2-stupčastom gridu */
.modal form .full-width {
  grid-column: 1 / -1;
}

.modal .shipping-note {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  margin-top: 5px;
  text-align: center;
}

/* Responsivnost za manje ekrane */
@media (max-width: 768px) {
  .modal-content {
    max-width: 95%;
    padding: 20px;
  }
  
  .modal form {
    grid-template-columns: 1fr;
  }
  
  .modal .close {
    font-size: 24px;
    top: 5px;
    right: 10px;
  }
}
/* Stilovi za forme (konzultacije) */
form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  form {
    gap: 1rem;
  }
}

form label {
  font-weight: 500;
  color: var(--ink);
  margin-bottom: -0.5rem;
  font-size: 0.9rem;
}

@media (min-width: 640px) {
  form label {
    font-size: 1rem;
  }
}

form input,
form select,
form textarea {
  padding: 0.65rem;
  border-radius: 8px;
  border: 2px solid #e8e8e8;
  font-family: inherit;
  font-size: 0.9rem;
  transition: border-color 0.2s;
}

@media (min-width: 640px) {
  form input,
  form select,
  form textarea {
    padding: 0.75rem;
    font-size: 1rem;
  }
}

form input:focus,
form select:focus,
form textarea:focus {
  outline: none;
  border-color: var(--brand);
}

form textarea {
  resize: vertical;
  min-height: 100px;
}

form select {
  cursor: pointer;
}

/* ===============================
   MODAL ZA UVEĆANJE SLIKA
   =============================== */
.image-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  justify-content: center;
  align-items: center;
  cursor: zoom-out;
}

.image-modal-content {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: 10px;
  animation: zoom-in 0.3s ease;
}

@keyframes zoom-in {
  from {
    transform: scale(0.5);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.image-modal-close {
  position: absolute;
  top: 20px;
  right: 40px;
  color: #fff;
  font-size: 50px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 2001;
}

.image-modal-close:hover {
  color: var(--brand);
}

/* Pointer na slikama u galeriji */
.zoomable {
  cursor: zoom-in;
  transition: transform 0.2s ease;
}

.zoomable:hover {
  transform: scale(1.05);
}

/* ===============================
   EDUKACIJE STRANICA
   =============================== */

/* Grid za edukacije */
.education-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .education-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Galerija edukacija */
.education-gallery-section {
  margin-top: 3rem;
}

.education-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (min-width: 640px) {
  .education-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .education-gallery {
    grid-template-columns: repeat(5, 1fr);
  }
}

.gallery-frame {
  background: linear-gradient(135deg, #fff5f9 0%, #ffffff 100%);
  border: 2px solid var(--brand);
  border-radius: var(--radius);
  padding: 0.5rem;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.gallery-frame:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.gallery-frame img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  display: block;
}

/* Kartica edukacije */
.education-card {
  background: var(--card);
  border-radius: 15px;
  box-shadow: var(--shadow);
  padding: 1.25rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

@media (min-width: 640px) {
  .education-card {
    border-radius: var(--radius);
    padding: 1.75rem;
  }
}

@media (min-width: 768px) {
  .education-card {
    padding: 2rem;
  }
}

.education-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Header edukacije */
.education-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.education-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  border-radius: 50%;
  padding: 10px;
}

@media (min-width: 640px) {
  .education-icon {
    width: 60px;
    height: 60px;
    padding: 12px;
  }
}

.education-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0;
}

.education-header h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: var(--brand-strong);
  margin: 0;
}

/* Sadržaj edukacije */
.education-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.education-description {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.education-details {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.education-details li {
  color: var(--ink);
  font-size: 0.95rem;
}

.education-details strong {
  color: var(--brand-strong);
}

.education-card .btn {
  margin-top: auto;
  width: 100%;
}

/* ===============================
   TREATMENT DESCRIPTION STYLES
   =============================== */
.treatment-description {
  color: dimgray;
}

.treatment-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
  margin: 0.75rem 0;
}

@media (min-width: 480px) {
  .treatment-images {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
  }
}

@media (min-width: 640px) {
  .treatment-images {
    grid-template-columns: repeat(5, 1fr);
    margin: 1rem 0;
  }
}

.treatment-images img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid var(--brand);
  transition: transform 0.3s ease;
  cursor: pointer;
}

@media (min-width: 768px) {
  .treatment-images {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
  }
  
  .treatment-images img {
    width: 80px;
    flex-shrink: 0;
  }
}

.treatment-images img:hover {
  transform: scale(1.1);
}

.treatment-note {
  color: grey;
}

/* ===============================
   DODATNE OPTIMIZACIJE ZA NAJMAN JE EKRANE (<380px)
   =============================== */
@media (max-width: 380px) {
  :root {
    --radius: 15px; /* manji radius za vrlo male ekrane */
  }
  
  /* Container još uži */
  .container {
    padding: 0 0.5rem;
  }
  
  /* Hero sekcija kompaktnija */
  .hero-section {
    padding: 1.25rem 0;
    margin: 0.75rem 0;
  }
  
  .hero-title {
    font-size: 1.6rem;
    margin-bottom: 0.6rem;
  }
  
  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
  }
  
  .hero-description {
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
  }
  
  .hero-buttons {
    gap: 0.5rem;
  }
  
  /* Gumbi manji */
  .btn {
    padding: 0.6rem 0.85rem;
    font-size: 0.85rem;
  }
  
  /* Service buttons kompaktniji */
  .service-btn {
    font-size: 0.75rem;
    padding: 0.5rem 0.7rem;
  }
  
  /* Section title manji */
  .section-title {
    font-size: 1.35rem;
    margin-bottom: 0.6rem;
  }
  
  /* Service kartice manje */
  .service-card,
  .why-card,
  .contact-card {
    padding: 1rem;
  }
  
  .service-card h3,
  .contact-card h3 {
    font-size: 1.2rem;
  }
  
  .why-card h3 {
    font-size: 1rem;
  }
  
  .service-card p,
  .why-card p,
  .contact-card p {
    font-size: 0.85rem;
  }
  
  /* Ikone manje */
  .service-icon,
  .why-icon,
  .contact-icon {
    font-size: 2.2rem;
  }
  
  .service-icon img,
  .why-icon img,
  .contact-icon img {
    width: 48px;
    height: 48px;
  }
  
  /* Grid razmaci manji */
  .services-grid,
  .why-us-grid,
  .contact-cards,
  .gallery-grid {
    gap: 0.75rem;
  }
  
  .gallery-grid {
    gap: 0.5rem;
  }
  
  /* Staff kartice manje */
  .staff-card {
    max-width: 95px;
  }
  
  .staff-card figcaption {
    font-size: 0.7rem;
    margin-top: 0.3rem;
  }
  
  .staff-card figcaption b {
    font-size: 0.8rem;
  }
  
  .staff-row {
    gap: 0.5rem;
  }
  
  /* Tablice kompaktnije */
  th, td {
    padding: 6px 8px;
    font-size: 0.8rem;
  }
  
  .cat-title {
    font-size: 1rem;
    padding-left: 6px;
    border-left-width: 2px;
  }
  
  /* FAQ kompaktniji */
  .faq-question {
    padding: 0.85rem 1rem;
    font-size: 0.85rem;
  }
  
  .faq-icon {
    font-size: 1.3rem;
  }
  
  /* Product kartice manje */
  .product-card h3 {
    font-size: 1.3rem;
  }
  
  .product-card p {
    font-size: 0.85rem;
  }
  
  .product-image-section img {
    width: 90px;
    height: 90px;
  }
  
  .product-image-section strong {
    font-size: 1.3rem;
  }
  
  /* Education kartice kompaktnije */
  .education-card {
    padding: 1rem;
  }
  
  .education-icon {
    width: 45px;
    height: 45px;
    padding: 9px;
  }
  
  .education-header h3 {
    font-size: 1.25rem;
  }
  
  .education-description,
  .education-details li {
    font-size: 0.85rem;
  }
  
  /* Footer manji */
  footer {
    padding: 1.25rem 0;
    font-size: 0.8rem;
  }
  
  /* Treatment slike */
  .treatment-images {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.3rem;
  }
  
  /* Modal manji padding */
  .modal-content {
    padding: 15px;
  }
  
  /* Social links kompaktnije */
  .social-link-compact {
    font-size: 0.85rem;
    gap: 0.5rem;
  }
  
  .social-icon-small {
    width: 24px;
    height: 24px;
  }
  
  /* Logo još manji za najma nje ekrane */
  .logo {
    width: 45px;
    height: 45px;
  }
  
  .brand-name {
    font-size: 1.1rem;
  }
}