/* === Webfont Merlin – vlastní soubor z /assets/fonts === */
@font-face {
  font-family: 'Merlin';
  src: url('../fonts/merlin.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

html {
  box-sizing: border-box;
}

*, ::before, ::after {
  box-sizing: inherit;
}

body {
  font-family: "Roboto", sans-serif;
  background-color: white;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  line-height: 30px;
}

.logo__text {
    display: block;
    font-family: 'Merlin', serif;
    font-size: 32px;
    line-height: 1.1;
    color: #000; /* TADY je barva textu – podle návrhu je černá */
}

.logo__text small {
    display: block;
    font-size: 18px;
    font-family: 'Roboto', sans-serif;
    color: #000; /* taky černá */
    margin-top: -2px;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__nav {
  margin-right: 0;  /* nebo jiná hodnota podle návrhu */
}

/* Hlavní menu vpravo nahoře */
.header__nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 40px;             /* rozestup mezi položkami */
  align-items: center;
}

.header ul li a {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 18px;
    text-decoration: none; /* pryč podtržení */
    color: #000;           /* černý text */
}

.header__nav ul li a:visited {
  color: #000;           /* ať není fialová po návštěvě */
}

.header__nav ul li a:hover {
  color: #ff1430;        /* červené při najetí myší */
}

.header__nav ul li:last-child a {
  background: #ff1430;
  color: #fff;
  padding: 0.6rem 1.6rem;
  border-radius: 999px;
}

.header__nav ul li:last-child a:hover {
  background: #d51028;
  color: #fff;
}

h1, h2, h3 {
  color: #121212;
}

h1, h2, h3 {
  font-family: "Merlin", "Roboto", sans-serif;
  font-weight: 400;
}

.title h1, .title h2 {
  font-family: "Merlin", "Roboto", sans-serif;
}

.welcome h1, .welcome h2 {
  font-family: "Merlin", "Roboto", sans-serif;
}

h1 {
  font-size: 30px;
  margin: 0;
  padding: 0;
}

h2 {
  font-size: 20px;
  margin: 0;
  padding: 0;
}

p {
  text-indent: 1em;
}

.title a {
  text-decoration: none;
}

svg {
  float: left;
  width: 100px;
  height: 100px;
}

header {
  padding: 0 2em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to bottom, #F5F5F1, rgb(251, 246, 246));
  width: auto;
  height: 100%;
  box-shadow: 7px 7px 15px rgba(48, 48, 48, 0.317);
}

.header__left {
  display: flex;
  align-items: center;
  gap: 12px;
}

a.logo {
  display: flex;
  align-items: center;
  margin: 10px;
  font-size: 3em;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

/* LOGO V HLAVIČCE */

.header__left img {
    height: 100px;        /* ↓ výška loga – klidně uprav podle pocitu */
    width: auto;         /* automatické měřítko */
    display: block;
}

/* ===== DESKTOP (širší obrazovky) ===== */
@media (min-width: 769px) {
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 60px;
  }

  .header__nav {
    margin-right: 60px;
  }

  .header__nav ul {
    list-style: none;
    display: flex;
    gap: 40px;
    margin: 0;
    padding: 0;
  }

}

@media (max-width: 768px) {
    .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
  }

  .header__left {
    flex-direction: row;
    align-items: center;
  }

  .header__left img {
    height: 45px;    /* zmenšení loga */
  }

  .header__left .title h1 {
    font-size: 26px;
  }
  .header__left .title h2 {
    font-size: 16px;
  }

  /* schovat klasické vodorovné menu */
  .header__nav {
    display: none;
  }

  /* Hlavní menu: skrýt */
  .header__nav ul {
    display: none;  /* menu zmizí a zůstane jen hamburger */
  }

    .logo__text {
        font-size: 24px;
    }

    .logo__text small {
        font-size: 14px;
    }
}

.header__left .title {
  display: flex;
  flex-direction: column;
  margin-left: 12px;     /* ← tady si můžeš pohrát s číslem (10–20px) */
}

.header__left .title a {
  display: flex;
  flex-direction: column;
  text-align: left;
  text-decoration: none;
}

/* Fonty pro oba řádky vedle loga */
.header__left .title h1,
.header__left .title h2 {
  margin: 0;
  text-align: left;
  font-family: "Merlin", serif;   /* oba řádky keltickým fontem */
}

/* Druhý řádek menší */
.header__left .title h2 {
  font-size: 0.6em;      /* můžeš doladit 0.5–0.7em podle oka */
  font-weight: normal;
}

@media screen and (min-width: 850px) {
  header {
    position: sticky;
    top: 0;
  }
}

nav .menu__item {
  display: none;
}

.menu__link {
  color: #121212;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
}

.menu__item a:hover {
  color: rgb(229, 9, 20);
}

@media screen and (min-width: 850px) {
  nav {
    display: flex;
    justify-content: center;
    align-items: end;
    padding: 0;
    font-family: "merlin", sans-serif;
  }
  header nav {
    display: flex;
  }
  header nav ul {
    display: flex;
    -moz-column-gap: 5px;
         column-gap: 5px;
    padding: 0;
  }
  header nav ul li {
    display: flex;
  }
  .menu__item {
    display: inline;
    padding-left: 40px;
  }
  .menu__item a:hover {
    color: rgb(229, 9, 20);
  }
  .menu__link {
    color: #121212;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 13px;
    transition: 0.3s ease;
  }
  header ul #contact a {
    background-color: rgb(229, 9, 20);
    color: #F5F5F1;
    border-radius: 20px;
    float: right;
    position: relative;
    transition: 0.3s ease;
  }
  header ul #contact a:hover {
    background-color: #B81D24;
  }

  nav .menu__item {
    display: inline;
  }
}
.box {
  text-align: justify;
}

.inner_container h1 {
  font-size: 40px;
  text-align: center;
}
.inner_container p {
  font-size: 16px;
}

.wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  background-color: white;
  padding: 0;
}

.inner_container {
  background-color: #F5F5F1;
  padding: 50px;
  background-size: 30%;
  border-radius: 5px;
  box-shadow: 7px 7px 15px rgba(48, 48, 48, 0.317);
  margin: 0 0.5em;
}

.more_information {
  display: flex;
  justify-content: space-between;
  font-weight: 500;
  font-size: 15px;
  font-family: "Roboto", sans-serif;
}
.more_information a {
  text-decoration: none;
  color: #121212;
}
.more_information a:hover {
  color: rgb(229, 9, 20);
}

.img_history, .img_irish-dance {
  max-width: 100%;
  height: auto;
  padding: 1em;
}

.container_history {
  display: flex;
  justify-content: center;
}

#historie p, #irsky-tanec p, #druhy p {
  padding: 0 1em;
}
#historie h1, #historie h2, #historie .img_history, #historie .img_irish-dance, #irsky-tanec h1, #irsky-tanec h2, #irsky-tanec .img_history, #irsky-tanec .img_irish-dance, #druhy h1, #druhy h2, #druhy .img_history, #druhy .img_irish-dance {
  padding: 1em;
}

#irsky-tanec {
  background-color: white;
}
#irsky-tanec h1 {
  text-align: center;
}

#historie {
  background-color: white;
}
#historie h1 {
  text-align: center;
}

.irish-dance_box {
  text-align: center;
}

.container_irish-dance img {
  max-width: 100%;
  height: auto;
}

.cantainer_irish-dance_text {
  max-width: 900px;
  text-align: justify;
  justify-content: center;
}

#druhy {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
  margin: auto;
}
#druhy h1, #druhy h2, #druhy p {
  padding: 0 1em;
  text-align: justify;
}
#druhy h2 {
  padding-top: 15px;
}

.box h1, h2 {
  text-align: center;
}

#historie, #irskz-tanec, #druhy {
  padding: 40px 10px;
}

@media screen and (min-width: 880px) {
  .box h1 {
    text-align: left;
  }
  .wrapper {
    display: flex;
    align-items: center;
    justify-content: left;
    min-height: 80vh;
    background-image: url(../images/cerne_kroje.jpg);
    background-repeat: no-repeat;
    background-position: right;
    background-size: 55%;
    overflow: hidden;
    padding: 0;
    margin: 0;
  }
  .inner_container {
    width: 54%;
    float: left;
    background-color: #F5F5F1;
    padding: 50px;
    border-radius: 5px;
    box-shadow: 7px 7px 15px rgba(48, 48, 48, 0.317);
    margin: 0 0.5em;
  }
  .irish-dance_box {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .irish-dance_box p {
    max-width: 900px;
  }
  .img_irish-dance {
    float: right;
    width: auto;
    max-height: 700px;
  }
  .container_irish-dance_text {
    display: flex;
    justify-content: center;
  }
  .container_history {
    display: flex;
    justify-content: center;
  }
  .history_box {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .img_history {
    max-width: 100%;
    height: auto;
    padding: 1em;
    margin-right: 1em;
  }
  .container_history_text {
    max-width: 900px;
    text-align: justify;
    justify-content: center;
  }
  #druhy h1 {
    text-align: left;
  }
}
footer .social a {
  color: white;
  font-size: 40px;
  margin: 0 10px;
}

.footer .social a {
    text-decoration: none !important;
    position: relative;
    display: inline-block;
}

.footer .social a i:hover {
    transform: scale(1.1);
}

.footer .social a:hover {
    color: #ff1430;
}

.footer_menu ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: flex;
    gap: 40px;     /* vzdálenost mezi odkazy */
    justify-content: center;
}

.footer_menu ul li a {
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    color: #fff;
    transition: 0.2s ease;
}

.footer_menu ul li a:hover {
    color: #ff1430;
}

footer .social a:hover i.fa-facebook {
  color: #1877F2;
}

footer .social a:hover i.fa-instagram {
  color: #E4405F;
}

footer .social a:hover i.fa-youtube {
  color: #CD201F;
}

.footer_menu ul,
.footer_menu ul li,
.footer .social ul,
.footer .social ul li {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.footer {
  background-color: #333;
  color: #fff;
  padding: 20px;
  text-align: center;
  line-height: 1.5;
}

.footer h1 {
  margin: 0;
  font-size: 24px;
  color: white;
}

.footer h2 {
  margin-top: 5px;
  font-size: 18px;
  color: white;
}

.footer a {
  color: #fff;
  text-decoration: none;
  margin: 0 10px;
}

.footer a:hover {
  text-decoration: underline;
  color: rgb(229, 9, 20);
}

.footer_menu {
  margin: 5px 0;
}

.box_kurzy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 50px;
  background-image: url(../images/cernobila.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  height: auto;
}

.card {
  width: 90%;
  max-width: 350px;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 10px;
  margin-bottom: 20px;
  transition: box-shadow 0.3s ease;
  background-color: #F5F5F1;
  box-shadow: 7px 7px 15px rgba(48, 48, 48, 0.317);
}

.card-img {
  width: 100%;
  border-radius: 5px 5px 0 0;
}

.card-desc {
  padding: 10px;
  text-align: center;
}

.card-desc h3 {
  margin-top: 0;
  font-size: 22px;
}

.card-desc p {
  text-align: justify;
  text-indent: 1em;
}

.button {
  display: block;
  width: 100px;
  margin: 10px auto 0;
  padding: 5px;
  background-color: rgb(229, 9, 20);
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

a.button:hover {
  background-color: #B81D24;
}

a.button {
  margin-top: 1em;
}

@media screen and (min-width: 880px) {
  .box_kurzy {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 3em;
  }
  .card {
    width: calc(50% - 20px);
    height: 554px;
  }
}
.detske {
  display: flex;
  justify-content: center;
  text-align: justify;
  flex-direction: column;
  max-width: 950px;
  margin: 0 auto;
  padding: 40px 20px;
}
.detske h1 {
  text-align: center;
}

.card_detske {
  margin: 0 auto;
  max-width: 300px;
  background-color: #F5F5F1;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
  margin-top: 10px;
}

.card_detske ul {
  list-style-type: none;
  padding: 0;
}

.card_detske li {
  padding: 8px 0;
}

.fotky-detske {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.fotky-detske img {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
  border-radius: 4px;
}

@media screen and (min-width: 880px) {
  .fotky-detske img {
    flex: 1;
    max-width: calc(50% - 20px);
    margin: 0 10px;
  }
}
.dospele {
  display: flex;
  justify-content: center;
  text-align: justify;
  flex-direction: column;
  max-width: 950px;
  margin: 0 auto;
  padding: 40px 20px;
}
.dospele h1 {
  text-align: center;
}

.card_dospele {
  margin: 0 auto;
  max-width: 300px;
  background-color: #F5F5F1;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
  margin-top: 10px;
}

.card_dospele ul {
  list-style-type: none;
  padding: 0;
}

.card_dospele li {
  padding: 8px 0;
}

.fotky-dospele {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.fotky-dospele img {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
  border-radius: 4px;
}

@media screen and (min-width: 880px) {
  .fotky-dospele img {
    flex: 1;
    max-width: calc(50% - 20px);
    margin: 0 10px;
  }
}
.welcome {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100vh;
  color: white;
  overflow: hidden;
  margin-bottom: 90px;
  padding-top: 15vh;
}

@media (max-width: 768px) {
  .welcome {
    padding-top: 10vh;
  }
}

.background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/druidi.jpg") no-repeat center center;
  background-size: cover;
  filter: brightness(50%);
  z-index: -1;
}

.welcome h1, .welcome h2 {
  margin: 10px 0;
  color: white;
  font-family: 'Merlin', serif;
}

.welcome svg {
  width: 500px;
  height: auto;
  margin-bottom: 20px;
}

.gallery {
  padding: 10px;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  display: inline-block;
}

.gallery > div {
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery > div > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}

.gallery {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-auto-rows: 200px;
  grid-auto-flow: dense;
}

.gallery .wide {
  grid-column: span 2;
}

.gallery .tall {
  grid-row: span 2;
}

.gallery .big {
  grid-column: span 2;
  grid-row: span 2;
}

.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: justify;
  margin: 0 auto;
  padding: 20px;
  max-width: 1000px;
}

.contact a {
  text-decoration: none;
  color: #121212;
  font-style: normal;
}

.contact a:hover {
  color: rgb(229, 9, 20);
}

.contact-right .social {
  display: flex;
}

.contact-right .fa-envelope {
  padding-right: 10px;
}
.contact-right .fa-phone {
  padding-right: 10px;
}

.contact-right .social a {
  color: #121212;
  font-size: 40px;
  margin: 0 10px;
}

.contact-right .social a:hover i.fa-facebook {
  color: #1877F2;
}

.contact-right .social a:hover i.fa-instagram {
  color: #E4405F;
}

.contact-right .social a:hover i.fa-youtube {
  color: #CD201F;
}

.contact-right .address {
  margin-top: 50px;
}
.contact-right .social {
  margin-top: 50px;
  justify-content: center;
}
.contact-right .email {
  margin-top: 10px;
}
.contact-right .telefon {
  margin-top: 20px;
}

.contact-right a {
  display: block;
  margin-bottom: 5px;
}

h1 {
  text-align: center;
  margin-bottom: 20px;
}

.contact-right h2,
.contact-right h1,
.contact-right a,
.contact-right .social,
.contact-right .address,
.contact-left .map,
.contact-left .left-address {
  margin-bottom: 20px;
}

@media (min-width: 850px) {
  .contact {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
  }
  .contact-left, .contact-right {
    flex: 1;
    margin: 20px;
  }
  .contact-left {
    order: 1;
  }
  .contact-right {
    order: 2;
  }
  .map iframe {
    width: 100%;
    height: 100%;
  }
}
.prihlaska {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 100%;
  padding: 20px;
}

.formular {
  width: 100%;
  max-width: 400px;
  text-align: center;
}

.formular h1 {
  margin-bottom: 20px;
}

.formular label {
  display: block;
  margin-top: 10px;
  text-align: left;
}

.formular input,
.formular select,
.formular textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.formular button {
  display: block;
  width: 100px;
  height: 35px;
  margin: 10px auto 20px;
  padding: 5px;
  background-color: rgb(229, 9, 20);
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  text-align: center;
  border: none;
  cursor: pointer;
}

.formular button:hover {
  background-color: #B81D24;
}

@media screen and (min-width: 850px) {
  .prihlaska {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    margin: 0 auto;
  }
  .formular {
    max-width: 900px;
    text-align: left;
  }
  .formular h1 {
    text-align: center;
  }
}/*# sourceMappingURL=style.css.map */

.header__left .title h1,
.header__left .title h2,
.welcome h1,
.welcome h2 {
    font-family: 'Merlin', serif !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Merlin', serif !important;
}

/* ===== LEKTOŘI ===== */

.teachers {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px 80px;
}

.teachers__title {
  text-align: center;
  margin-bottom: 40px;
}

/* ===== LEKTOŘI – layout text vlevo, fotky vpravo ===== */

/* Obal sloupců (blok Columns s CSS třídou teacher-row) */
.wp-block-columns.teacher-row {
  max-width: 1100px;
  margin: 40px auto;
  align-items: center;   /* zarovná výšky obou sloupců */
}

/* levý sloupec – text */
.wp-block-columns.teacher-row > .wp-block-column:first-child {
  flex-basis: 66.66%;
}

/* pravý sloupec – fotky */
.wp-block-columns.teacher-row > .wp-block-column:last-child {
  flex-basis: 33.33%;
  display: flex;
  justify-content: center;  /* galerie doprostřed sloupce */
}

/* samotná galerie s fotkami */
.wp-block-columns.teacher-row > .wp-block-column:last-child .wp-block-gallery {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

/* odstranění defaultních marginů kolem figure */
.wp-block-columns.teacher-row > .wp-block-column:last-child .wp-block-gallery figure.wp-block-image {
  margin: 0;
  width: auto !important;      /* nedrž 100 % šířky */
  flex: 0 0 auto;              /* ať se chovají jako malé krabičky vedle sebe */
}

/* obrázky – menší, se zaoblením */
.wp-block-columns.teacher-row > .wp-block-column:last-child .wp-block-gallery img {
  width: 160px !important;      /* tady přidáme !important */
  max-width: none !important;
  height: auto !important;
  border-radius: 12px;
  object-fit: cover;
}

/* trochu líp čitelný text vlevo */
.wp-block-columns.teacher-row > .wp-block-column:first-child p {
  line-height: 1.6;
  margin-bottom: 8px;
}

/* Lektori – fotky vedle sebe */
.wp-block-columns.teacher-row .wp-block-gallery {
    display: flex !important;
    gap: 16px; /* mezera mezi fotkami – můžeš upravit */
}

.wp-block-columns.teacher-row .wp-block-gallery figure {
    margin: 0 !important; /* odstraní mezery kolem každé fotky */
}

.wp-block-columns.teacher-row .wp-block-gallery img {
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}



/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .wp-block-columns.teacher-row {
    flex-direction: column;
  }

  .wp-block-columns.teacher-row > .wp-block-column:last-child .wp-block-gallery img {
    width: 70%;
  }
}

@media (max-width: 768px) {
    .wp-block-columns.teacher-row .wp-block-gallery {
        flex-direction: column;  /* na mobilu pod sebe – je to přehlednější */
        align-items: center;
    }
}


/* === Tady vynutíme Merlin všude, kde ho chceme === */

/* všechny nadpisy */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merlin', serif !important;
}

/* logo/text vedle loga v headeru */
.header__left .title h1,
.header__left .title h2 {
  font-family: 'Merlin', serif !important;
}

/* hero text na úvodní stránce */
.welcome h1,
.welcome h2 {
  font-family: 'Merlin', serif !important;
}

/* nadpisy v patičce, kde ho chceš */
.footer h1,
.footer h2 {
  font-family: 'Merlin', serif !important;
}

/* ===== ZÁKLAD – společné ===== */

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 60px;
  position: relative;
  z-index: 100;
}

/* checkbox nikdy není vidět */
.nav-toggle {
  display: none;
}

/* desktopové menu */
.header__nav ul {
  list-style: none;
  display: flex;
  gap: 40px;
  margin: 0;
  padding: 0;
}

/* ===== MOBIL ===== */

@media (max-width: 768px) {
  .header {
    padding: 10px 16px;
  }

  /* schovat vodorovné menu */
  .header__nav {
    display: none;
  }

  /* když je checkbox ZAŠKRTNUTÝ → zobrazit menu */
  .nav-toggle:checked ~ .header__nav {
    display: block;
    position: absolute;
    right: 16px;
    top: 70px;
    background: #ffffff;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  }

  .header__nav ul {
    flex-direction: column;
    gap: 12px;
  }

  .header__nav ul li {
    list-style: none;
  }

  .header__nav ul li a {
    color: #000;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
  }

  /* poslední položku (Kontakt) můžeš mít jako button – podle potřeby uprav */
  .header__nav ul li:last-child a {
    background: #ff1430;
    color: #fff;
    padding: 8px 20px;
    border-radius: 999px;
    display: inline-block;
  }
}

/* ===== HORNÍ MENU – DESKTOP + MOBIL ===== */

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 60px;
  position: relative;
  z-index: 100;
}

/* základní vzhled menu na desktopu */
.header__nav ul {
  list-style: none;
  display: flex;
  gap: 40px;
  margin: 0;
  padding: 0;
}

/* HAMBURGER – základ */
.nav-toggle__btn {
  display: none;  /* ukážeme až na mobilu */
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

/* tři čárky */
.nav-toggle__btn span {
  display: block;
  width: 26px;
  height: 3px;
  background: #000;
  border-radius: 3px;
  position: relative;
}

.nav-toggle__btn span + span {
  margin-top: 5px;
}

/* ===== MOBIL ===== */

@media (max-width: 768px) {
  .header {
    padding: 10px 16px;
  }

  /* schovat vodorovné menu, ukázat hamburger */
  .header__nav {
    display: none;
  }

  .nav-toggle__btn {
    display: block;
  }

  /* otevřené/zavírající se menu */
  .header__nav.open,
  .header__nav.open.closing {
    display: block;
    position: absolute;
    right: 4px;           /* blíž k pravému okraji – můžeš ještě snížit třeba na 0 */
    top: 70px;
    background: #ffffff;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  }

  /* animace při otevření */
  .header__nav.open {
    animation: menuSlideIn 0.35s ease-out;
  }

  /* animace při zavírání (open + closing) */
  .header__nav.open.closing {
    animation: menuSlideOut 0.35s ease-in;
  }

  .header__nav.open ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .header__nav.open ul li a {
    color: #000;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
  }

  .header__nav.open ul li:last-child a {
    background: #ff1430;
    color: #fff;
    padding: 8px 20px;
    border-radius: 999px;
    display: inline-block;
  }
}

/* nové animace */
@keyframes menuSlideIn {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes menuSlideOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-12px);
  }
}

.page-default {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px 80px;
}

.page-default__content p {
  line-height: 1.6;
}

.contact-form__message {
    margin: 0 0 1.5rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 600;
}

.contact-form__message--success {
    background: #e6ffea;
    color: #1b7b30;
}

.contact-form__message--error {
    background: #ffe6e6;
    color: #b52222;
}









