/* OBECNÉ NASTAVENÍ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box ;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: white;
}

.shadow {
    box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.71);
    -webkit-box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.71);
    -moz-box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.71);
}

/* OBRÁZKY */
.logo1 {
    max-width: 300px;
}

.galeryPic {
    width: 100%;
    display: block;   /* 🔥 nejdůležitější */
}

.galerieFotek {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  line-height: 0;   /* 🔥 odstraní mezeru mezi řádky */
}

.qr {
  max-width: 38%;
}

.lb-image {
  max-width: none !important;
  width: auto !important;
}

.logo2 {
    max-width: 15%;
}

.uvodFoto {
    max-width: 100%;
    border-style: solid;
    border-width: 1px;
    border-color: #231f20;
}

.uvodFoto2 {
    max-width: 92%;
    border-style: solid;
    border-width: 1px;
    border-color: #231f20;
}

.uvodGalFoto {
    max-width: 100%;
    border-style: solid;
    border-width: 1px 0 1px 0;
    border-color: #231f20;
}

.uvodPopisFoto {
    max-width: 28%;
    border-style: solid;
    border-width: 1px;
    border-color: #231f20;
}

.medailFoto {
    border-radius: 50%;
    max-width: 40%;
    margin-bottom: 5px;
}

.kartaFoto {
    max-width: 95%;
    margin-bottom: 10px;
    border-style: solid;
    border-width: 1px;
    border-color: #231f20;
}

.evaOnasFoto {
    max-width: 37%;
    border-style: solid;
    border-width: 1px;
}

.uplynulaFoto {
    max-width: 45%;
    border-style: solid;
    border-width: 1px;
    margin: 1% 1%;
}

/* PÍSMA */
h1 {
  font-family: "Passions Conflict", cursive;
  font-weight: 400;
  font-size: 77px;
  margin: 0;
  color: #231f20;
  font-style: normal;
  text-align: center;
}

h2 {
  font-family: "Bellota Text", sans-serif;
  font-weight: 700;
  font-size: 20px;
  font-style: normal;
  margin: 0px 0px 8px 0px;
  color: #231f20;
  font-style: normal;
  text-transform: uppercase;
  text-align: center;
}

h3 {
  font-family: "Bellota Text", sans-serif;
  font-weight: 700;
  font-size: 22px;
  font-style: normal;
  margin: 0 20px;
  color: #231f20;
  font-style: normal;
}

h4 {
  font-family: "Bellota Text", sans-serif;
  font-weight: 500;
  font-size: 22px;
  font-style: normal;
  margin: 0 20px;
  color: white;
  font-style: normal;
}

h5 {
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 400;
  font-size: 17px;
  font-style: normal;
  color: #231f20;
  font-style: normal;
}

h6 {
  font-family: "Bellota Text", sans-serif;
  font-weight: 500;
  font-size: 22px;
  font-style: normal;
  color: white;
  font-style: normal;
}

p {
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 300;
  font-size: 17px;
  font-style: normal;
  color: #231f20;
  font-style: normal;
  text-align: center;
}

/* JEDNOTLIVÉ SEKCE */
.sekceUvod {
    text-align: center;
}

.sekceOnas {
    margin: 20px 7% 20px 7%;
}

/* BUTTONS & LINKS */
.homePageButton {
    background-color: white;
    border: solid 0px;
    margin: 0;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    padding: 0;
}

a {
  text-align: center;
  text-decoration: none;
}

.uvodButtons ul {
    display: flex;
    list-style: none;
    justify-content: center;
}

.uvodButtons ul li {
    padding: 5px 0 5px 0;
}

.heroButton1 {
    background-color: rgba(255, 255, 255, 0.801);
    border-radius: 4px;
    padding: 4px 8px;
    color: #231f20;
    min-width: 60%;
    margin-right: 10px;
}

.heroButton2 {
    background-color: #231f20ce;
    border-radius: 3px;
    padding: 4px 8px;
    color: white;
    min-width: 60%;
}

.cookieCudlik {
    padding: 4px 8px;
    border-style: none;
    background-color: #231f20;
    border-radius: 2px;
    margin: 10px;
    padding: 8px 19px;
}

.toggle-text {
  display: none;
}

.toggle-label {
  color: #231f20;
  cursor: pointer;
  text-decoration: underline;
}

#toggle:checked ~ .toggle-text {
  display: block;
}

.malyCudl {
  background-color: #ffffffb2;
  border-radius: 4px;
  padding: 4px 8px;
  border: solid;
  border-width: 1px;
  color: #231f20;
  font-weight: 400;
}

/* NAVIGACE */
nav {
    margin-top: 5px;
    margin-bottom: 5px;
}

nav ul {
    display: flex;
    list-style: none;
    justify-content: center;
}

nav ul li {
    padding: 10px 0 0 0;
    text-decoration: none;
    list-style: none;
    text-align: center;
}

nav ul a {
    text-decoration: none;
    color: #231f20;
}

/* HERO SEKCE */
.uvodText {
    margin: 12px 0 13px 0;
}

.heroSekce {
    position: relative;
}

.uvodButtons {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* UVOD POPIS */
.uvodPopis {
    max-width: 100%;
    justify-content: space-around;
    display: flex;
    align-items: center;
    margin-top: 29px;
    margin-left: 6%;
    margin-right: 6%;
    margin-bottom: 40px;
}

.uvodOdstavec {
    max-width: 45%;
    max-height: fit-content;
}

.medailonky {
    display: flex;
    justify-content: center;
    text-align: center;
    margin-bottom: 30px;
}

.medailonek {
    max-width: 30%;
    text-align: center;
    margin-right: 30px;
    margin-left: 30px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.medailText {
    max-width: fit-content;
}

/* UVOD AKCE A REC */
.kartyAkce {
    display: flex;
    justify-content: center;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 20px;
    padding: 0 4% 0 4%;
}

.minuleAkce {
  margin: 15px 0;
  border: solid;
  border-width: 1px;
}

.minuleAkce a {
    margin: 0;
}

.kartaAkce {
    border-style: solid;
    border-width: 1px;
    margin: 0 3% 0 3%;
    padding: 20px 8px 20px 8px;
    max-width: 30%;
    height: fit-content;
}

.recenze {
    display: flex;
    justify-content: center;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 20px;
    padding: 0 4% 0 4%;
}

.kartaRec {
    margin: 0 3% 0 3%;
    max-width: 25%;
    padding: 20px 8px 20px 8px;
}

/* O NÁS */
.evaPopis {
    display: flex;
    gap: 35px;
    justify-content: space-around;
    margin: 20px 50px 40px 50px;
    align-items: center;
}

.evaOdstavec {
    margin: 0 2% 0 2%;
    text-align: left;
}

.mezera {
    text-align: left;
    padding-left: 3rem;
}

.odstavecSkryty {
    margin: 0 14%;
}

/* UVOD AKCE A REC */
.akceFull {
    display: flex;
    margin: 1% 4%;
    text-align: center;
    justify-content: space-around;
    gap: 30px;
}

.akceFullUplynula {
    display: flex;
    margin: 2%;
    text-align: center;
    justify-content: space-around;
    gap: 30px;
    max-width: 45%;
}

.akceKartaFull {
    max-width: 45%;
    border-style: solid;
    border-color: #231f20;
    border-width: 1px;
    padding: 0 5% 20px 5%;
    height: fit-content;
}

.akceKartaFullUplynula {
    max-width: 96%;
    border-style: solid;
    border-color: #231f20;
    border-width: 1px;
    padding: 0 3% 20px 3%;
    height: fit-content;
}

.form {
    display: block;
    margin-bottom: 10px;
}

.formularVzhled {
  border: solid;
  border-color: #231f20;
  border-width: 1px;
  padding: 4% 3%;
}

/* PATIČKA */
.paticka {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    margin-bottom: 10px;
    padding: 0 7% 0 7%;
}

.pPaticka {
    padding: 5rem 0 0 0;
}

.mail {
    text-decoration: none;
    color: #231f20;
}

.ikonky {
    margin-top: 10px;
    display: flex;
}

.iconMargin {
    margin-right: 8px;
}

/* === RESPONSIVITA PRO TABLETY A MOBILY === */
@media (max-width: 730px) {
  .uvodFoto {
    max-width: 100%;
  }
}

@media (max-width: 960px) {
  nav ul {
    flex-direction: row;
    align-items: center;
  }

  .akceFull {
    justify-content: center;
    flex-direction: column;
    padding: 0 6%;
  }

  .akceKartaFull {
    padding: 0 5%;
    max-width: 100%;
    text-align: center;
    justify-content: center;
  }

  .akceFullUplynula {
    max-width: 100%;
  }

  .sekceOnas {
    margin: 20px 5% 20px 5%;
}

  .evaOdstavec {
    text-align: center;
}

  nav ul li {
    padding-right: 0;
    padding-top: 8px;
  }

  .uvodButtons ul li {
    padding: 3% 0 3% 0;
  }

  .uvodPopis {
    flex-direction: column;
    text-align: center;
    margin-bottom: 10px;
  }

  .uvodOdstavec {
    max-width: 80%;
    margin-bottom: 20px;
  }

  .uvodPopisFoto {
    max-width: 60%;
    display: none;
  }

  .evaPopis {
    flex-direction: column;
  }

  .evaOnasFoto {
    max-width: 80%;
  }

  .medailonky {
    flex-direction: column;
    align-items: center;
  }

  .medailonek {
    max-width: 70%;
    margin: 20px 0;
  }

  .kartyAkce, .recenze {
    flex-direction: column;
    align-items: center;
  }

  .kartaAkce {
    max-width: 80%;
  }

  .kartaAkce, .kartaRec {
    width: 75%;
    margin: 10px 0;
  }

  #janina {
    display: none;
  }

  #dusan {
    display: none;
  }

  .paticka {
    flex-direction: column;
    align-items: center;
  }

  .logo1 {
    max-width: 45%;
  }

  .logo2 {
    max-width: 20%;
    margin: 40px 0 0 0;
  }

  h1 {
    font-size: 65px;
  }

  h2 {
    font-size: 20px;
  }

  p {
    font-size: 17px;
    padding: 0 10px;
  }

  .mezera {
    text-align: center;
    padding-left: 0;
}
}

@media (max-width: 560px) {
  .uvodButtons {
    top: 75%;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
  }

  .akceFull {
    padding: 0 2%;
  }

  .heroButton1 {
    min-width: 70%;
}

.heroButton2 {
    min-width: 70%;
}

  .uvodFoto {
    max-width: 100%;
  }

  .uvodButtons ul li a h3, .uvodButtons ul li a h4 {
    margin: 0 10%;
    font-size: 18px;
  }

  h1 {
    font-size: 50px;
    margin: 0 8% 0 8%;
    line-height: 37px;
  }

  h3, h4 {
    font-size: 18px;
    margin-left: 0;
    margin-right: 0;
  }

  h2 {
    font-size: 18px;
    margin-left: 0;
  }

  .kartyAkce {
    margin: 10px 0 10px 0;
  }

  .h2kontakt {
    font-size: 16px;
    margin-left: 0;
    text-align: left;
  }

  .kartaRec {
    margin: 0;
    max-width: 75%;
  }

  .kartaAkce {
    min-width: 80%;
  }

  .logo1 {
    max-width: 60%;
  }

  .logo2 {
    max-width: 35%;
  }

  .uvodOdstavec {
    min-width: 90%;
  }

  .kartaRec {
    min-width: 90%;
  }

  p {
    font-size: 16px;
  }

  .sekceUvodPopis {
    margin: 10px 0;
  }

  .evaPopis {
    flex-direction: column;
    gap: 18px;
    margin-bottom: 20px;
  }

  .odstavecSirsi {
    min-width: 130%;
  }

  .evaOnasFoto {
    max-width: 100%;
  }

  #janina {
    display: none;
  }

  #dusan {
    display: none;
  }

  .evaOdstavec {
    text-align: center;
}
}

@media (min-width: 961px) {
    #janina2 {
        display: none;
    }
    #dusan2 {
        display: none;
    }
}