/* ================================================
   Daylight Studio — Prenájom fotoateliéru
   Pridaj do main.css alebo ako samostatný súbor:
   <link rel="stylesheet" href="assets/css/prenajom.css">
   ================================================ */

/* ── Intro sekcia ── */
.pr-intro {
  padding: 3rem 0 2rem;
  max-width: 960px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.pr-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #666;
  margin: 0 0 0.6rem;
  font-weight: 400;
}

.pr-h1 {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  color: #1a1a1a;
  margin: 0 0 0.15rem;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.pr-h2 {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: clamp(15px, 2.2vw, 20px);
  font-weight: 400;
  color: #666;
  margin: 0 0 1.75rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.pr-divider {
  width: 32px;
  height: 2px;
  background: #1a1a1a;
  margin-bottom: 1.5rem;
}

.pr-body {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: #555;
  line-height: 1.9;
  font-weight: 300;
  margin: 0 0 1rem;
  max-width: 640px;
}

.pr-body strong {
  color: #1a1a1a;
  font-weight: 500;
}

/* ── Štatistiky ── */
.pr-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #f0f0f0;
}

.pr-stat-num {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: #1a1a1a;
  line-height: 1;
  letter-spacing: -0.02em;
}

.pr-stat-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  color: #666;
  font-weight: 300;
  margin-top: 4px;
  line-height: 1.4;
}

/* ── Benefity ── */
.pr-benefits {
  max-width: 960px;
  margin: 3rem auto 0;
  padding: 3rem 2rem;
  border-top: 1px solid #f0f0f0;
}

.pr-section-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #666;
  margin: 0 0 0.4rem;
  font-weight: 400;
}

.pr-section-title {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 900;
  color: #1a1a1a;
  margin: 0 0 2rem;
  letter-spacing: -0.01em;
}

.pr-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

@media (max-width: 680px) {
  .pr-benefits-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 400px) {
  .pr-benefits-grid { grid-template-columns: 1fr; }
}

.pr-benefit {
  background: #f7f7f7;
  border-radius: 3px;
  padding: 1.5rem 1.25rem;
  border-left: 3px solid #1a1a1a;
}

.pr-benefit-num {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: #1a1a1a;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}

.pr-benefit-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.pr-benefit-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  color: #666;
  font-weight: 300;
  line-height: 1.7;
  margin: 0;
}

/* ── Pre koho ── */
.pr-forwhom {
  max-width: 960px;
  margin: 0 auto;
  padding: 3rem 2rem;
  border-top: 1px solid #f0f0f0;
}

.pr-forwhom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

@media (max-width: 680px) {
  .pr-forwhom-grid { grid-template-columns: 1fr; }
}

.pr-forwhom-card {
  border: 1px solid #e8e8e8;
  border-radius: 3px;
  padding: 1.5rem 1.25rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.pr-forwhom-card:hover {
  border-color: #ccc;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.pr-forwhom-icon {
  font-size: 24px;
  margin-bottom: 0.75rem;
}

.pr-forwhom-title {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 17px;
  font-weight: 900;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.pr-forwhom-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  color: #555;
  font-weight: 300;
  line-height: 1.7;
  margin: 0;
}

/* ── FAQ ── */
.pr-faq {
  max-width: 960px;
  margin: 0 auto;
  padding: 3rem 2rem;
  border-top: 1px solid #f0f0f0;
}

.pr-faq-list {
  display: flex;
  flex-direction: column;
}

.pr-faq-item {
  border-bottom: 1px solid #f0f0f0;
  padding: 1.25rem 0;
}

.pr-faq-q {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
  margin: 0 0 0.5rem;
}

.pr-faq-a {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: #555;
  font-weight: 300;
  line-height: 1.8;
  margin: 0;
}

/* ── CTA band ── */
.pr-cta-band {
  background: #1a1a1a;
  color: #fff;
  text-align: center;
  padding: 3rem 2rem;
  margin-top: 4rem;
}

.pr-cta-title {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 900;
  margin: 0 0 0.5rem;
  letter-spacing: -0.01em;
}

.pr-cta-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
  margin: 0 0 1.75rem;
}

.pr-cta-btn {
  display: inline-block;
  padding: 13px 32px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 2px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
  margin: 0 6px;
}

.pr-cta-btn:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}
.pr-cta-band h2 {
  color: #fff !important;
}

@media (max-width: 600px) {
  .pr-cta-band {
    padding: 2.5rem 1.5rem;
  }
  .pr-cta-btn {
    display: block;
    margin: 0 auto 0.75rem !important;
    text-align: center;
  }
}
.pr-cta-band h2 {
  color: #fff;
}