html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: #ececec; 
    color: #333;
    font-family: Arial, sans-serif, Montserrat;
}
a {
  text-decoration: none;   /* zruší podtržení */
  color: inherit;          /* zachová barvu okolního textu */
}
main {
    flex: 1; 
/*    padding: 40px; */
    text-align: center;
}

footer {
  background-color: #35B7CA;
  color: rgb(0, 0, 0);
  text-align: center;
  padding: 15px;
  font-size: 17px;
}

footer a {
  color: rgb(0, 0, 0);
  text-decoration: underline;
}

header {
  background-color: #f5f5f5;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
  gap: 20px;
}

.napis {
  max-width: 110px;
  height: auto;
}

.main-nav {
  display: flex;
  gap: 20px;
  flex: 1;
  justify-content: center;
}

.main-nav a {
  color: black;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.2s ease, color 0.2s ease;
}

.main-nav a:hover {
  color: #F8D117;
  transform: scale(1.1);
}


.social-icons {
  display: flex;
  gap: 10px;
}

.icon {
  width: 30px;
  height: 30px;
  transition: transform 0.2s ease;
}

.icon:hover {
  transform: scale(1.1);
}

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh; 
    flex-direction: column;
    background: rgba(53, 183, 202, 0.95); 
    padding-top: 80px;
    text-align: center;
    z-index: 1000;

    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .main-nav a {
    color: white;
    font-size: 1.5rem;
    padding: 15px;
    text-align: center;
  }

  .main-nav.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
   
  }

  .menu-toggle {
    display: block;
    z-index: 1100;  
    
  }

  .social-icons {
    display: none;
  }
}

 .zavreno-hlaska {
    color: red;
    font-weight: bold;
    text-align: center;
    margin: 20px 0;
    font-size: 1.2rem;
  }
/*HLAVNÍ STRÁNKA*/
.uvodni-blok {
    position: relative;
    overflow: hidden;
    text-align: left;
    padding: 30px 30px;
    border-radius: 12px;
    margin: 40px auto;
    color: white;
    z-index: 1;
    width: 90%;
    max-width: 1000px;
}


@media (max-width: 600px) {
    .uvodni-blok {
        padding: 30px 20px;
        max-width: 90%; 
    }
}

.uvodni-blok::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../pics/akce/uvodni-obrazek.jpg'); 
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
    z-index: -1;
    border-radius: 12px;
}

.uvodni-blok:hover::before {
    transform: scale(1.1);
}

.uvodni-blok::after {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); 
    z-index: -1;
    border-radius: 12px;
}

.uvodni-blok .tlacitko {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background-color: #F8D117;
    color: black;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
}
.features {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0rem 1rem;
  max-width: 1200px;
  margin: auto;
}

.features-text {
  flex: 1;
}

.features-image {
  flex: 1;
  display: block;
}

.features-image img {
  width: 60%;
  height: 80%;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}


@media (max-width: 768px) {
  .features {
    flex-direction: column;
    text-align: center;
  }
  .features-image {
    display: none;
  }
}

.odrazka {
  color: #facd05;
  font-weight: bold;
  margin-right: 0.5em;
}

@media (max-width: 768px) {
  .features {
    flex-direction: column;
    text-align: center;
  }
}

.aktuality {
    margin: 40px 0;
    text-align: center;
}

.aktuality-bloky {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.aktualitaText {
    background-color: #F8D117;
    padding: 10px;
    border-radius: 8px;
    font-weight: bold;
    width: fit-content;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    text-align: center;
    overflow: hidden;
    margin-top:10px;
}

.aktualita {
    background-color: #35B7CA;
    padding: 20px;
    border-radius: 12px;
    width: 280px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    text-align: left;
    position: relative;
    overflow: hidden;
}

.aktualita .datum {
    font-weight: bold;
    color: #F8D117;
    margin-bottom: 5px;
}

.aktualita h4 {
    margin: 0;
    color: #f7e64e;
    font-size: 1.1em;
}

.aktualita p {
    margin: 10px 0 0 0;
    font-size: 0.95em;
}

.aktualita_1 {
    background-size: cover;
    background-position: center;
    color: white;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.aktualita_2 {
    background-size: cover;
    background-position: center;
    color: white;
}

.aktualita_3 {
    background-size: cover;
    background-position: center;
    color: white;
}

.aktualita::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4);
    z-index: 0;
    border-radius: 12px;
}

.aktualita > * {
    position: relative;
    z-index: 1;
}
/*
.kalendar-obsah {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 12px #F8D117;
    margin-top: 0px;
}

.kalendar-obsah {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 12px #F8D117;
    margin-top: 0px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 10px;
}


.responsive-iframe {
    position: relative;
    width: 100%;
    max-width: 700px;        
    margin: 0 auto;
    padding-bottom: 60%;     
    height: 0;
    overflow: hidden;
}

.responsive-iframe iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 600px) {
    .responsive-iframe {
        padding-bottom: 50%; 
    }
}
*/

.ohlasy {
    margin: 40px 0;
    background-color: #F8D117;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.ohlasy blockquote {
    margin: 10px 0;
    font-style: italic;
}

.autor {
  font-weight: bold;
  font-size: 13px;
  display: block; 
  margin-top: 8px; 
}

.vyzva {
    text-align: center;
    margin: 60px 0 30px 0;
}

.vyzva .tlacitko {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 25px;
    background-color: #35B7CA;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
}

@media screen and (max-width: 700px) {
    .nabidka-bloky {
        flex-direction: column;
        align-items: center;
    }

    .polozka {
        width: 80%;
    }
}

/*NABIDKA TVORENI*/
.tvorba-karty-wrapper {
  display: flex;
  flex-wrap: wrap; 
  gap: 40px;
  justify-content: center;
}

.tvorba-karta {
  display: flex;
  width: 800px;
  height: 250px;
  background-color: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  margin: 5 auto 40px;
}

.karta-text {
  width: 50%;
  padding: 25px;
  background-color: #ca3535;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.karta-text h3 {
  margin: 0 0 12px 0;
  font-size: 25px;
}

.karta-text p {
  margin: 0;
  font-size: 16px;
}

.karta-obrazek {
  position: relative;
  width: 50%;
  overflow: hidden;
}

.karta-obrazek img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.karta-obrazek:hover img {
  transform: scale(1.05);
}

.obrazek-popis {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.4);
  color: white;
  padding: 6px 10px;
  font-size: 13px;
  border-radius: 6px;
}

.vyzva {
    margin-top: 50px;
    text-align: center;
}

.vyzva p {
    font-weight: bold;
    margin-bottom: 10px;
}

.oteviraci-doba {
    margin: 50px auto;
    text-align: center;
    max-width: 400px;
}

.oteviraci-doba h3 {
    margin-bottom: 20px;
    color: #000000;
}

.oteviraci-doba table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1em;
    background-color: #f4f4f4;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,0,0,0.09);
}

.oteviraci-doba td {
    padding: 12px;
    border-bottom: 1px solid #ddd;
    text-align: left;
}

.oteviraci-doba tr:last-child td {
    border-bottom: none;
}

.den.dnes {
    background-color: #F8D117;
    font-weight: bold;
}


/*AKTUÁLNÍ MĚSÍC*/
.plakt img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    cursor: pointer; /* Ukáže, že je to klikací */
}

/* Na mobilech omezení výšky */
@media (max-width: 600px) {
    .plakt img {
        max-height: 70vh;
        width: auto;
    }
}

/* Modal (lightbox) */
.modal {
    display: none; /* Schované, dokud neklikneš */
    position: fixed;
    z-index: 1000;
    padding-top: 5%;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
}

/* Velký obrázek v modalu */
.modal-content {
    display: block;
    margin: auto;
    max-width: 90%;
    max-height: 90%;
}

/* Zavírací tlačítko */
.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}


/*GALERIE*/
.grid-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.05);
}

@media screen and (max-width: 768px) {
    .grid-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 480px) {
    .grid-gallery {
        grid-template-columns: 1fr;
    }
}

.textGalerie{
    text-align: center;
}

/*O MNĚ*/
.o-mne {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  margin-bottom: 50px;
  justify-content: center;
}

.o-mne-text {
  flex: 1;
  min-width: 250px;
  max-width: 500px;
  margin-right: 20px; 
  line-height: 1.5;
}

.o-mne-photo {
  flex-shrink: 0; 
}

.o-mne-photo img {
  max-width: 250px; 
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* GALERIE */
.galerie-o-mne {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.galerie-item-o-mne {
    width: 200px;
    text-align: center;
}

.galerie-item-o-mne img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 0 6px rgba(0,0,0,0.1);
}

.galerie-item-o-mne p {
    margin-top: 8px;
    font-size: 0.95em;
    color: #333;
}

@media screen and (max-width: 768px) {
    .o-mne {
        flex-direction: column-reverse;
        text-align: center;
    }

    .o-mne-text, .o-mne-photo {
        width: 100%;
    }
}



/*KONTAKT*/
.container {
  max-width: 900px; 
  margin: 0 auto;   
  padding: 5 15px;

}

.kontaktni-uvod {
    margin: 40px 0;
    text-align: center;
}

.kontaktni-udaje {
    background-color: #35B7CA;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.kontaktni-udaje p {
    margin: 10px 0;
}

.kontaktni-udaje a {
    color: #ffffff;
    text-decoration: underline;
}

.kontaktni-formular {
    background-color: #F8D117;
    padding: 30px;
    border-radius: 12px;
}

.kontaktni-formular form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.kontaktni-formular input,
.kontaktni-formular textarea {
    padding: 10px;
    border: none;
    border-radius: 6px;
    font-size: 1em;
    width: 100%;
}

.kontaktni-formular label {
    font-weight: bold;
}

.kontaktni-formular .tlacitko {
    width: fit-content;
    align-self: flex-start;
    padding: 10px 20px;
    background-color: #10A5A1;
    color: white;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    cursor: pointer;
}

.kontaktni-formular .tlacitko:hover {
    background-color: #02CECB;
}

textarea {
    resize: none;
}

/* sections */
.card {
    background: rgba(0,0,0,0.3);
    padding: 1.5rem 0.3rem 1.5rem 0.3rem; 
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.card h2 {
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
}

.card p {
    margin-bottom: 1rem;
}

.plakaty {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.plakat-item img {
    width: 500px; /* pevná šířka */
    max-width: 90vw; /* aby nepřetékalo na mobilu */
    height: auto;
    display: block;
    cursor: pointer;
    border-radius: 10px;
}


.overlay{
    width:100%;
    height:100%;
    display:flex;
    align-items:center;
}

.uvod-content h1{
    font-size:38px;
    line-height:1.1;
    margin-bottom:20px;
}

.uvod-content p{
    font-size:19px;
    margin-bottom:30px;
}

.yellow{
    color:#f4b400;
}

.cta{
    display:inline-block;
    background:#f4b400;
    color:#222;
    padding:15px 30px;
    border-radius:40px;
    text-decoration:none;
    font-weight:600;
}

.info{
        display:flex;
        align-items:flex-start;
        gap:15px;
        margin-bottom:25px;
        color:#ddd;
        line-height:1.5;
}

.buttons{
        display:flex;
        gap:20px;
        align-items:center;
	font-size:18px;
}

.btn-main{
        background:#d6a326;
        color:black;
        padding:10px 14px;
        border-radius:40px;
        text-decoration:none;
        font-weight:bold;
        transition:0.3s;
}

.btn-main:hover{
        background:#f0bb35;
}

.btn-secondary{
    color:white;
        text-decoration:none;
        font-weight:600;
}

.btn-secondary:hover{
        text-decoration:underline;
}
.more-btn{
    display:flex;
    align-items:center;
    gap:12px;
    color:white;
    text-decoration:none;
    font-weight:600;
}

.circle{
    width:38px;
    height:38px;
    background:white;
    color:black;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:18px;
    font-weight:bold;
}