html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

h1 {
  display: block;
  margin: 60px auto 0 auto;
  color: #f9f9f9;
  font-size: 4em;
  font-weight: bold;
  letter-spacing: 1px;
  text-align: center;
  z-index: 10;

  text-shadow:
    0 0 2px #fff,
    0 0 10px #fff,
    0 0 30px orange,
    0 0 50px orange;
}
.hero h3 {
  color: #f9f9f9;
  font-size: 1.8em;
  margin-top: 20px;
  text-align: center;
  text-shadow:
    0 0 2px #fff,
    0 0 10px #fff,
    0 0 20px orange;
}

body {
  background-image: url("temtaaa.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  -webkit-background-attachment: fixed;
  background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url("temtaaa.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 15px 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  color: white;
  position: relative;
  z-index: 1000;
  border-radius: 0 0 12px 12px;
}


.navbar .logo {
    font-size: 24px;
    color: white; /* Ensure text color is white */
    text-decoration: none; /* Remove underline */
    transition: color 0.3s; /* Add hover effect if desired */
}

.navbar .logo:hover {
    color:#ff8c00; /* Match your other hover colors */
}

.burger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #fff;
  transition: transform 0.3s ease;
}
.burger:hover {
  transform: scale(1.2);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: #fff;
  left: 0;
  bottom: -5px;
  transition: width 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}
.nav-links a:hover {
  color:#ff8c00;
}
 #live-clock {
    text-align: right;
    font-size: 1.0em;
    color: white;
    padding: 10px 0;
  }
  .welcome {
    background-color: #1a1a1a;
    color: white;
    padding: 40px 20px;
    margin: 40px auto;
    text-align: center;
    max-width: 800px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  }
  
  .welcome h2 {
    font-size: 2.2em;
    margin-bottom: 20px;
    color: orange;;
  }
  
  .welcome p {
    font-size: 1.2em;
    line-height: 1.6;
  }
  .footer {
  background: linear-gradient(to right, #1a1a1a, #2a2a2a);
  color: #fff;
  padding: 40px 20px 20px;
  font-size: 0.95em;
  border-top: 3px solid orange;
  box-shadow: 0 -5px 15px rgba(0,0,0,0.3);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
  height: 50px;
  width: auto;
  opacity: 0.9;
  transition: transform 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.05);
  opacity: 1;
}

.footer-brand h3 {
  color: orange;
  font-size: 1.5em;
  margin: 0 0 5px 0;
}

.footer-brand p {
  color: #ccc;
  font-size: 0.9em;
  margin: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-section {
  margin-bottom: 20px;
}

.footer-section h4 {
  color: orange;
  font-size: 1.2em;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 8px;
}

.footer-section h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: orange;
}

.footer-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-info li {
  margin-bottom: 10px;
  color: #ccc;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-info span {
  font-weight: bold;
  color: #fff;
  min-width: 60px;
  display: inline-block;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s, padding-left 0.3s;
  display: block;
}

.footer-links a:hover {
  color: orange;
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.social-links a {
  color: #ccc;
  font-size: 1.5em;
  transition: transform 0.3s, color 0.3s;
}

.social-links a:hover {
  color: orange;
  transform: scale(1.2);
}

.newsletter {
  margin-top: 20px;
}

.newsletter p {
  color: #ccc;
  margin-bottom: 10px;
  font-size: 0.9em;
}

.newsletter-form {
  display: flex;
  gap: 5px;
}

.newsletter-form input {
  flex: 1;
  padding: 8px 12px;
  border: none;
  border-radius: 4px;
  background: rgba(255,255,255,0.9);
}

.newsletter-form button {
  background: orange;
  color: #222;
  border: none;
  padding: 8px 15px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}

.newsletter-form button:hover {
  background: #ff8c00;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 15px;
}

.legal-links a {
  color: #aaa;
  text-decoration: none;
  font-size: 0.8em;
  transition: color 0.3s;
}

.legal-links a:hover {
  color: orange;
}

.copyright {
  color: #777;
  font-size: 0.8em;
}

.copyright p {
  margin: 5px 0;
}
.hero {
  display: flex;
  flex-direction: column; 
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 80px); 
  background: rgba(20, 20, 20, 0.7);
  border-radius: 0 0 30px 30px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  padding: 40px 20px 60px 20px;
  margin-bottom: 30px;
}

.hero-desc {
  color: #fffbe6;
  font-size: 1.25em;
  max-width: 600px;
  text-align: center;
  margin: 25px 0 30px 0;
  line-height: 1.6;
  text-shadow: 0 2px 8px #000;
}

.hero-btn {
  display: inline-block;
  background: linear-gradient(90deg, orange 60%, #ffb347 100%);
  color: #222;
  font-weight: bold;
  font-size: 1.15em;
  padding: 14px 38px;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(255,140,0,0.25);
  transition: background 0.2s, color 0.2s, transform 0.2s;
  letter-spacing: 1px;
}

.hero-btn:hover {
  background: linear-gradient(90deg, #ffb347 0%, orange 100%);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 24px rgba(255,140,0,0.35);
}
.hero img {
  width: 150px; /* zmenšení velikosti */
  height: auto;
  margin: 20px 0;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 140, 0, 0.6);
  transition: transform 0.3s, box-shadow 0.3s;
}

.hero img:hover {
  transform: scale(1.05) rotate(-2deg);
  box-shadow: 0 0 30px rgba(255, 140, 0, 0.9);
}

@media (max-width: 768px) {
  .burger {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    padding: 10px 0;
    z-index: 1000;
  }

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

  .nav-links li {
    text-align: center;
    padding: 12px 0;
  }
  .footer-top {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-section h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .newsletter-form {
    flex-direction: column;
  }
}

