/* ── PAGES.CSS — inner page styles ──────────────────────────────────────── */

.bg-alt  { background: var(--color-bg-alt); }
.bg-dark { background: var(--color-bg-dark); }
.text-center { text-align: center; }
.text-center .btn { margin-top: 1.5rem; }
.lead { font-size: 1.1rem; color: var(--color-text-mid); max-width: 560px; margin: 0 auto; }

/* PAGE HERO */
.page-hero { position: relative; height: clamp(180px, 28vw, 320px); overflow: hidden; background: var(--color-bg-dark); }
.page-hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; opacity: 0.45; }
.page-hero-overlay { position: absolute; inset: 0; display: flex; align-items: flex-end; padding-bottom: 2.5rem; }
.page-hero-overlay h1 { color: #fff; }
.page-hero-overlay .eyebrow { margin-bottom: 0.4rem; }

/* TEAM */
.team-section { background: var(--color-bg-alt); }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 2rem; max-width: 680px; margin: 0 auto; }
.team-card { text-align: center; }
.team-photo { width: 180px; height: 180px; border-radius: 50%; overflow: hidden; margin: 0 auto 1.25rem; box-shadow: var(--shadow-md); border: 4px solid var(--color-white); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { margin-bottom: 0.5rem; }

/* GALLERY */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); gap: 0.75rem; }
.gallery-grid img { width: 100%; height: 220px; object-fit: cover; border-radius: var(--radius-md); transition: transform var(--transition), box-shadow var(--transition); cursor: pointer; }
.gallery-grid img:hover { transform: scale(1.02); box-shadow: var(--shadow-md); }

/* VET BANNER */
.vet-banner { display: flex; align-items: flex-start; gap: 1.5rem; background: #eef7f0; border: 1px solid #b2ddbf; border-radius: var(--radius-md); padding: 1.75rem 2rem; }
.vet-icon { font-size: 2.5rem; flex-shrink: 0; line-height: 1; }
.vet-text h3 { margin-bottom: 0.4rem; color: #1a5c2a; }
.vet-text p  { color: #2d6b3e; margin: 0; }

/* PRICE TABLE */
.price-section { background: var(--color-bg-alt); }
.price-table { width: 100%; border-collapse: collapse; background: var(--color-white); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); margin-bottom: 2rem; }
.price-table th { background: var(--color-bg-dark); color: #fff; font-family: var(--font-display); font-size: 0.95rem; padding: 1rem 1.25rem; text-align: left; }
.price-table td { padding: 0.9rem 1.25rem; border-bottom: 1px solid var(--color-border); font-size: 0.95rem; color: var(--color-text-mid); }
.price-table tr:last-child td { border-bottom: none; }
.price-table tr:nth-child(even) td { background: var(--color-bg); }
.price-table .price-val { font-family: var(--font-display); font-size: 1.05rem; color: var(--color-accent); white-space: nowrap; }
.price-note { background: #fff8f0; border: 1px solid #f5c89a; border-left: 4px solid var(--color-accent); border-radius: var(--radius-sm); padding: 1rem 1.25rem; font-size: 0.9rem; color: #7a4010; margin-bottom: 2rem; }

/* MULTI-CAT */
.multicat-section { background: var(--color-bg); }
.multicat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px,1fr)); gap: 1rem; max-width: 700px; margin: 0 auto 2rem; }
.multicat-card { background: var(--color-white); border-radius: var(--radius-md); padding: 1.5rem 1rem; text-align: center; box-shadow: var(--shadow-sm); border-top: 4px solid var(--color-border); }
.multicat-card.highlight { border-top-color: var(--color-accent); }
.multicat-card .cat-label { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-text-light); margin-bottom: 0.5rem; display: block; }
.multicat-card .cat-price { font-family: var(--font-display); font-size: 1.8rem; color: var(--color-accent); line-height: 1; margin-bottom: 0.25rem; display: block; }
.multicat-card .cat-note { font-size: 0.8rem; color: var(--color-text-light); display: block; }

/* RESERVATION */
.booking-methods { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 1.5rem; margin: 2rem 0; }
.booking-method { background: var(--color-white); border-radius: var(--radius-md); padding: 2rem 1.75rem; text-align: center; box-shadow: var(--shadow-sm); transition: transform var(--transition), box-shadow var(--transition); }
.booking-method:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.booking-method .method-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.booking-method h3 { margin-bottom: 0.5rem; font-size: 1.1rem; }
.booking-method p  { font-size: 0.9rem; margin-bottom: 1rem; }
.payment-note { background: var(--color-white); border-radius: var(--radius-md); padding: 1.5rem 1.75rem; box-shadow: var(--shadow-sm); border-left: 4px solid var(--color-bg-dark); margin-top: 1.5rem; font-size: 0.92rem; }

/* REQUIREMENTS */
.requirements-section { background: var(--color-bg); }
.req-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 1.5rem; }
.req-card { background: var(--color-white); border-radius: var(--radius-md); padding: 1.75rem; box-shadow: var(--shadow-sm); }
.req-card h3 { font-size: 1rem; margin-bottom: 1rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--color-border); }
.req-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.req-list li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.9rem; color: var(--color-text-mid); line-height: 1.5; }
.req-list li::before { content: "✓"; color: #1a8a3c; font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* FAQ */
.faq-section { background: var(--color-bg-alt); }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item { background: var(--color-white); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); overflow: hidden; }
.faq-question { width: 100%; background: none; border: none; padding: 1.25rem 1.5rem; text-align: left; font-family: var(--font-body); font-weight: 700; font-size: 0.95rem; color: var(--color-text); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; transition: background var(--transition); }
.faq-question:hover { background: var(--color-bg); }
.faq-chevron { flex-shrink: 0; width: 20px; height: 20px; transition: transform var(--transition); }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer-inner { padding: 0 1.5rem 1.25rem; font-size: 0.92rem; color: var(--color-text-mid); line-height: 1.7; }

/* CCH LIVE */
.live-section { background: var(--color-bg-alt); }
.live-embed { background: var(--color-bg-dark); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 16/9; width: 100%; max-width: 900px; margin: 0 auto; }
.live-embed iframe { width: 100%; height: 100%; border: none; display: block; }

/* ZAUVIJEK DOM */
.zauvijek-hero-img { width: 100%; max-height: 400px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); margin-bottom: 3rem; }
.sponsor-section { background: var(--color-bg-alt); }
.sponsor-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 1.5rem; margin-top: 2rem; }
.sponsor-card { background: var(--color-white); border-radius: var(--radius-md); padding: 2rem; text-align: center; box-shadow: var(--shadow-sm); }
.sponsor-card img { height: 48px; width: auto; margin: 0 auto 1rem; object-fit: contain; }
.sponsor-card p { font-size: 0.9rem; }

/* HOURS */
.hours-box { background: var(--color-bg-dark); color: #fff; border-radius: var(--radius-md); padding: 1.5rem 2rem; display: inline-flex; gap: 3rem; flex-wrap: wrap; margin-top: 1.5rem; }
.hours-item .hours-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 0.25rem; display: block; }
.hours-item .hours-val { font-family: var(--font-display); font-size: 1.1rem; color: #fff; display: block; }

@media (max-width: 600px) {
  .vet-banner { flex-direction: column; gap: 1rem; }
  .hours-box  { gap: 1.5rem; }
}
