@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&display=swap'); /* font na nadpisy */
@import url('https://fonts.googleapis.com/css2?family=Caudex:ital,wght@0,400;0,700;1,400;1,700&display=swap'); /* font na texty */
/* CÉLÁ STRÍNKA DEXÍ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Caudex", serif; /* font na texty */
} 

* h1,h2,h3 {
  font-family: "Cinzel", serif; /* font na nadpisy */
}
/* ZDE JSEM NASTAVIL JAK JE TO PRI SCROLLOVANI */
html {
  scroll-behavior: smooth;
}
/* ČÁST UZAVŘENÁ V KOLONKÁCH BODY DEXÍ */
body {
  background: #0b0f1a;
  color: #fff;
  overflow-x: hidden;
}
/* ZDE KONČÍ NASTAVENÍ ANIMACE NAČÍTÁNÍ */
/* HEADER DEXITECKU ZDE SE NECHAZI V CELE SEKCI HEADERU NASE HAMBURGER MENU A I LOGO TAKZE VSE CO SE S NAMI HYBE DOLU A JE TO PRILEPENE NA VRCHU OBRAZOVKY */
header {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: rgba(10, 15, 30, 0.8);
  backdrop-filter: blur(10px);
}
/* LOGO VLEVO NAHORE */
.logo img {
  height: 40px;
}
/* NAŠE MENU JAKOBY JAKÝ JE TO ČTVEREC */
nav {
  display: flex;
  gap: 20px;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: #ccc;
  font-weight: 500;
  position: relative;
  transition: 0.3s;
}
nav a:hover {
  color: #cd9948;
}
nav a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #cd9948;
  transition: 0.3s;
}
nav a:hover::after {
  width: 100%;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}
.hamburger span {
  height: 3px;
  width: 25px;
  background: #fff;
  margin: 4px 0;
  transition: 0.3s;
}
.btn_zpet{
  margin-top: 5%;
  margin-left: 4%;
}

.divici{
    display: flex;
    justify-content: center;
    justify-content: space-around;
    margin-top: 3%;
}

.btn{
    display: block;      
    width: 30%;          
    text-decoration: none;
    color: inherit;
    padding-top: 10%;
    padding-bottom: 10%; 
    background-color: #00000020; 
    border-radius: 15px;
    border: #cd9948 1px solid;
}

.div1{
    text-align: center;
    font-size: 500%;
    color: #cd9948;
}       

.div2{
    text-align: center;
    font-size: 500%;
    color: #cd9948;
}   

 /* FOOTER */
footer {
  text-align: center;
  padding: 30px;
  color: #777;
  font-size: 14px;
  border-top: 1px solid#1f2937; 
  background-color: #00000020;
  bottom: 0;
  position: fixed;
  width: 100%;
}

/* Mresponzivita */
@media (max-width: 900px) {
  nav {
    position: absolute;
    top: 70px;
    right: 0;
    background: #0b0f1a;
    flex-direction: column;
    width: 220px;
    padding: 20px;
    display: none;
  }
  nav.active {
    display: flex;
  }
  .hamburger {
    display: flex;
  }
.btn_zpet{
  margin-top: 30%;
  margin-left: 4%;
}
.divici{
    display: block;
    margin-top: 10%;
    margin-left: 15%;
}

.btn{
    display: block;      
    width: 80%;          
    text-decoration: none;
    color: inherit;
    padding-top: 10%;
    padding-bottom: 10%; 
    background-color: #00000020; 
    border-radius: 15px;
    border: #cd9948 1px solid;
    margin-top: 10%;
}

.div1{
    text-align: center;
    font-size: 200%;
    color: #cd9948;
}       

.div2{
    text-align: center;
    font-size: 200%;
    color: #cd9948;
}   
footer {
  text-align: center;
  padding: 30px;
  color: #777;
  font-size: 14px;
  border-top: 1px solid#1f2937; 
  background-color: #00000020;
  bottom: 0;
  position: fixed;
  width: 100%;
}
}

/* ANIMACE */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes fadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}