@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%;
  z-index: 1000;
  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%;
}
/* UKÁZAT BOHY TLAČÍTKO NA PREVEDENÍ NA STRANKU S BOHY */
.btn {
  background: #b3925e;
  color: #000;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.3s;
  text-decoration: none;
  display: inline-block;
}
/* ANIMACE TOHOTO TLACITKA */
.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px #cd9948;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}
.hamburger span {
  height: 3px;
  width: 25px;
  background: #fff;
  margin: 4px 0;
  transition: 0.3s;
}
/* KONEC NASTAVENÍ CHEESEBURGER MENU */
/* ZDE ZAČÍNÁ CUSTOMIZACE NASEHO OBRÁZKU KTERÝ VYSKOCÍ LIDEM DO OČÍ KDYŽ SE JIM NAČTE POPRVÉ ÚVODNÍ STRÁNKA */
.hero {
  position: relative;
  height: 100vh;
  background: url("obrázky/hlavniobrazek.png") center/cover
    no-repeat;
  display: flex;
  align-items: center;
  padding: 0 40px;
  background-color: rgba(11, 15, 26, 0.6);
  background-blend-mode: overlay;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
/* VELKY NADPIS NA TOM OBRAZKU */
.hero h1 {
  font-size: 550%;
  color: #cd9948;
}
.hero p {
  font-size: 150%;
  margin: 20px 0;
  color: #cd9948;
}

/* SIPECKA NA SJEZD DOLU  */
.scroll-down {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #cd9948;
  transition: 0.3s;
  z-index: 10;
}
/* ANIMACE SIPKY DOLU CO SE NACHAZI NA UVODNIM OBRAZKU (POZNAMKA: UDELAT VETSI) */
.scroll-down:hover {
  color: #fff;
}
/* NASTAVENÍ VZHLEDU TE ZMINENE SIPKY */
.arrow {
  width: 25px;
  height: 25px;
  border-right: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: rotate(45deg);
  animation: bounce 2s infinite;
}
/* NASTAVENÍ TY ANIMACE ZMINENE SIPKY */
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0) rotate(45deg);
  }
  40% {
    transform: translateY(-12px) rotate(45deg);
  }
  60% {
    transform: translateY(-6px) rotate(45deg);
  }
}

/* SEKCE S CISLO JEDNA A TRI S OBRAZKEM NAPRAVO */
.section {
  padding: 80px 40px;
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  transform: translateY(50px);
  transition: 1s;
  color: #ccc;
  margin-left: 10%;
  margin-right: 10%;
  background-color: #00000020;
  margin-top: 5%;
  border: #cd9948 1px solid;
  border-radius: 10px;
}
.section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* SEKCE S TEXTEM 2 KDE JE OBRAZEK NA LEVE STRANE*/
.section.reverse {
  flex-direction: row-reverse;
}
/* NADPIS SEKCE 3 */
.section h2 {
  color: #cd9948;
  font-size: 40px;
  margin-bottom: 20px;
}

.tlacitko img{
    margin-top: 2%;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 30px;
  color: #777;
  font-size: 14px;
  border-top: 1px solid#1f2937; 
  margin-top: 2%;
  background-color: #00000020;
}

/* 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;
  }
  .section,
  .section.reverse {
    flex-direction: column;
    text-align: center;
  }
  .hero h1 {
    font-size: 40px;
  }
}

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