@import url('https://fonts.googleapis.com/css2?family=League+Gothic&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro&display=swap');

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

body {
  font-family: 'Source Sans Pro', sans-serif;
  color: white;
  text-align: center;
  background: url('pozadi.jpg') repeat-y center center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

main {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
  margin: 30px 0;
}

h1 {
  font-family: 'League Gothic', sans-serif;
  font-size: 4em;
  margin-bottom: 20px;
}

p {
  font-size: 1.6em;
  line-height: 1.6;
}

#countdown {
  margin: 30px 0;
  font-size: 3em;
  font-weight: bold;
  color: white;
}

iframe {
  margin-top: 20px;
  border: 0;
}

.faq {
  margin-top: 30px;
  text-align: left;
}

details {
  margin-bottom: 15px;
}

summary {
  font-family: 'League Gothic', sans-serif;
  font-weight: bold;
  font-size: 2.5em;
  cursor: pointer;
}

details p {
  margin-top: 10px;
  font-size: 1.5em;
  line-height: 1.5;
}

a {
  color: #ffd700;
  text-decoration: underline;
}

h2 {
  font-family: 'League Gothic', sans-serif;
  font-size: 3em;
  margin-top: 30px;
  font-weight: bold;
  color: #ffd700;
}

#google_translate_element {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  background: rgba(0,0,0,0.7);
  padding: 10px;
  border-radius: 8px;
}

.goog-te-combo {
  font-size: 16px;
  padding: 5px;
  color: #000;
}

/* Úpravy pro mobilní zařízení */
@media (max-width: 600px) {
  h1 {
    font-size: 2.2em;
  }

  p {
    font-size: 1.1em;
  }

  summary {
    font-size: 1.2em;
    line-height: 1.4;
  }

  #countdown {
    font-size: 2em;
  }

  h2 {
    font-size: 2em;
  }

  details p {
    font-size: 1em;
  }

  body {
    background: url('pozadi.jpg') repeat-y center center;
    min-height: 100vh;
  }
}
