@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600;700&display=swap');

:root {
  --green: #16820d;
  --yellow: #ffc400;
  --red: #ed001b;
  --blue: #06083c;
  --cream: #fff8e5;
  --soft-green: #f3f7ee;
  --soft-red: #fff0f0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* =========================================================
   NOVY FONT WEBU FREDOKA
   ========================================================= */


/*
body {
  margin: 0;
  font-family: "Nunito", Arial, sans-serif;
  color: var(--blue);
  background: #fff;
  color: #2d3469;
}
*/


/*
h1, h2, h3, h4, h5, h6,
.w3-button,
.w3-bar-item {
  font-family: "Nunito", Arial, sans-serif;
}



.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 24px 42px 10px;
  background: #fff;
}*/

/* =========================================================
   STRÁNKA TITULNI
   ========================================================= */
   
.site-header {

    display: flex;

    align-items: flex-start;

    padding: 24px 42px 10px;

    justify-content: flex-start;

    gap: 90px;

}

.logo img {
  width: 250px;
  max-width: 100%;
}
/*
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}*/


/* hlasvni navigace */

.main-nav {

    display: flex;

    align-items: center;

    gap: 34px;

    margin-top: 10px;
    
     font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  margin-left: 6%;

}

.main-nav a {
  color: var(--blue);
  text-decoration: none;
  padding: 16px 0;
  white-space: nowrap;
}

.main-nav > a.active {
  color: var(--green);
  border-bottom: 5px solid var(--yellow);
}

.dropdown {
  position: relative;
}

.dropdown > a {
  color: var(--blue);
}


.main-nav > a:hover,

.dropdown:hover > a {

  color: var(--green);

}


.main-nav > a.active,

.dropdown.active > a {

  color: var(--green);

  border-bottom: 5px solid var(--yellow);

}

/* hamburger menu */ 
/* schovani tlacitka hamburger menu */ 

.mobile-menu-btn {
    display: none;
}


@media (max-width: 900px) {

    .site-header {

        display: flex;

        flex-direction: column;

        padding: 15px 20px;

    }

    .mobile-menu-btn {

        display: block;

        position: absolute;

        top: 25px;

        right: 20px;

        background: none;

        border: none;

        font-size: 34px;

        color: var(--blue);

        cursor: pointer;

    }

    .main-nav {

     /*   display: none;  */

        width: 100%;

        margin-top: 15px;

        flex-direction: column;

        align-items: flex-start;

        gap: 0;

    }

    .main-nav.mobile-open {

        display: flex;

    }

    .main-nav > a,

    .dropdown > a {

        width: 100%;

        padding: 15px 0;

        border-bottom: 1px solid #e8e8e8;

    }

    .dropdown {

        width: 100%;

    }

    .dropdown-content {

  /*      position: static; */

        display: none;

        box-shadow: none;

        background: #f8f8f8;

        margin-bottom: 10px;

        border-radius: 0;

        padding: 0 0 0 20px;

    }

    .dropdown-content a {

        padding: 10px 0;

    }

}



@media (max-width: 900px) {

    .main-nav {
        display: none;
        width: 100%;
        flex-direction: column;
    }

    .main-nav.mobile-open {
        display: flex;
    }
}

/*.mobile-menu-btn {

    z-index: 9999;

    position: absolute;

}*/


.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: -24px;
  min-width: 235px;
  padding: 15px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 35px rgba(0,0,0,.14);
  z-index: 20;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content a {
  display: block;
  padding: 14px 18px;
  border-radius: 6px;
  color: var(--blue);
}

.dropdown-content a:hover,
.dropdown-content .submenu-active {
  background: #f2f4ec;
  color: var(--green);
}

.hero {
  display: grid;
  grid-template-columns: 42% 58%;
  min-height: 420px;
}

.hero-text {
  position: relative;
  padding: 95px 40px 40px 70px;
}

.yellow-lines {
  width: 50px;
 /* margin-bottom: 18px;*/
}

.hero h1 {
  margin: 0 0 28px;
  color: var(--green);
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.12;
  font-weight: 900;
  text-transform: uppercase;
  margin-left: 40px;
}

.hero p {
  margin-left: 40px;
}


.hero h1 span {
  color: var(--yellow);
}

.heart {
  width: 50px;
/*  margin-left: 10px;
  vertical-align: baseline;*/
}

.hero p {
  max-width: 620px;
  font-size: 20px;
  line-height: 1.5;
}






.hero-image {
  background-image: url("/assets/titulni.jpg");
  background-size: cover;
  background-position: center;
  min-height: 420px;
}

.cards {
  padding: 28px 28px 24px;
}

.activity-card {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  margin-bottom: 24px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 3px 15px rgba(0,0,0,.08);
}

.card-photo {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.card-icon {
  width: 88px;
  height: 88px;
  object-fit: contain;
  margin-top: -44px;
  position: relative;
  z-index: 2;
}

.activity-card h2 {
  margin: 6px 20px 14px;
  font-size: 27px;
  font-weight: 900;
  text-transform: uppercase;
}

.activity-card p {
  padding: 0 28px 28px;
  margin: 0;
  font-size: 17px;
  line-height: 1.45;
}

.activity-card.yellow {
  background: var(--cream);
}

.activity-card.yellow h2 {
  color: var(--yellow);
}

.activity-card.green,
.activity-card.camp {
  background: var(--soft-green);
}

.activity-card.green h2,
.activity-card.camp h2 {
  color: var(--green);
}

.activity-card.red {
  background: var(--soft-red);
}

.activity-card.red h2 {
  color: var(--red);
}

.benefits {
  padding: 4px 48px 36px;
}

.benefit {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 24px;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 800;
}

.benefit img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

@media (max-width: 1150px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .main-nav {
    flex-wrap: wrap;
    gap: 18px 28px;
  }
}

@media (max-width: 850px) {
  .site-header {
    padding: 20px 24px;
  }

  .logo img {
    width: 210px;
  }

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

  .hero-text {
    padding: 44px 28px;
  }

  .hero-image {
    min-height: 280px;
  }

  .main-nav {
    font-size: 14px;
  }

  .dropdown-content {
    position: static;
    box-shadow: none;
    padding-left: 0;
  }

  .dropdown:hover .dropdown-content {
    display: block;
  }
}

.logo-wrap {

    display: flex;

    align-items: center;

    gap: 18px;

}

.logo-wrap img {

    width: 95px;

    height: auto;

}

.logo-text {

    display: flex;

    flex-direction: column;

    line-height: 0.95;

}

.logo-text span {

    font-family: Impact, "Arial Narrow", sans-serif;

    font-weight: 900;

    color: #000;

}

.logo-text span:nth-child(1) {

    font-size: 24px;

}

.logo-text span:nth-child(2) {

    font-size: 24px;

}

.logo-text span:nth-child(3) {

    font-size: 24px;

}.logo-wrap {

    display: flex;

    align-items: center;

    gap: 18px;

}

.logo-wrap img {

    width: 95px;

    height: auto;

}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.30;
     font-weight: 600 !important;
     margin-top: 20px;
}

.logo-text span {
    font-family: "Arial Narrow", sans-serif;
    font-weight: 600 !important;
    color: #000;
}

.logo-text span:nth-child(1) {
    font-size: 24px;
     font-weight: 600  !important;
}

.logo-text span:nth-child(2) {
    font-size: 24px; 
    font-weight: 600  !important;
}

.logo-text span:nth-child(3) {
    font-size: 24px;
    font-weight: 600  !important;
}

.ratolest {
     float: right;
     width: 220px;
     margin-top: -90px;
}

/* zapati */ 

.footer-benefits {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;

    max-width: 1400px;
    margin: 0 auto;

    padding: 20px 30px;
    gap: 20px;
}

.benefit {

    display: flex;

    align-items: center;

    gap: 18px;

    flex-shrink: 1;

}  

.benefit img {

    width: 46px;

    height: 46px;

}

.benefit span {

    font-size: 15px;

    font-weight: 500;

    line-height: 1.35;

    text-transform: uppercase;

    color: #1f2555;

}

.divider {

    width: 1px;

    height: 62px;

    background: #d8d8d8;

}

.leaf {

    margin-left: auto;

}

.leaf img {
width: 270px;
height: 150px;
position: relative;
top: -20px;
}

strong {
    font-weight: 600 !important;
}



@media (min-width: 1201px) {

    .footer-benefits {

        max-width: 2000px;

        justify-content: space-between;

        gap: 34px;

        padding-left: 50px;

        padding-right: 50px;

    }

    .benefit {

        padding-left: 20px;

        padding-right: 20px;

    }

    .leaf {

        margin-left: 20px;

    }

}

/* zapati mobil */

@media (max-width: 900px) {

    .footer-benefits {

        flex-wrap: wrap;

        justify-content: center;

    }

    .divider,

    .leaf {

        display: none;

    }

    .benefit {

        width: 100%;

        justify-content: center;

        margin-bottom: 20px;

    }

}

/* copyright */

.copyright {

    text-align: center;

    padding: 20px 15px;

    margin-top: 20px;

    border-top: 1px solid #e5e5e5;

    font-size: 14px;

    line-height: 1.6;

    color: #666;

}

.copyright a {

    color: #15820d;

    text-decoration: none;

    font-weight: 600;

}

.copyright a:hover {

    text-decoration: underline;

}



/* ¡ OPRAVA MOBILNi NAVIGACE */

.mobile-menu-btn {

  display: none;

}

@media screen and (max-width: 900px) {

  .site-header {

    position: relative;

    display: block;

  }

  .mobile-menu-btn {

    display: block;

    position: absolute;

    top: 24px;

    right: 24px;

    z-index: 99999;

    border: 0;

    background: transparent;

    color: var(--blue);

    font-size: 38px;

    line-height: 1;

    cursor: pointer;

  }

  nav#mainNav {

    display: none !important;

    width: 100%;

    margin: 25px 0 0 0;

    padding-top: 15px;

    flex-direction: column;

    align-items: flex-start;

    gap: 0;

  }

  nav#mainNav.mobile-open {

    display: flex !important;

  }

  nav#mainNav > a,

  nav#mainNav .dropdown > a {

    display: block;

    width: 100%;

    padding: 14px 0;

    border-bottom: 1px solid #e8e8e8;

  }

  nav#mainNav .dropdown {

    width: 100%;

  }

  nav#mainNav .dropdown-content {

    display: none !important;

  }

}  


/* =========================================================
   STRÁNKA PŘÍMĚSTSKÉ TÁBORY
   ========================================================= */

.camp-hero {
    padding: 35px 42px 20px;
    background: #fff;
}

.camp-breadcrumb {
    max-width: 1500px;
    margin: 0 auto 28px;
    font-size: 15px;
    color: var(--blue);
}

.camp-breadcrumb a {
    color: var(--blue);
    text-decoration: none;
}

.camp-breadcrumb span {
    margin: 0 12px;
    color: var(--green);
}

.camp-breadcrumb strong {
    color: var(--green);
}

.camp-hero-inner {
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 48% 52%;
    align-items: center;
    gap: 30px;
}

.camp-hero-text h1 {
    margin: 0 0 18px;
    color: var(--green);
    font-size: clamp(42px, 5vw, 72px);
    line-height: 1.05;
    font-weight: 900;
    text-transform: uppercase;
}

.camp-hero-text h1 span {
    color: var(--yellow);
}

.camp-hero-text p {
    max-width: 720px;
    margin: 0;
    font-size: 22px;
    line-height: 1.45;
    color: var(--blue);
}

.camp-hero-image {
    min-height: 250px;
    background-image: url("/assets/titulni.jpg");
    background-size: cover;
    background-position: center;
    border-radius: 14px;
}


/* Nadpis sekce */

.camp-section {
    max-width: 1540px;
    margin: 0 auto;
    padding: 30px 28px 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 28px;
}

.section-title h2 {
    margin: 0 0 8px;
    color: var(--green);
    font-size: 38px;
    font-weight: 900;
    text-transform: uppercase;
}

.section-title p {
    margin: 0;
    font-size: 18px;
    color: var(--blue);
}


/* Karty táborů */

.camp-list {
    margin-left: -8px;
    margin-right: -8px;
}

.camp-col {
    margin-bottom: 32px;
}

.camp-card {
    position: relative;
    overflow: hidden;
    height: 100%;
    background: #fff8e5;
    border-radius: 10px;
    box-shadow: 0 4px 18px rgba(0,0,0,.10);
    text-align: center;
}

.camp-date {
    position: absolute;
    top: 280px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    background: var(--green);
    color: #fff;
    padding: 9px 18px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 3px 10px rgba(0,0,0,.18);
}

.camp-card-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.camp-card-body {
    padding: 22px 24px 26px;
}

.camp-card h3 {
    margin: 0 0 14px;
    color: var(--green);
    font-size: 23px;
    line-height: 1.2;
    font-weight: 900;
    text-transform: uppercase;
}

.camp-card p {
    margin: 5px 0;
    font-size: 15px;
    line-height: 1.45;
    color: var(--blue);
}

.camp-btn {
    display: inline-block;
    margin-top: 17px;
    padding: 12px 22px;
    background: var(--green);
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    transition: transform .2s ease, box-shadow .2s ease;
}

.camp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(0,0,0,.18);
}

.camp-link {
    display: block;
    margin-top: 13px;
    color: var(--blue);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
}

.camp-link:hover {
    color: var(--green);
    text-decoration: underline;
}


/* Placeholder karty bez samostatného plakátu */

.camp-placeholder {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background:
        radial-gradient(circle at top left, rgba(255,196,0,.35), transparent 35%),
        radial-gradient(circle at bottom right, rgba(22,130,13,.22), transparent 38%),
        #f3f7ee;
}

.camp-placeholder span {
    color: var(--green);
    font-size: 34px;
    line-height: 1.1;
    font-weight: 900;
    text-transform: uppercase;
}

.camp-card-english .camp-placeholder {
    background:
        radial-gradient(circle at top left, rgba(0,70,160,.20), transparent 35%),
        radial-gradient(circle at bottom right, rgba(255,196,0,.30), transparent 38%),
        #eef6ff;
}


/* Informační boxy */

.camp-info-boxes {
    max-width: 1500px;
    margin: 10px auto 40px;
    padding: 0 42px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.camp-info-box {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 24px 26px;
    background: #fffdf4;
    border: 1px solid #e4e1c8;
    border-radius: 12px;
}

.camp-info-icon {
    font-size: 34px;
    line-height: 1;
}

.camp-info-box h3 {
    margin: 0 0 7px;
    color: var(--blue);
    font-size: 17px;
    font-weight: 900;
}

.camp-info-box p {
    margin: 0;
    font-size: 15px;
    line-height: 1.45;
}


/* Souhrnný plakát */

.camp-summary {
    max-width: 1500px;
    margin: 30px auto 45px;
    padding: 40px 42px;
    display: grid;
    grid-template-columns: 44% 56%;
    gap: 42px;
    align-items: center;
    background: #f3f7ee;
    border-radius: 16px;
}

.camp-summary-text h2 {
    margin: 0 0 16px;
    color: var(--green);
    font-size: 36px;
    font-weight: 900;
    text-transform: uppercase;
}

.camp-summary-text p {
    margin: 0 0 18px;
    font-size: 18px;
    line-height: 1.5;
}

.camp-summary-text ul {
    margin: 0 0 22px;
    padding-left: 22px;
}

.camp-summary-text li {
    margin-bottom: 8px;
    font-size: 16px;
}

.camp-btn-large {
    margin-right: 16px;
}

.camp-link-large {
    display: inline-block;
    color: var(--blue);
    font-weight: 800;
    text-decoration: none;
}

.camp-link-large:hover {
    color: var(--green);
    text-decoration: underline;
}

.camp-summary-image-wrap img {
    width: 100%;
    max-height: 620px;
    object-fit: contain;
    display: block;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(0,0,0,.12);
    background: #fff;
}


/* Rezervační sekce */

.camp-reservation {
    max-width: 1100px;
    margin: 30px auto 50px;
    padding: 38px 42px;
    text-align: center;
    background: #fff8e5;
    border-radius: 16px;
}

.camp-reservation h2 {
    margin: 0 0 12px;
    color: var(--green);
    font-size: 34px;
    font-weight: 900;
    text-transform: uppercase;
}

.camp-reservation p {
    max-width: 760px;
    margin: 0 auto 10px;
    font-size: 18px;
    line-height: 1.5;
}


/* Responsivita stránky táborů */

@media (max-width: 1100px) {

    .camp-hero-inner {
        grid-template-columns: 1fr;
    }

    .camp-hero-image {
        min-height: 230px;
    }

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

    .camp-summary {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 900px) {

    .camp-hero {
        padding: 28px 24px 15px;
    }

    .camp-hero-text h1 {
        font-size: 42px;
    }

    .camp-hero-text p {
        font-size: 18px;
    }

    .camp-card-img,
    .camp-placeholder {
        height: 260px;
    }

    .camp-info-boxes {
        padding: 0 24px;
    }

    .camp-summary {
        margin-left: 24px;
        margin-right: 24px;
        padding: 30px 24px;
    }

    .camp-summary-text h2 {
        font-size: 30px;
    }

}

@media (max-width: 600px) {

    .camp-hero {
        padding-left: 18px;
        padding-right: 18px;
    }

    .camp-breadcrumb {
        font-size: 14px;
    }

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

    .camp-section {
        padding-left: 14px;
        padding-right: 14px;
    }

    .section-title h2 {
        font-size: 30px;
    }

    .camp-card-img,
    .camp-placeholder {
        height: 230px;
    }

    .camp-placeholder span {
        font-size: 27px;
    }

    .camp-card-body {
        padding: 20px 18px 24px;
    }

    .camp-date {
        font-size: 14px;
        padding: 8px 14px;
    }

    .camp-info-boxes {
        padding-left: 18px;
        padding-right: 18px;
    }

    .camp-info-box {
        padding: 22px 20px;
    }

    .camp-summary {
        margin-left: 18px;
        margin-right: 18px;
        padding: 26px 20px;
    }

    .camp-reservation {
        margin-left: 18px;
        margin-right: 18px;
        padding: 30px 20px;
    }

    .camp-btn-large {
        margin-right: 0;
        margin-bottom: 14px;
    }

}

.camp-hero-image {
min-height:350px;
background-image: url("/assets/tabory/titulni-tabory.jpg");
background-size: cover;
background-position: center;
border-radius: 14px;
}


/* =========================================================

   REZERVAČNÍ FORMULÁŘ - PŘÍMĚSTSKÉ TÁBORY

   ========================================================= */

.reservation-hero {

    padding: 35px 42px 20px;

    background: #fff;

}

.reservation-hero-inner {

    max-width: 1500px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 48% 52%;

    align-items: center;

    gap: 30px;

}

.reservation-hero-text h1 {

    margin: 0 0 22px;

    color: var(--green);

    font-size: clamp(38px, 4.5vw, 66px);

    line-height: 1.08;

    font-weight: 900;

    text-transform: uppercase;

}

.reservation-hero-text h1 span {

    color: var(--yellow);

    text-transform: none;

}

.reservation-hero-text p {

    max-width: 700px;

    margin: 0;

    font-size: 21px;

    line-height: 1.5;

    color: var(--blue);

}

.reservation-hero-image {

    min-height: 270px;

    background-image: url("/assets/tabory/souhrn-tabory-2026.jpg");

    background-size: cover;

    background-position: top center;

    border-radius: 14px;

}

/* Formulář */

.reservation-section {

    max-width: 1500px;

    margin: 0 auto;

    padding: 25px 42px 35px;

}

.reservation-box {

    display: grid;

    grid-template-columns: 36% 64%;

    overflow: hidden;

    background: #fff;

    border: 1px solid #e1e1d5;

    border-radius: 14px;

    box-shadow: 0 4px 22px rgba(0,0,0,.06);

}

.reservation-left {

    padding: 34px 34px;

    background: #fbfaf1;

}

.reservation-left h2 {

    display: flex;

    align-items: center;

    gap: 14px;

    margin: 0 0 24px;

    color: var(--green);

    font-size: 27px;

    font-weight: 900;

    text-transform: uppercase;

}

.reservation-icon {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    width: 52px;

    height: 52px;

    background: var(--green);

    color: #fff;

    border-radius: 50%;

    font-size: 25px;

}

.camp-checkbox-list {

    display: flex;

    flex-direction: column;

    gap: 10px;

}

.camp-checkbox-item {

    display: flex;

    align-items: center;

    gap: 16px;

    min-height: 66px;

    padding: 14px 16px;

    background: #fff;

    border: 1px solid #deded2;

    border-radius: 9px;

    cursor: pointer;

    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;

}

.camp-checkbox-item:hover {

    border-color: var(--green);

    box-shadow: 0 3px 12px rgba(0,0,0,.08);

    transform: translateY(-1px);

}

.camp-checkbox-item input {

    width: 22px;

    height: 22px;

    flex: 0 0 auto;

    accent-color: var(--green);

}

.camp-checkbox-content {

    display: grid;

    grid-template-columns: 150px 1fr;

    align-items: center;

    gap: 18px;

    width: 100%;

}

.camp-checkbox-content strong {

    color: var(--green);

    font-size: 17px;

    font-weight: 900;

    white-space: nowrap;

}

.camp-checkbox-content em {

    color: var(--blue);

    font-size: 16px;

    font-style: normal;

    font-weight: 600;

}

.reservation-note {

    margin-top: 28px;

    padding: 20px 22px;

    background: #f3f7ee;

    border: 1px solid #dce6d2;

    border-radius: 10px;

    color: var(--blue);

    font-size: 15px;

    line-height: 1.5;

}

/* Pravá část */

.reservation-right {

    padding: 34px 46px;

}

.form-row {

    display: grid;

    grid-template-columns: 220px 1fr;

    align-items: center;

    gap: 22px;

    margin-bottom: 14px;

}

.form-row label {

    color: var(--blue);

    font-size: 16px;

    font-weight: 500;

}

.form-row input,

.form-row textarea {

    width: 100%;

    padding: 12px 14px;

    border: 1px solid #d8d8d8;

    border-radius: 7px;

    font-size: 16px;

    font-family: Arial, Helvetica, sans-serif;

    color: var(--blue);

}

.form-row input:focus,

.form-row textarea:focus {

    outline: none;

    border-color: var(--green);

    box-shadow: 0 0 0 3px rgba(22,130,13,.12);

}

.reservation-submit {

    margin-top: 25px;

    padding-top: 24px;

    text-align: center;

    border-top: 1px dashed #d8d8d8;

}

.gdpr-check {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 18px;

    font-size: 15px;

    color: var(--blue);

}

.gdpr-check input {

    width: 18px;

    height: 18px;

    accent-color: var(--green);

}

.reservation-btn {

    display: inline-block;

    min-width: 280px;

    padding: 15px 30px;

    border: 0;

    border-radius: 7px;

    background: var(--green);

    color: #fff;

    font-size: 18px;

    font-weight: 600;

    text-transform: uppercase;

    cursor: pointer;

    box-shadow: 0 4px 12px rgba(0,0,0,.18);

    transition: transform .2s ease, box-shadow .2s ease;

}

.reservation-btn:hover {

    transform: translateY(-2px);

    box-shadow: 0 6px 16px rgba(0,0,0,.22);

}

.reservation-submit p {

    margin: 16px 0 0;

    color: var(--blue);

    font-size: 14px;

}

/* Responsivita */

@media (max-width: 1200px) {

    .reservation-box {

        grid-template-columns: 1fr;

    }

    .reservation-left,

    .reservation-right {

        padding: 30px 28px;

    }

}

@media (max-width: 900px) {

    .reservation-hero {

        padding: 28px 24px 15px;

    }

    .reservation-hero-inner {

        grid-template-columns: 1fr;

    }

    .reservation-hero-image {

        min-height: 230px;

    }

    .reservation-section {

        padding: 24px;

    }

    .form-row {

        grid-template-columns: 1fr;

        gap: 7px;

    }

    .camp-checkbox-content {

        grid-template-columns: 1fr;

        gap: 4px;

    }

}

@media (max-width: 600px) {

    .reservation-hero {

        padding-left: 18px;

        padding-right: 18px;

    }

    .reservation-hero-text h1 {

        font-size: 34px;

    }

    .reservation-hero-text p {

        font-size: 17px;

    }

    .reservation-section {

        padding-left: 18px;

        padding-right: 18px;

    }

    .reservation-left,

    .reservation-right {

        padding: 24px 18px;

    }

    .reservation-left h2 {

        font-size: 23px;

    }

    .camp-checkbox-item {

        align-items: flex-start;

        padding: 14px;

    }

    .reservation-btn {

        width: 100%;

        min-width: 0;

        font-size: 16px;

    }

}

.reservation-hero-image {
min-height: 350px;
background-image: url("/assets/tabory/tabory-rezerevace-titulni.jpg");
background-size: cover;
background-position: center;
border-radius: 14px;
}


/* OPRAVA HEADERU PO ZMĚNĚ PÍSMA */

.site-header {

  display: flex;

  align-items: flex-start;

  justify-content: flex-start;

  gap: clamp(24px, 5vw, 90px);

  padding: 24px 42px 10px;

  background: #fff;

}

.logo-wrap {

  display: flex;

  align-items: center;

  gap: 18px;

  flex: 0 0 auto;

}

.logo-wrap img {

  width: 120px;

  height: auto;

  display: block;

}

.logo-text {

  display: flex;

  flex-direction: column;

  line-height: 1.05;

  margin-top: 0;

}

.logo-text span {

  font-size: 24px;

  font-weight: 700;

  color: #000;

  white-space: nowrap;

}

.main-nav {

  display: flex;

  flex-wrap: wrap;

  align-items: center;

  gap: 18px 34px;

  margin-left: 0;

  margin-top: 10px;

  min-width: 0;

}

.main-nav a,

.dropdown > a {

  white-space: nowrap;

}

@media (max-width: 900px) {

  .site-header {

    display: block;

    position: relative;

    padding: 20px 24px;

  }

  .main-nav {

    display: none !important;

  }

  .main-nav.mobile-open {

    display: flex !important;

    flex-direction: column;

    align-items: flex-start;

    width: 100%;

    margin-top: 20px;

  }

}


/* BLOKY S ODKAZY NA TITULNI STRANCE */

.activity-card-link {
  display: block;
  color: inherit;
  text-decoration: none !important;
  height: 100%;
  cursor: pointer;
}

.activity-card-link:hover {
  color: inherit;
  text-decoration: none;
}

.activity-card {
  transition: 0.25s ease;
}

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

html,
body,
button,
input,
textarea,
select {
    font-family: "Fredoka", sans-serif;
}
