/* ===== Home page polish — hero stats, sigurnost, by-the-numbers ===== */

/* Hero stat strip */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  max-width: 720px;
}

.hero-stats .hs-item {
  color: #fff;
}

.hero-stats .hs-num {
  display: block;
  font-family: 'Shantell Sans', sans-serif;
  font-weight: 700;
  font-size: 1.9rem;
  line-height: 1;
  color: #fff;
}

.hero-stats .hs-label {
  display: block;
  font-size: 0.85rem;
  opacity: 0.92;
  margin-top: 0.25rem;
  letter-spacing: 0.3px;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.btn-ghost-light {
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.55);
  color: #fff;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s ease;
}

.btn-ghost-light:hover {
  background: #fff;
  color: var(--bs-primary);
  border-color: #fff;
}

/* By-the-numbers section */
.numbers-section {
  background: linear-gradient(135deg, #fff7fa 0%, #f3f6ff 100%);
}

.number-card {
  text-align: center;
  padding: 2rem 1rem;
  background: #fff;
  border-radius: 24px;
  border: 2px solid rgba(77, 101, 249, 0.08);
  height: 100%;
  transition: transform .25s ease, box-shadow .25s ease;
}

.number-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(77, 101, 249, 0.12);
}

.number-card .nc-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bs-primary), #6b7ffb);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.number-card:nth-child(even) .nc-icon {
  background: linear-gradient(135deg, var(--bs-secondary), #ff7aa2);
}

.number-card .nc-num {
  font-family: 'Shantell Sans', sans-serif;
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 1;
  color: var(--bs-primary);
  margin-bottom: 0.4rem;
}

.number-card:nth-child(even) .nc-num {
  color: var(--bs-secondary);
}

.number-card .nc-label {
  font-weight: 600;
  font-size: 0.95rem;
  color: #2a2f45;
  margin-bottom: 0.3rem;
}

.number-card .nc-sub {
  font-size: 0.82rem;
  color: #6c7393;
  line-height: 1.4;
}

/* Sigurnost section */
.security-section {
  background: #fff;
  position: relative;
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
@media (max-width: 1199px) { .security-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px)  { .security-grid { grid-template-columns: 1fr; } }

.security-card {
  background: #fafbff;
  border: 1px solid rgba(77, 101, 249, 0.12);
  border-radius: 20px;
  padding: 1.4rem 1.4rem 1.3rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.security-card:hover {
  transform: translateY(-3px);
  border-color: var(--bs-primary);
  background: #fff;
  box-shadow: 0 10px 24px rgba(77, 101, 249, 0.08);
}

.security-card .sec-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--bs-primary), #6b7ffb);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
}

.security-card h6 {
  margin-bottom: 0.35rem;
  font-weight: 700;
  font-size: 1rem;
  color: #1f2440;
}

.security-card p {
  margin-bottom: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #4f546f;
}

/* Google rating link */
.google-rating {
  background: #fff;
  border: 1px solid #e6e9f4;
  padding: 0.8rem 1.25rem;
  border-radius: 999px;
  transition: box-shadow .2s ease, transform .2s ease;
}

.google-rating:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

@media (max-width: 575px) {
  .hero-stats {
    gap: 1rem 1.5rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
  }
  .hero-stats .hs-num { font-size: 1.5rem; }
  .hero-stats .hs-label { font-size: 0.78rem; }
  .number-card { padding: 1.5rem 0.8rem; }
  .number-card .nc-num { font-size: 2rem; }
  .security-card { padding: 1.1rem; }
}

/* Diet (Prehrana) section — match centered title style of Brojke/Sigurnost */
.diet-section { background: #fbf6f0; }
.diet-image-wrap {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.08);
  border: 6px solid #fff;
  outline: 1px solid rgba(0, 0, 0, 0.04);
}
.diet-image-wrap img { display: block; transition: transform 0.5s ease; }
.diet-image-wrap:hover img { transform: scale(1.03); }
.meal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.meal-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.meal-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}
.meal-card .meal-time {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bs-primary);
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.meal-card .meal-name {
  font-size: 1.05rem;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 0.3rem;
}
.meal-card .meal-desc {
  font-size: 0.86rem;
  color: #6b6b6b;
  line-height: 1.45;
  margin: 0;
}
@media (max-width: 575px) {
  .meal-grid { grid-template-columns: 1fr; gap: 0.75rem; }
  .meal-card { padding: 0.85rem 0.95rem; }
}

/* Hero eyebrow + international welcome line */
.hero-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  backdrop-filter: blur(4px);
}
.hero-intl {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(0, 0, 0, 0.18);
  border-left: 3px solid var(--bs-primary);
  padding: 0.5rem 0.9rem;
  border-radius: 0 8px 8px 0;
}
.hero-intl span[aria-hidden] { font-size: 1.1rem; line-height: 1; }
@media (max-width: 575px) {
  .hero-eyebrow { font-size: 0.7rem; letter-spacing: 0.12em; padding: 0.3rem 0.7rem; }
  .hero-intl { font-size: 0.85rem; }
}
@media (max-width: 767.98px) {
  .hero-eyebrow { display: none; }
}

/* ===== Explore More — bottom-of-home invitations ===== */
.explore-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.4rem;
  max-width: 1100px;
  margin: 0 auto;
}

.explore-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  background: #fff;
  border: 2px solid rgba(77, 101, 249, 0.14);
  border-radius: 22px;
  padding: 1.6rem 1.5rem 1.4rem;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 8px 22px rgba(77, 101, 249, 0.08);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
  overflow: hidden;
}

.explore-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--bs-primary), var(--bs-secondary));
  opacity: 0;
  transition: opacity .25s ease;
}

.explore-card:hover {
  transform: translateY(-4px);
  border-color: var(--bs-primary);
  box-shadow: 0 18px 40px rgba(77, 101, 249, 0.18);
  color: inherit;
  text-decoration: none;
}
.explore-card:hover::before { opacity: 1; }

.explore-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--bs-primary), #6b7ffb);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 14px rgba(77, 101, 249, 0.25);
  transition: transform .25s ease, background .25s ease;
}
.explore-card:hover .explore-icon {
  transform: rotate(-6deg) scale(1.05);
  background: linear-gradient(135deg, var(--bs-secondary), #ff7aa2);
}

.explore-card.explore-program .explore-icon {
  background: linear-gradient(135deg, #5cb85c, #88d18a);
}
.explore-card.explore-skupina .explore-icon {
  background: linear-gradient(135deg, #d97312, #ff9f43);
}

.explore-title {
  font-family: 'Shantell Sans', sans-serif;
  font-weight: 700;
  color: var(--bs-primary);
  margin-bottom: 0.5rem;
}

.explore-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  color: #6c757d;
  margin-bottom: 1.1rem;
  line-height: 1.5;
  flex: 1;
}

.explore-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--bs-primary);
  transition: gap .2s ease, color .2s ease;
}
.explore-card:hover .explore-cta { gap: 0.75rem; color: var(--bs-secondary); }
.explore-cta i { font-size: 0.75rem; transition: transform .2s ease; }
.explore-card:hover .explore-cta i { transform: translateX(3px); }
