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

/* ZÁKLAD */
body {
  font-family: 'Cinzel', serif;
  color: #d4af37;
  background-color: #0a0a0a;
  line-height: 1.6;
  overflow-x: hidden;
}

/* HEADER */
header {
  display: flex;
  justify-content: center; /* centrum obsahu */
  align-items: center;
  gap: 15px;               /* mezera mezi logem a názvem */
  padding: 15px 30px;
  background-color: #000;  /* černý panel */
  border-bottom: 2px solid #d4af37;
  backdrop-filter: blur(6px);
  z-index: 10;
  position: relative;
}

.logo img {
  height: 50px;  /* malé logo */
}

.logo span {
  font-size: 20px;
  font-weight: bold;
  color: #d4af37;
}

/* NAV */
.nav {
  position: relative;
}

.menu-btn {
  display: none;
  font-size: 32px;
  color: #d4af37;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #d4af37;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: 0.3s;
  font-size: 18px;
}

.nav-links a:hover {
  color: #f2e9d0;
  text-shadow: 0 0 10px #d4af37;
}

/* POZADÍ SEKCE */
.webpozadi {
  width: 100%;
  height: 70vh;
  background-image: url('webpozadi.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.webpozadi::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}

.stred * {
  position: relative;
  z-index: 2;
}

.stred h1 {
  font-size: 50px;
  color: #dda711;
  margin-bottom: 20px;
  text-shadow: 2px 2px 10px black;
  letter-spacing: 2px;
}

.objednat {
  background-color: #c9a66b;
  color: black;
  padding: 12px 30px;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 4px;
  border: 2px solid #c9a66b;
  box-shadow: 0 0 15px rgba(0,0,0,0.7);
  transition: 0.3s;
}

.objednat:hover {
  background-color: transparent;
  color: #f2e9d0;
  box-shadow: 0 0 20px #d4af37;
}

/* RESPONSIVNÍ DESIGN */
@media (max-width: 900px) {
  .stred h1 { font-size: 40px; }
  .nav-links a { font-size: 16px; }
}

@media (max-width: 700px) {
  header { padding: 10px 20px; }
  .logo img { height: 40px; }
  .logo span { font-size: 18px; }

  .menu-btn { display: block; }

  .nav-links {
    position: absolute;
    top: 60px;
    right: 0;
    background: rgba(10,10,10,0.95);
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
    display: none;
    border-bottom: 2px solid #d4af37;
  }

  .nav-links.open { display: flex; }

  .nav-links a { font-size: 18px; }

  .stred h1 { font-size: 32px; }
  .objednat { font-size: 18px; padding: 10px 25px; }

  .webpozadi { height: 60vh; }
}

@media (max-width: 450px) {
  .stred h1 { font-size: 28px; }
  .objednat { font-size: 16px; padding: 8px 20px; }
}

.nazev {
    position: relative;
    top: -17px; 
}
