/* --- Illushcka: opći stil --- */

.overline {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-style: italic;
  font-size: 16px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #d8c599;
  margin-bottom: 0.5rem;
}

/* Hero naslovi da budu mrvu mekši/artsier */
.illushcka-hero-title,
.site-section-heading {
  letter-spacing: 0.06em;
}

/* --- Kartice na /illushcka/ (grid projekata) --- */

.illushcka-card {
  background: rgba(255, 255, 255, 0.07);
  border-radius: 4px;
  padding: 12px;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
  min-height: 100%;
}

.illushcka-card-image {
  aspect-ratio: 1 / 1; /* kvadrat */
  width: 100%; /* puni širinu kartice */
  overflow: hidden;
  border-radius: 4px;
  position: relative;
}

.illushcka-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.illushcka-card-image img.is-tall {
  object-fit: contain;
  background: #000;
}

illushcka-card-image img.is-tall:hover {
  transform: scale(1.01);
}

/* Hover efekt: lagani zoom slike i shadow */
.illushcka-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.35);
}

.illushcka-card:hover .illushcka-card-image img {
  transform: scale(1.03);
}

/* Title + tekst na kartici */
.illushcka-card h3 {
  margin-bottom: 4px;
  font-family: "Times New Roman", serif;
  font-size: 22px;
  margin-bottom: 0.35rem;
  color: #ffffff;
  font-weight: 300;
}

.illushcka-card p.small {
  opacity: 0.85;
}

/* --- Pojedini Illushcka projekt (layout illushcka.html) --- */

/* hero slika na single pageu */
.illushcka-hero-image {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.4);
}

.illushcka-hero-image img {
  width: 100%;
  display: block;
}

/* tekst tijela */
.illushcka-body p {
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* --- Galerija na single pageu --- */

.illushcka-gallery {
  margin-top: 10px;
}

.illushcka-gallery-item {
  /* da slike budu ujednačene visine na većim ekranima */
}

.illushcka-gallery-image {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}

.illushcka-gallery-image img {
  width: 100%;
  display: block;
  transition: transform 0.35s ease;
}

.illushcka-gallery-image:hover img {
  transform: scale(1.04);
}

/* --- CTA gumb na dnu projekta --- */

.illushcka-cta .btn {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 11px;
}

/* --- Responsive sitnice --- */

@media (max-width: 767.98px) {
  .illushcka-card {
    padding: 14px;
  }

  .illushcka-hero-image {
    border-radius: 14px;
  }
}
/* Boja teksta na Illushcka karticama (normal + hover) */
a.illushcka-card,
a.illushcka-card:hover {
  color: #dddddd !important; /* mogu mijenjati nijansu */
}
.lead {
  letter-spacing: 0.04em;
}
/* Žuti tekst slova */
.illushcka-card p.text-muted.small.text-uppercase {
  font-family: "Times New Roman", sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 0.35rem;
  opacity: 0.8;

  color: #cccccc !important; /* normalno stanje = sivo */
  transition: color 0.25s ease;
}
/* TYPE tekst postaje žut NA HOVER KARTICE */
.illushcka-card:hover p.text-muted.small.text-uppercase {
  color: #b4a37c !important;
}
/* Illushcka single – prilagodba da prati weddings stil */

/* Malo spacinga gore ispod headera */
.illushcka-hero {
  padding-top: 4rem;
  padding-bottom: 2rem;
}

/* Naslov je isti kao weddings, pa ga tu samo možemo po potrebi fino dotjerati */
.illushcka-hero-title {
  margin-bottom: 1.5rem;
}

/* Meta linija ispod naslova (tip projekta / godina) */
.illushcka-meta {
  margin-top: 0.25rem;
  margin-bottom: 1.75rem;
}

/* Sadržaj */
.illushcka-content {
  padding-bottom: 4rem;
}

.illushcka-body p {
  line-height: 1.7;
  margin-bottom: 1rem;
  color: #e4e4e4;
}
.illushcka-body li {
  color: #e4e4e4;
}
.cta-separator {
  width: 60px;
  height: 1px;
  background-color: rgba(216, 197, 153, 0.75);
  margin: 3rem auto 1.5rem;
}

.cta-text {
  font-size: 18px;
  opacity: 0.9;
  letter-spacing: 0.03em;
}
