/*
Theme Name: Hotel za pse - Groom Room
Theme URI: https://www.groom-room.net/
Author: Boštjan Ravter / ChatGPT
Description: Moderna WordPress tema za pasji hotel, dnevno varstvo, šolanje psov in grooming studio. Topel premium pet-care dizajn z jasnimi CTA elementi.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GPL v2 or later
Text Domain: hotel-za-pse
*/

:root {
  --hzp-bg: #fbf8f1;
  --hzp-surface: #ffffff;
  --hzp-cream: #f3eadc;
  --hzp-olive: #6d7440;
  --hzp-olive-dark: #4d552d;
  --hzp-charcoal: #1d1b17;
  --hzp-muted: #6e6a60;
  --hzp-border: #e5dccb;
  --hzp-gold: #c99a44;
  --hzp-radius: 24px;
  --hzp-shadow: 0 18px 50px rgba(29, 27, 23, 0.10);
  --hzp-font-title: Georgia, 'Times New Roman', serif;
  --hzp-font-body: Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--hzp-font-body);
  color: var(--hzp-charcoal);
  background: var(--hzp-bg);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.hzp-container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hzp-topbar {
  position: sticky;
  top: 0;
  z-index: 99;
  background: rgba(251, 248, 241, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hzp-border);
}
.hzp-nav {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.hzp-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.hzp-logo-mark {
  width: 44px;
  height: 44px;
  border: 2px solid var(--hzp-olive);
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--hzp-olive);
  font-size: 24px;
}
.hzp-logo small {
  display: block;
  font-size: 11px;
  color: var(--hzp-muted);
  letter-spacing: .24em;
  margin-top: -2px;
}
.hzp-menu {
  display: flex;
  list-style: none;
  gap: 24px;
  padding: 0;
  margin: 0;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
}
.hzp-menu a { padding: 26px 0; border-bottom: 2px solid transparent; }
.hzp-menu a:hover { color: var(--hzp-olive); border-color: var(--hzp-olive); }
.hzp-nav-actions { display: flex; gap: 12px; align-items: center; }
.hzp-phone {
  border: 1px solid var(--hzp-border);
  border-radius: 999px;
  padding: 10px 16px;
  background: #fff;
  font-weight: 700;
}
.hzp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--hzp-olive);
  background: var(--hzp-olive);
  color: #fff;
  font-weight: 800;
  letter-spacing: .01em;
  cursor: pointer;
  transition: .2s ease;
}
.hzp-btn:hover { transform: translateY(-1px); background: var(--hzp-olive-dark); }
.hzp-btn.secondary { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.5); }
.hzp-btn.light { background: #fff; color: var(--hzp-olive-dark); border-color: var(--hzp-border); }

.hzp-mobile-toggle { display: none; background: none; border: 0; font-size: 30px; }

.hzp-hero {
  min-height: 680px;
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(29,27,23,.86) 0%, rgba(29,27,23,.52) 42%, rgba(29,27,23,.08) 100%),
    var(--hzp-cream);
}
.hzp-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--hzp-hero-image);
  background-size: cover;
  background-position: center right;
  z-index: -1;
}
.hzp-hero-content { width: min(650px, 100%); color: #fff; padding: 80px 0; }
.hzp-eyebrow { color: #d9dfb7; text-transform: uppercase; letter-spacing: .18em; font-size: 13px; font-weight: 800; }
.hzp-hero h1, .hzp-section-title {
  font-family: var(--hzp-font-title);
  line-height: .96;
  margin: 18px 0;
  letter-spacing: -.04em;
}
.hzp-hero h1 { font-size: clamp(48px, 7vw, 86px); }
.hzp-hero h1 span { color: #b7bf7a; }
.hzp-hero p { font-size: 19px; max-width: 560px; }
.hzp-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 28px 0; }
.hzp-rating { display: inline-flex; gap: 10px; align-items: center; margin-top: 12px; font-weight: 700; }
.hzp-stars { color: #f6bb45; letter-spacing: 2px; }
.hzp-badge {
  position: absolute;
  right: 8%;
  top: 18%;
  width: 146px;
  height: 146px;
  border-radius: 999px;
  background: rgba(109,116,64,.92);
  color: #fff;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 18px;
  font-weight: 900;
  box-shadow: var(--hzp-shadow);
}

.hzp-feature-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--hzp-border);
  border-bottom: 1px solid var(--hzp-border);
}
.hzp-feature {
  background: #fffdf8;
  padding: 36px 18px;
  text-align: center;
}
.hzp-icon { font-size: 42px; color: var(--hzp-olive); display: block; margin-bottom: 12px; }
.hzp-feature h3 { margin: 0 0 8px; font-size: 14px; text-transform: uppercase; }
.hzp-feature p { margin: 0; font-size: 13px; color: var(--hzp-muted); }

.hzp-section { padding: 84px 0; }
.hzp-section.center { text-align: center; }
.hzp-section-title { font-size: clamp(38px, 5vw, 58px); }
.hzp-section-subtitle { color: var(--hzp-muted); max-width: 660px; margin: 0 auto 36px; }

.hzp-card-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.hzp-service-card {
  overflow: hidden;
  border-radius: var(--hzp-radius);
  background: #fff;
  box-shadow: 0 10px 30px rgba(29,27,23,.08);
  border: 1px solid var(--hzp-border);
  text-align: left;
}
.hzp-service-card img { width: 100%; height: 190px; object-fit: cover; }
.hzp-card-body { padding: 22px; }
.hzp-card-body h3 { margin: 0 0 8px; font-size: 19px; }
.hzp-card-body p { color: var(--hzp-muted); margin: 0 0 14px; font-size: 14px; }
.hzp-link { color: var(--hzp-olive-dark); font-weight: 900; }

.hzp-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: 60px;
}
.hzp-split-media img { border-radius: 0 var(--hzp-radius) var(--hzp-radius) 0; min-height: 460px; object-fit: cover; width: 100%; }
.hzp-checks { list-style: none; padding: 0; margin: 24px 0; }
.hzp-checks li { margin: 10px 0; color: var(--hzp-muted); }
.hzp-checks li::before { content: '✓'; display: inline-grid; place-items:center; width: 20px; height: 20px; border-radius:999px; background: var(--hzp-olive); color:#fff; font-size: 12px; margin-right: 10px; }

.hzp-pricing { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.hzp-price-card { background:#fff; border:1px solid var(--hzp-border); border-radius:var(--hzp-radius); padding:26px; box-shadow:0 10px 28px rgba(29,27,23,.06); }
.hzp-price-card.featured { border-color: var(--hzp-olive); box-shadow: var(--hzp-shadow); }
.hzp-price { font-family: var(--hzp-font-title); font-size: 42px; color: var(--hzp-olive-dark); line-height: 1; margin: 14px 0; }
.hzp-price small { font-size: 15px; color: var(--hzp-muted); font-family: var(--hzp-font-body); }

.hzp-gallery { display:grid; grid-template-columns: repeat(6, 1fr); gap:14px; }
.hzp-gallery img { height: 170px; width:100%; object-fit:cover; border-radius: 18px; }

.hzp-testimonials { display:grid; grid-template-columns: repeat(3, 1fr); gap:20px; }
.hzp-quote { background:#fff; border:1px solid var(--hzp-border); border-radius:var(--hzp-radius); padding:28px; text-align:left; }
.hzp-quote strong { display:block; margin-top:20px; }

.hzp-cta {
  background: var(--hzp-olive);
  color: #fff;
  padding: 46px 0;
}
.hzp-cta-inner { display:flex; align-items:center; justify-content:space-between; gap:24px; }
.hzp-cta h2 { font-family: var(--hzp-font-title); font-size: clamp(30px, 4vw, 48px); margin:0; }

.hzp-footer {
  background: #201e19;
  color: #fff;
  padding: 58px 0 24px;
}
.hzp-footer-grid { display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap:36px; }
.hzp-footer a, .hzp-footer p { color: rgba(255,255,255,.72); }
.hzp-footer h4 { margin-top:0; }
.hzp-copyright { border-top:1px solid rgba(255,255,255,.12); margin-top:36px; padding-top:20px; color:rgba(255,255,255,.55); font-size:13px; }

.hzp-page { padding: 70px 0; }
.hzp-page-content { background:#fff; border:1px solid var(--hzp-border); border-radius:var(--hzp-radius); padding:40px; }

@media (max-width: 980px) {
  .hzp-mobile-toggle { display:block; }
  .hzp-menu { display:none; position:absolute; top:78px; left:0; right:0; background:#fffdf8; border-bottom:1px solid var(--hzp-border); padding:20px; flex-direction:column; align-items:flex-start; }
  .hzp-menu.is-open { display:flex; }
  .hzp-nav-actions .hzp-phone { display:none; }
  .hzp-feature-row { grid-template-columns: repeat(2, 1fr); }
  .hzp-card-grid { grid-template-columns: repeat(2, 1fr); }
  .hzp-split { grid-template-columns: 1fr; gap:30px; }
  .hzp-pricing { grid-template-columns: repeat(2, 1fr); }
  .hzp-gallery { grid-template-columns: repeat(3, 1fr); }
  .hzp-testimonials { grid-template-columns:1fr; }
  .hzp-footer-grid { grid-template-columns:1fr 1fr; }
  .hzp-badge { display:none; }
}
@media (max-width: 640px) {
  .hzp-container { width:min(100% - 28px, 1180px); }
  .hzp-nav { height:70px; }
  .hzp-menu { top:70px; }
  .hzp-logo span { font-size: 14px; }
  .hzp-logo small { font-size: 9px; }
  .hzp-nav-actions .hzp-btn { display:none; }
  .hzp-hero { min-height: 620px; background: linear-gradient(90deg, rgba(29,27,23,.88), rgba(29,27,23,.42)), var(--hzp-cream); }
  .hzp-hero::after { background-position:center; }
  .hzp-hero p { font-size:16px; }
  .hzp-hero-actions .hzp-btn { width:100%; }
  .hzp-feature-row, .hzp-card-grid, .hzp-pricing, .hzp-gallery, .hzp-footer-grid { grid-template-columns:1fr; }
  .hzp-gallery img { height:220px; }
  .hzp-cta-inner { flex-direction:column; align-items:flex-start; }
}
