/* =========================================================
   Gurman Ćaka - Stranice (specifični rasporedi po stranici)
   ========================================================= */

/* ---------- Početna ---------- */

.home-split {
  padding-block: var(--section-pad);
}

.home-cats {
  background: var(--ivory-deep);
}

.home-cats .section-head {
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.home-rooms .room-grid {
  margin-bottom: var(--sp-6);
}

/* Brojke ispod heroja */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.stat {
  text-align: center;
  padding: 1.75rem 1rem;
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.9rem);
  color: var(--accent-deep);
  line-height: 1.05;
}

.stat span {
  display: block;
  margin-top: 0.4rem;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Restoran ---------- */

.rest-intro {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.rest-intro-media {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--ivory-deep);
  aspect-ratio: 4 / 3;
}

.rest-intro-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rest-feature-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.9rem;
}

.rest-feature-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-soft);
  margin: 0;
}

.rest-feature-list svg {
  width: 18px;
  height: 18px;
  color: var(--accent-deep);
  flex: 0 0 auto;
}

/* Alternirajuće sekcije sa slikom */
.alt-split {
  display: grid;
  gap: var(--sp-6);
  align-items: center;
}

.alt-split-media {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--ivory-deep);
}

.alt-split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 11;
}

.alt-split-body .eyebrow {
  margin-bottom: 0.75rem;
}

.alt-split-body h2 {
  margin-bottom: 1rem;
}

.alt-split-body p {
  color: var(--muted);
}

/* ---------- Sobe ---------- */

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.amenity {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: var(--ivory-soft);
  padding: 1.2rem 1.35rem;
}

.amenity svg {
  width: 20px;
  height: 20px;
  color: var(--accent-deep);
  flex: 0 0 auto;
}

.amenity strong {
  display: block;
  font-size: var(--text-sm);
}

.amenity span {
  display: block;
  font-size: var(--text-xs);
  color: var(--muted);
}

/* ---------- Detalj sobe ---------- */

.room-detail-grid {
  display: grid;
  gap: var(--sp-6);
}

.room-gallery-main {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--ivory-deep);
  aspect-ratio: 16 / 10;
  cursor: zoom-in;
}

.room-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
  margin-top: 0.6rem;
}

.room-gallery-thumbs button {
  appearance: none;
  border: 2px solid transparent;
  border-radius: var(--r-sm);
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  background: var(--ivory-deep);
  aspect-ratio: 4 / 3;
  transition: border-color var(--t-fast), opacity var(--t-fast);
}

.room-gallery-thumbs button:hover {
  opacity: 0.85;
}

.room-gallery-thumbs button.is-active {
  border-color: var(--accent);
}

.room-gallery-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-specs {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.8rem;
}

.room-specs li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: var(--text-sm);
  color: var(--text-soft);
  border-bottom: 1px dashed var(--line);
  padding-bottom: 0.8rem;
  margin: 0;
}

.room-specs li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.room-specs svg {
  width: 18px;
  height: 18px;
  color: var(--accent-deep);
  flex: 0 0 auto;
}

.room-specs strong {
  margin-left: auto;
  color: var(--text);
  text-align: right;
}

.room-amenities {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem 1.2rem;
}

.room-amenities li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: var(--text-sm);
  color: var(--text-soft);
  margin: 0;
}

.room-amenities svg {
  width: 15px;
  height: 15px;
  color: var(--accent-deep);
  flex: 0 0 auto;
}

.side-card {
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
  display: grid;
  gap: 1.25rem;
}

/* ---------- Proslave ---------- */

.events-intro {
  max-width: 720px;
}

.event-flow {
  display: grid;
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  overflow: hidden;
  grid-template-columns: 1fr;
}

.event-flow-step {
  background: var(--ivory-soft);
  padding: 1.6rem 1.7rem;
}

.event-flow-step .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.9rem;
}

.event-flow-step h3 {
  font-size: 1.25rem;
  margin-bottom: 0.45rem;
}

.event-flow-step p {
  font-size: var(--text-sm);
  color: var(--muted);
  margin: 0;
}

/* ---------- Galerija ---------- */

.gallery-page-hero {
  margin-bottom: 0;
}

/* ---------- O nama ---------- */

.about-story {
  display: grid;
  gap: var(--sp-6);
  align-items: center;
}

.about-story-media {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--ivory-deep);
}

.about-story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.about-values {
  display: grid;
  gap: var(--sp-5);
}

.about-value {
  display: flex;
  gap: 1.1rem;
}

.about-value .cat-icon {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
}

.about-value h3 {
  font-size: 1.25rem;
  margin-bottom: 0.3rem;
}

.about-value p {
  font-size: var(--text-sm);
  color: var(--muted);
  margin: 0;
}

/* ---------- Kontakt ---------- */

.contact-layout {
  display: grid;
  gap: var(--sp-6);
}

.contact-info-list {
  display: grid;
  gap: 1.1rem;
  margin-top: 1.5rem;
}

.contact-info-row {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.contact-info-row svg {
  width: 18px;
  height: 18px;
  color: var(--accent-deep);
  flex: 0 0 auto;
  margin-top: 0.2rem;
}

.contact-info-row strong {
  display: block;
  font-size: var(--text-sm);
}

.contact-info-row a,
.contact-info-row span {
  font-size: var(--text-sm);
  color: var(--muted);
}

.contact-info-row a:hover {
  color: var(--accent-deep);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-sm);
}

.hours-table th,
.hours-table td {
  text-align: left;
  padding: 0.55rem 0.25rem;
  border-bottom: 1px dashed var(--line);
}

.hours-table th {
  font-weight: 700;
  color: var(--text);
}

.hours-table td {
  color: var(--muted);
}

.hours-table tr:last-child th,
.hours-table tr:last-child td {
  border-bottom: 0;
}

/* ---------- Rezervacija ---------- */

.reserve-hero {
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.reserve-layout {
  display: grid;
  gap: var(--sp-6);
}

.reserve-info {
  display: grid;
  gap: 1.1rem;
}

/* ---------- Sticky CTA (strana) ---------- */

.sticky-book {
  display: none;
}

/* ---------- Brodcrumb beli (svetle stranice) ---------- */

/* ---------- Hvala (potvrda) ---------- */

.thank-you {
  display: grid;
  place-items: center;
  min-height: 62vh;
  padding-top: clamp(2.5rem, 6vw, 4.5rem);
}

.success-icon {
  display: grid;
  place-items: center;
  width: 5.25rem;
  height: 5.25rem;
  margin: 0 auto 1.75rem;
  border-radius: 50%;
  color: var(--paper);
  background: var(--accent);
}

.success-icon svg {
  width: 2.5rem;
  height: 2.5rem;
}

.thank-you h1 {
  margin-bottom: 1rem;
}

.thank-you .lead {
  max-width: 34rem;
  margin: 0 auto;
}

.ref-line {
  margin-top: 1.25rem;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.75rem;
}

.demo-note {
  max-width: 30rem;
  margin: 2.25rem auto 0;
  padding: 0.75rem 1rem;
  font-size: var(--text-sm);
  color: var(--muted);
  border: 1px dashed var(--line);
  border-radius: var(--radius-sm);
}

/* ---------- 404 ---------- */

.error-page {
  display: grid;
  place-items: center;
  min-height: 62vh;
  text-align: center;
  padding-top: clamp(2.5rem, 6vw, 4.5rem);
}

.error-code {
  font-family: var(--font-display);
  font-size: clamp(5rem, 16vw, 9rem);
  line-height: 1;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.02em;
}

.error-page h1 {
  margin: 1rem 0;
}

.error-page .lead {
  max-width: 32rem;
  margin: 0 auto;
}

/* ---------- Privatnost ---------- */

.privacy-page {
  padding-top: clamp(2.5rem, 6vw, 4rem);
}

.privacy-page h1 {
  margin-bottom: 0.4rem;
}

.privacy-meta {
  color: var(--muted);
  font-size: var(--text-sm);
  margin-bottom: 2.25rem;
}

.privacy-block {
  margin-bottom: 1.75rem;
  max-width: 52rem;
}

.privacy-block h2 {
  font-size: var(--text-xl);
  margin-bottom: 0.5rem;
}

.privacy-block p {
  color: var(--body);
  max-width: 46rem;
}

