/* =========================================================
   AKTIVITY � KV� KLECANY
   Styluje pouze obsah str�nky sekce AKTIUVITY.
   Nezasahuje do hlavi�ky, hlavn�ho menu ani pati�ky.
========================================================= */

.page-content, .nabidka-aktivit-page, .pro-deti-page, .pro-dospele-page, .pro-seniory-page {
  max-width: 1500px !important;
  margin: 0 auto;
  padding: 30px 20px 60px;
}

.page-hero {
  background: #f7d85c;
  border-radius: 24px;
  padding: 45px 30px;
  margin-bottom: 25px;
  text-align: center;
}

.page-hero h1 {
  margin: 0 0 12px;
  font-size: 42px;
  font-weight: 800;
}

.page-hero p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.6;
}

.activity-subnav {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 25px 0 45px;
}

.activity-subnav a {
  display: inline-block;
  background: #e94b4b;
  color: #fff;
  text-decoration: none;
  padding: 11px 24px;
  border-radius: 999px;
  font-weight: 500;
  transition: 0.25s ease;
}

.activity-subnav a:hover {
  background: #222;
  color: #fff;
}

.activity-section {
  margin-bottom: 70px;
  scroll-margin-top: 120px;
}

.section-heading {
  max-width: 850px;
  margin: 0 auto 30px;
  text-align: center;
}

.section-heading h2 {
  margin: 0 0 12px;
  font-size: 34px;
  font-weight: 800;
}

.section-heading p {
  font-size: 17px;
  line-height: 1.7;
}

.poster-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.poster-card {
  background: #fff;
  border-radius: 18px;
  padding: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.14);
  transition: 0.25s ease;
}

.poster-card:hover {
  transform: translateY(-5px);
}

.poster-card img {
  display: block;
  width: 100%;
  height: 430px;
  object-fit: contain;
  border-radius: 12px;
}

.reservation-box {
  max-width: 760px;
  margin: 0 auto 35px;
  padding: 28px;
  text-align: center;
  background: #fff3c4;
  border-radius: 22px;
  box-shadow: 0 5px 16px rgba(0,0,0,0.12);
}

.reservation-box h3 {
  margin-top: 0;
  font-size: 26px;
}

.reservation-box p {
  font-size: 17px;
  line-height: 1.6;
}

.reservation-button {
  display: inline-block;
  margin-top: 12px;
  background: #e94b4b;
  color: #fff;
  text-decoration: none;
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 800;
  transition: 0.25s ease;
}

.reservation-button:hover {
  background: #222;
  color: #fff;
}

@media screen and (max-width: 1000px) {
  .poster-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .poster-card img {
    height: 390px;
  }
}

@media screen and (max-width: 640px) {
  .page-hero h1 {
    font-size: 34px;
  }

  .poster-grid {
    grid-template-columns: 1fr;
  }

  .poster-card img {
    height: auto;
  }

  .activity-subnav a {
    width: 100%;
    text-align: center;
  }
}


/* REZERVACN� FORMULAR PRO PRAVIDELNE KROUZKY */

.form-section {
  max-width: 900px;
  margin: 0 auto 70px;
}

.reservation-form {
  background: #fff;
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.14);
}

.reservation-form fieldset {
  border: none;
  padding: 0;
  margin: 0 0 34px;
}

.reservation-form legend {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 18px;
  color: #222;
}

.form-row {
  margin-bottom: 18px;
}

.form-row label,
.consent-row {
  display: block;
  font-weight: 700;
  margin-bottom: 7px;
}

.form-row input,
.form-row textarea {
  width: 100%;
  box-sizing: border-box;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 13px 15px;
  font-size: 16px;
  font-family: inherit;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: #e94b4b;
}

.form-help {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.6;
}
/*
.checkbox-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.checkbox-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border: 2px solid #eeeeee;
  border-radius: 16px;
  background: #fffaf0;
  cursor: pointer;
  transition: 0.25s ease;
}

.checkbox-card:hover {
  border-color: #e94b4b;
  background: #fff3c4;
}

.checkbox-card input {
  margin-top: 4px;
  transform: scale(1.2);
}

.checkbox-card strong {
  display: block;
  font-size: 17px;
}

.checkbox-card small {
  display: block;
  margin-top: 4px;
  color: #555;
}
*/
/*  sjednoceni vzhledu rezrvacnich formuaru */

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.checkbox-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  width: 100%;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 18px;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.06);
  cursor: pointer;
}

.checkbox-card:hover {
  border-color: #e94b35;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.09);
}

.checkbox-card input {
  margin-top: 6px;
  transform: scale(1.2);
}

.checkbox-card span {
  display: block;
  width: 100%;
}

.checkbox-card strong {
  display: block;
  font-size: 18px;
  color: #e94b35;
  margin-bottom: 4px;
}

.checkbox-card small {
  display: block;
  color: #777;
  font-size: 14px;
  margin-bottom: 6px;
}

.checkbox-card p {
  margin: 0;
  line-height: 1.55;
}


.consent-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  line-height: 1.5;
  font-weight: 500;
}

.consent-row input {
  margin-top: 4px;
  transform: scale(1.2);
}

.form-actions {
  text-align: center;
}

.submit-button {
  display: inline-block;
  border: none;
  background: #e94b4b;
  color: #fff;
  padding: 15px 36px;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.25s ease;
}

.submit-button:hover {
  background: #222;
}

@media screen and (max-width: 700px) {
  .reservation-form {
    padding: 24px 18px;
  }

  .checkbox-group {
    grid-template-columns: 1fr;
  }

  .reservation-form legend {
    font-size: 22px;
  }
}

/* NABIDKA AKTIVIT */ 

.page-content, .nabidka-aktivit-page, .pro-deti-page, .pro-dospele-page, .pro-seniory-page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 30px 20px 60px;
}

.page-hero {
  background: #f7d85c;
  border-radius: 24px;
  padding: 45px 30px;
  margin-bottom: 40px;
  text-align: center;
}

.page-hero h1 {
  margin: 0 0 12px;
  font-size: 42px;
  font-weight: 800;
}

.page-hero p {
  max-width: 780px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.6;
}

.activity-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin: 40px 0 50px;
}

.category-card {
  display: block;
  position: relative;
  background: #fff;
  color: #222;
  text-decoration: none;
  border-radius: 24px;
  padding: 34px 28px;
  min-height: 280px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.14);
  transition: 0.25s ease;
  overflow: hidden;
}

.category-card:hover {
  transform: translateY(-6px);
  background: #e94b4b;
  color: #fff;
}

.category-card h2 {
  margin: 0 0 14px;
  font-size: 30px;
  font-weight: 800;
}

.category-card p {
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
}

.category-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: #f7d85c;
  color: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
}

.category-card:hover .category-icon {
  background: #fff;
  color: #e94b4b;
}

.category-link {
  display: inline-block;
  margin-top: 24px;
  font-weight: 500;
  border-bottom: 2px solid currentColor;
}

.activity-info-box {
  background: #fff3c4;
  border-radius: 24px;
  padding: 34px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.activity-info-box h2 {
  text-align: center;
  margin: 0 0 28px;
  font-size: 32px;
  font-weight: 800;
}

.info-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.info-column {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
}

.info-column h3 {
  margin: 0 0 12px;
  font-size: 23px;
  font-weight: 800;
}

.info-column p {
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
}

@media screen and (max-width: 900px) {
  .activity-categories {
    grid-template-columns: 1fr;
  }

  .category-card {
    min-height: auto;
  }

  .info-columns {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 640px) {
  .page-hero {
    padding: 34px 22px;
  }

  .page-hero h1 {
    font-size: 34px;
  }

  .page-hero p {
    font-size: 16px;
  }

  .activity-info-box {
    padding: 24px 18px;
  }

  .activity-info-box h2 {
    font-size: 28px;
  }
}

/*  REZERVACNI FORMULAR PRO DOSPELE  */


.reservation-form {
  max-width: 900px;
  margin: 0 auto;
}

.form-box {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  margin-bottom: 28px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.form-box h3 {
  margin-top: 0;
  margin-bottom: 22px;
  color: #e94b35;
  font-size: 24px;
  font-weight: 700;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid #eee;
  line-height: 1.55;
}

.checkbox-row:last-child {
  border-bottom: none;
}

.checkbox-row input {
  margin-top: 5px;
  transform: scale(1.25);
}

.form-box label {
  display: block;
  font-weight: 600;
  margin-bottom: 18px;
}

.form-box input[type="text"],
.form-box input[type="tel"],
.form-box input[type="email"],
.form-box textarea {
  width: 100%;
  margin-top: 7px;
  padding: 13px 15px;
  border: 1px solid #ddd;
  border-radius: 12px;
  font-size: 16px;
  box-sizing: border-box;
}

.form-box textarea {
  resize: vertical;
}

.form-note {
  background: #f7f7f7;
  padding: 20px 24px;
  border-radius: 18px;
  margin-bottom: 28px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .form-box {
    padding: 22px;
  }

  .checkbox-row {
    gap: 10px;
  }
} 



/* oprava formulare pro dospele*/ 

.checkbox-group {

  display: flex;

  flex-direction: column;

  gap: 16px;

}

.checkbox-card {

  display: flex;

  align-items: flex-start;

  gap: 14px;

  width: 100%;

  padding: 18px 20px;

  background: #fff;

  border: 1px solid #eee;

  border-radius: 18px;

  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.06);

  cursor: pointer;

}

.checkbox-card:hover {

  border-color: #e94b35;

  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.09);

}

.checkbox-card input {

  margin-top: 6px;

  transform: scale(1.2);

}

.checkbox-card span {

  display: block;

  width: 100%;

}

.checkbox-card strong {

  display: block;

  font-size: 18px;

  color: #e94b35;

  margin-bottom: 4px;

}

.checkbox-card small {

  display: block;

  color: #777;

  font-size: 14px;

  margin-bottom: 6px;

}

.checkbox-card p {

  margin: 0;

  line-height: 1.55;

}

/*  NASI LEKTORI  */ 

.lectors-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px 70px;
}

.lectors-intro {
  max-width: 850px;
  margin: 0 auto 40px;
  text-align: center;
  background: #fff;
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.lectors-intro h2 {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 30px;
  font-weight: 800;
}

.lectors-intro p {
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
}

.lectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.lector-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.lector-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 35px rgba(0,0,0,0.14);
}

.lector-card a {
  display: block;
}

.lector-card img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 1000px) {
  .lectors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .lectors-section {
    padding: 35px 15px 55px;
  }

  .lectors-grid {
    grid-template-columns: 1fr;
  }

  .lectors-intro {
    padding: 24px;
  }
}