/* Základní styly a Textura */
body { background-color: #ffffff; color: #4A4A4A; }
.paper-bg { background-image: url('https://www.transparenttextures.com/patterns/cream-paper.png'); }
/* Aurora efekt v záhlaví */
.aurora-bg {
	background: radial-gradient(at 0% 0%, #FDE2E4 0px, transparent 50%),
				radial-gradient(at 100% 0%, #D6E2E9 0px, transparent 50%),
				radial-gradient(at 50% 100%, #FFF1E6 0px, transparent 50%);
}

/* Styl karet - jemně zaoblený, čistý */
.drawn-card {
	border-radius: 20px; 
	transition: transform 0.2s ease, background-color 0.3s ease;
}
.drawn-card:hover {
	transform: translateY(-2px);
}

.btn-main:hover { transform: translate(2px, 2px); box-shadow: 0px 0px 0px #4A4A4A; }

/* Logo kontejner */
.logo-main {
	width: 160px; height: 160px;
	border-radius: 50%; 
	overflow: hidden;
	border: 4px solid white; 
	box-shadow: 0 10px 25px rgba(0,0,0,0.1);
	background: white;
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease-out, opacity 0.3s ease, padding 0.3s ease;
	opacity: 0;
	display: block !important; /* Přepisujeme Tailwind pro potřeby animace */
}

/* Open question */
.faq-item.active .faq-answer {
	max-height: 500px; /* Dostatečná rezerva pro text */
	opacity: 1;
	padding-top: 1rem;
	padding-bottom: 1.5rem;
}

.faq-item.active .icon-wrapper {
	transform: rotate(180deg);
}

.faq-item.active {
	border-color: rgba(214, 198, 225, 0.6); /* lilac */
	background-color: #ffffff;
}
.top-banner {
	background-color: #C43089; 
	color: white;
	text-align: center;
	padding: 10px 0;
	width: 100%;
	font-weight: bold;
	font-size: 14px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.top-banner a {
	color: white;
	text-decoration: none; 
	display: block; 
}

.top-banner a:hover {
	text-decoration: underline; 
}
		
/* signup */

.container {
	max-width: 800px;
	margin:  auto;
	margin-bottom: 30px;
}

.section {
	text-align: center;
	background-color: white;
	padding: 30px;
	border-radius: 15px;
	box-shadow: 0 4px 15px rgba(0,0,0,0.05);
	margin-bottom: 30px;
	margin-left: 0.625rem; 
	margin-right: 0.625rem;
	overflow: hidden;
}

.form-container {
	padding: 10px;

}

.info-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
	margin: 25px 0;
	text-align: left;
}

.info-item {
	display: inline-block;
	background: #fff0f9;
	padding: 15px;
	border-left: 4px solid #C43089;
	border-radius: 5px;
}

.info-item strong {
	display: block;
	color: #C43089;
	text-transform: uppercase;
	font-size: 0.8em;
}

a.info-item:hover {
	background-color: #FFD1ED; 
}

/* responsive iframe*/
.google-form-wrapper {
	position: relative;
	width: 100%;
	height: 1890px; /* vyska formulare */
}

@media screen and (max-width: 768px) {
  .google-form-wrapper {
    height: 2250px;
  }
}

@media screen and (max-width: 500px) {
  .google-form-wrapper {
    height: 2650px;
  }
}

@media screen and (max-width: 350px) {
  .google-form-wrapper {
    height: 2850px;
  }
}

.google-map-wrapper {
	position: relative;
	width: 100%;
}

iframe {
	width: 100%;
	height: 100%;
	border: none;
}