@import url('https://fonts.googleapis.com/css2?family=Caudex:wght@400;700&display=swap');

/* Reset okrajů a vnitřního odsazení pro všechny prvky */
*{
  margin: 0;
  padding: 0;
}

/* Nastavení fontu celé stránky */
body{
  font-family: "Caudex", serif;
}

/* Sekce úvodu: nastavení pozadí, výšky a flexbox pro vycentrování obsahu */
#uvod {
  background: url(Fotky/Background_2.png) no-repeat top/cover;
  height: 67vh;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

/* Umístění loga v levém horním rohu */
.logo {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 120px;
  height: auto;
}

/* Velký nadpis s bílou barvou a stínem */
h1 {
  font-size: 10rem;
  color: white;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

/* Sekce o hre s pozadím a rozlozenim sekce*/
#ohre{
  background: url(Fotky/Background.png) no-repeat top/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

#postava{
  background: url(Fotky/Background.png) no-repeat top/cover;
  height: 100vh;
}

/* Sekce o vydání hry s gradientem na pozadí a vycentrovaným textem */

#vydani {
  display: flex;
  justify-content:center;
  align-items:center;
  height: 40vh;
  background: rgb(59,85,109);
  background: linear-gradient(180deg, rgba(59,85,109,1) 0%, rgba(99,122,98,1) 100%);
  color: whitesmoke;
}

#vydani .content {
  text-align: center;
  max-width: 800px;
  padding: 20px;
}

/* Vycentrování ikon */
.icons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Nastavení velikosti a barvy ikon */
.icons i {
  font-size: 6em;
  color: #333;
  cursor: default;
}

/* Barva pro ikonu Steam */
#steam{
    background: linear-gradient(to bottom right, #171a21 20%,#3f51b5 100%);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
   -webkit-text-fill-color:transparent;
}

#xbox{
  color: #0e7a0d;
}

/* Nastavení rozložení a velikosti obrázku */
#sponzori{
  background: url(Fotky/Background.png) no-repeat top/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.mapa img {
  width: 100%;
  height: auto;
  max-width: 1500px;
}

/* Sekce s kontakty s gradientem na pozadí a vycentrovaným, upraveným textem */
#kontakty {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40vh;
  background: rgb(59,85,109);
  background: linear-gradient(180deg, rgba(59,85,109,1) 0%, rgba(99,122,98,1) 100%);
  color: whitesmoke;
  padding: 20px;
}

#kontakty .content {
  text-align: center;
  max-width: 800px;
  width: 100%;
  padding: 20px;
}

/* Responsivní úpravy pro tablety: změna velikosti obrázků, textu a ikon */
@media (max-width: 768px) {
.logo {
    width: 80px;
}

h1{
    font-size: 5rem;
}

h2 {
  font-size: 1.5em;
}

h3 {
  font-size: 1.2em;
}

h4 {
  font-size: 1em;
}

.icons i {
  font-size: 4em;
}

.mapa img {
  max-width: 100%;
}

#kontakty {
    height: auto;
    padding: 10px;
}

#kontakty .content {
    padding: 15px;
}

}

/* Responsivní úpravy pro mobilní zařízení: stejné prvky jako u tabletů */
@media (max-width: 480px) {
.logo {
    width: 50px;
}

h1 {
    font-size: 3rem;
}

h2 {
  font-size: 1.2em;
}

h3 {
  font-size: 1em;
}

h4 {
  font-size: 0.9em;
}

#postava img{
  max-height: 95%;
  max-width: 50%;
}

.icons i {
  font-size: 2em;
}

.mapa img {
  max-width: 100%;
}

#kontakty {
    padding: 5px;
}

}