/* MAIN CSS */

/* 💡 výška tvého horního menu — můžeš změnit podle potřeby */
:root {
	--menu-height: 70px;
  }

body {
	margin: 0;
	font-family: cursive, Arial, sans-serif;
	line-height: 1.6;
	font-size: 1.3em;
	color: #333;
}

/* Pro mobilní zařízení (šířka do 768px) */
@media (max-width: 768px) {
	body {
	  font-family: "Arial", sans-serif;
	}
  }


header {
	position: fixed;
	top: 0;
	left: 0;
	width: 98%;
	background: rgba(0, 0, 0, 0.8);
	color: #fff;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 20px;
	z-index: 1000;
	transition: background 0.3s;
}
header.scrolled {
	background: #600;
	/* tmavě červená při scrollování */;
}
nav a {
	color: white;
	text-decoration: none;
	margin: 0 10px;
	font-weight: bold;
}
nav a:hover {
	text-decoration: underline;
}
section {
	padding: 80px 20px;
	min-height: 100vh;
}

.mensi{
	font-size: 0.9em;
}

.hero {
	/*  background: url('https://6d1bb0e74c.cbaul-cdnwnd.com/c9b3063b998d6be81a462e62d55b0424/200000023-5cc595dbd7/50000000.jpg?ph=6d1bb0e74c') no-repeat center/cover;*/
	/*  background: url('logo.gif') no-repeat center/cover; */
	background: url('img/klacek.jpg') no-repeat center/cover;
	color: white;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

/* 📱 mobilní přizpůsobení */
@media (max-width: 768px) {
  .hero {
    height: 250px;    /* menší výška na tabletu/mobilu */
    padding: 20px;    /* rezerva pro text uvnitř */
  }
}

@media (max-width: 480px) {
  .hero {
    height: 180px;    /* ještě menší výška na mobilu */
  }
}


.hero h1 {
	font-size: 3em;
	margin-bottom: 10px;
	text-shadow: 2px 2px 4px #000;
}
.btn {
	background: #a00;
	color: white;
	padding: 10px 20px;
	border: none;
	border-radius: 20px;
	cursor: pointer;
	font-size: 1.1em;
	transition: background 0.3s;
}
.btn:hover {
	background: #800;
}
footer {
	background: #111;
	color: white;
	text-align: center;
	padding: 20px;
}
#repertoar {
	background-color: #eefad7;
}

#repertoar h2 {
	text-align: center;
	margin-bottom: 15px;
  }

#galerie {
	background-color: #e6d3d5;
}

#galerie h2 {
	text-align: center;
	margin-bottom: 15px;
  }

.video-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
	gap: 20px;
	max-width: 1200px;
	margin: 40px auto;
	padding: 0 20px;
}
.video-container {
	position: relative;
	width: 100%;
	max-width: 560px;
	margin: 20px auto;
	cursor: pointer;
}
.video-container img {
	width: 100%;
	height: auto;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0,0,0,0.3);
	display: block;
}
.video-container .play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80px;
	height: 80px;
	background: rgba(0, 0, 0, 0.6);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.video-container .play-button::before {
	content: '';
	border-style: solid;
	border-width: 15px 0 15px 25px;
	border-color: transparent transparent transparent white;
	margin-left: 5px;
}
.logo {
	font-size: 1.2em;
	font-weight: bold;
	text-decoration: none;
	/* odstraní podtržení odkazu */
	color: white;
	/* nastaví barvu textu */
	display: inline-block;
	/* aby se chovalo podobně jako div */
	margin: 1px;
}
#clenove {
	padding: 80px 20px;
	background: #f9f9f9;
	background-color: #d1e7f7;
}
#clenove h2 {
	text-align: center;
	margin-bottom: 15px;
}
.clenove-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	max-width: 1200px;
	margin: 0 auto;
}
.clen {
	display: flex;
	align-items: center;
	background: white;
	padding: 15px;
	border-radius: 10px;
	box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.clen img {
	width: 100px;
	height: 100px;
	object-fit: cover;
	border-radius: 50%;
	margin-right: 15px;
}
.clen-foto {
	padding-right: 15px;
	margin-right: 15px;
	border-right: 1px solid #ddd;
	/* svislá čára */;
}
.clen-foto img {
	width: 100px;
	height: 100px;
	object-fit: cover;
	border-radius: 50%;
}
.clen-text h3 {
	margin: 0 0 5px;
}
.clen-text p {
	margin: 0;
	font-size: 0.9em;
	color: #555;
}
/* 📱 Mobilní verze */
@media (max-width: 768px) {
	.clenove-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
/* 📱📱 Malý mobil */
@media (max-width: 500px) {
	.clenove-grid {
		grid-template-columns: 1fr;
	}
	.clen {
		flex-direction: column;
		text-align: center;
	}
	.clen img {
		margin: 0 0 10px 0;
	}
}
#odkazy {
	padding: 80px 20px;
	background: #fff;
	background-color: #dce7f7;
}
#odkazy h2 {
	text-align: center;
	margin-bottom: 15px;
}
.odkazy-list {
	list-style: none;
	padding: 0;
	max-width: 600px;
	margin: 0 auto;
}
.odkazy-list li {
	margin: 10px 0;
	text-align: center;
}
.odkazy-list a {
	text-decoration: none;
	color: #0066cc;
	font-size: 1.1em;
	transition: color 0.2s ease;
}
.odkazy-list a:hover {
	color: #cc0000;
}



#onas {
  padding: 80px 20px;
  background: #fdfdfd;
 /* max-width: 900px; */
  margin: 0 auto;
}

#onas h2 {
  text-align: center;
  margin-bottom: 15px;
}


.onas-foto {
  float: right;
  width: 600px;
  margin: 0 0 15px 20px; /* mezery kolem obrázku */
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* 📱 Mobilní zobrazení – obrázek nad textem */
@media (max-width: 600px) {
  .onas-foto {
    float: none;
    display: block;
    margin: 0 auto 15px auto;
    width: 100%;
    max-width: 300px;
  }
}

.onas-foto2 {
  float: left;
  width: 600px;
  margin: 0 20px 15px 20px; /* mezery kolem obrázku */
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* 📱 Mobilní zobrazení – obrázek nad textem */
@media (max-width: 600px) {
  .onas-foto2 {
    float: none;
    display: block;
    margin: 15px 15px 15px 15px;
    width: 100%;
    max-width: 300px;
  }
}

.repertoar-foto {
	float: right;
	width: 600px;
	margin: 0 0 15px 20px; /* mezery kolem obrázku */
	border-radius: 8px;
	box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  }
  
  /* 📱 Mobilní zobrazení – obrázek nad textem */
  @media (max-width: 600px) {
	.repertoar-foto {
	  float: none;
	  display: block;
	  margin: 0 auto 15px auto;
	  width: 100%;
	  max-width: 300px;
	}
  }

.regiony-foto {
  float: center;
  width: 600px;
  margin: 0 0 15px 20px; /* mezery kolem obrázku */
  border-radius: 0px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* 📱 Mobilní zobrazení – obrázek nad textem */
@media (max-width: 600px) {
  .regiony-foto {
    float: none;
    display: block;
    margin: 0 auto 15px auto;
    width: 100%;
    max-width: 300px;
  }
}


/* KONTAKT */

#kontakt {
  padding: 80px 20px;
  background: #f9f9f9;
  text-align: center;
}

#kontakt h2 {
  text-align: center;
  margin-bottom: 15px;
}

.kontakt-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.kontakt-grid-single {
  display: grid;
 /* grid-template-columns: repeat(1, 1fr); */
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
  margin-bottom: 20px;
}

.kontakt-karta {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  padding: 20px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.kontakt-karta:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.kontakt-karta h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

.kontakt-karta a {
  color: #0066cc;
  text-decoration: none;
}

.kontakt-karta a:hover {
  text-decoration: underline;
}

/* 📱 Mobilní verze */
@media (max-width: 700px) {
  .kontakt-grid {
    grid-template-columns: 1fr;
  }
}


/*AKCE*/

#akce {
	padding: 80px 20px;
	background: #fff;
	text-align: center;
  }
  
  #akce h2 {
	text-align: center;
	margin-bottom: 15px;
  }
  
  .kalendar-wrapper {
	max-width: 1210px;
	margin: 0 auto;
	border-radius: 0px;
	overflow: hidden;
	/*box-shadow: 0 2px 8px rgba(0,0,0,0.15);*/
  }
  
  @media (max-width: 600px) {
	.kalendar-wrapper iframe {
	  height: 400px; /* menší výška na mobilu */
	}
  }

  #cd {
	padding: 80px 20px;
	background: #f9f9f9;
  }
  
  #cd h2 {
	text-align: center;
	margin-bottom: 30px;
  }

  .cd-text h4 {
	margin: 50px 0px 0px 0px;
}

  .cd-container {
	display: grid;
	grid-template-columns: 70% 30%;
	gap: 20px;
	/*max-width: 1000px;*/
	margin: 0 auto;
	align-items: start;
  }
  
  .cd-text p {
	text-align: justify;
	line-height: 1.6;
  }
  
  .cd-obrazky {
	display: flex;
	flex-direction: column;
	gap: 15px;
	align-items: center;
    padding-right: 20px;
  }
  
  .cd-thumb {
	width: 100%;
	border-radius: 8px;
	box-shadow: 0 2px 6px rgba(0,0,0,0.15);
	cursor: pointer;
	transition: transform 0.2s ease;
  }
  
  .cd-thumb:hover {
	transform: scale(1.03);
  }
  
  /* Lightbox styl */
  .lightbox {
	display: none; /* skryté, dokud se neklikne */
	position: fixed;
	z-index: 900;
	left: 0;
	top: var(--menu-height); /* začíná až pod menu */;
	width: 100%;
	height: calc(100% - var(--menu-height)); /* ořízne výšku o menu */;
	background: rgba(0,0,0,0.8);
	justify-content: center;
	align-items: center;
	overflow: auto; /* pro případ, že je obrázek vyšší než viewport */
  }
  
  .lightbox img {
	max-width: 90%;
	max-height: 90%;
	border-radius: 10px;
	box-shadow: 0 0 15px rgba(255,255,255,0.4);
  }
  
  .lightbox .close {
	position: absolute;
	top: calc(var(--menu-height) + 20px); /* 20px pod menu */
	right: 40px;
	color: white;
	font-size: 40px;
	cursor: pointer;
	font-weight: bold;
	z-index: 1001; /* aby bylo nad lightboxem i nad menu */
  }
  
  @media (max-width: 768px) {
	.cd-container {
	  grid-template-columns: 1fr;
	}
  
	.cd-obrazky {
	  flex-direction: row;
	  justify-content: center;
	}
  
	.cd-thumb {
	  width: 45%;
	}
	.lightbox .close {
		top: calc(var(--menu-height) + 10px);
		right: 20px;
		font-size: 32px;
	  }
  }

  .cd-galerie {
	margin-top: 40px;
	text-align: center;
  }
  
  .cd-galerie h3 {
	margin-bottom: 15px;
  }
  
  .cd-foto-grid {
	display: flex;
	justify-content: center;
	gap: 15px;
	flex-wrap: wrap;
  }
  
  .cd-foto-grid img {
	height: auto;               /* zachová přirozený poměr stran */
	width: auto;                /* umožní přizpůsobení */
	max-width: 22%;             /* max šířka na desktopu */
	aspect-ratio: 4 / 3;        /* zachová poměr 4:3 */
	/*width: 22%;*/
	border-radius: 6px;
	cursor: pointer;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
	transition: transform 0.2s ease;
  }
  
  .cd-foto-grid img:hover {
	transform: scale(1.05);
  }
  
  /* Mobilní úprava */
  @media (max-width: 768px) {
	.cd-foto-grid img {
	  width: 45%;
	}
  }

  .kontakt-stage {
	margin-top: 40px;
	text-align: center;
  }
  
  .kontakt-stage h3 {
	margin-bottom: 15px;
  }
  
  .kontakt-stage img {
	width: 30%;
	height: auto;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.15);
	cursor: pointer;
	transition: transform 0.2s ease;
  }
  
  .kontakt-stage img:hover {
	transform: scale(1.05);
  }
  
  /* 📱 Mobilní úprava */
  @media (max-width: 768px) {
	.kontakt-stage img {
	  width: 70%;
	}
  }





 /* Overlay */
.popup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.7);
	display: none; 
	justify-content: center;
	align-items: center;
	z-index: 9999;
	opacity: 0;
	animation: fadeIn 0.5s forwards; /* fade in animace */
  }
  
  /* Fade-in animace */
  @keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
  }
  
  /* Box obsahu */
  .popup-content {
	background: white;
	color: black;
	padding: 30px;
	max-width: 480px;
	width: 90%;
	border-radius: 15px;
	text-align: center;
	position: relative;
	box-shadow: 0 0 25px rgba(0,0,0,0.4);
	animation: scaleIn 0.4s ease-out;
  }
  
  /* Scale-in animace okna */
  @keyframes scaleIn {
	from { transform: scale(0.8); }
	to { transform: scale(1); }
  }
  
  /* Obrázek plakátu */
  .popup-image {
	width: 100%;
	height: auto;
	border-radius: 12px;
	margin: 15px 0;
  }
  
  /* Zavírací křížek */
  .popup-close {
	position: absolute;
	top: 10px;
	right: 15px;
	font-size: 32px;
	cursor: pointer;
	color: black;
	font-weight: bold;
  }
  
  /* Tlačítko */
  .popup-btn {
	margin-top: 15px;
	padding: 10px 20px;
	background: #d79c00;       /* zlato-hudební barva */
	border: none;
	border-radius: 8px;
	font-size: 18px;
	cursor: pointer;
	transition: 0.3s;
  }
  
  .popup-btn:hover {
	background: #b58300;
  }
  
  /* Mobilní styl */
  @media (max-width: 768px) {
	.popup-content {
	  width: 95%;
	  padding: 20px;
	}
  }