/* Reset a základní styly */
* { 
  margin: 0; 
  padding: 0; 
  box-sizing: border-box; 
}

html, body {
  height: 100%;
  font-family: Arial, sans-serif;
  background-color: #000;
  background-image: none;
  color: #fff;
}

/* Barevnost odkazů - pouze pro obsah mimo navigaci */
main a:link, 
.overlay a:link, 
.project a:link, 
.operator a:link, 
.fotogalerie a:link,
footer a:link {
  color: #28a745;    /* Zelený nenavštívený odkaz */
}

main a:visited, 
.overlay a:visited, 
.project a:visited, 
.operator a:visited, 
.fotogalerie a:visited,
footer a:visited {
  color: #fd7e14;    /* Oranžový navštívený odkaz */
}

main a:hover, 
.overlay a:hover, 
.project a:hover, 
.operator a:hover, 
.fotogalerie a:hover,
footer a:hover {
  color: #20c997;    /* Světlejší zelená při hover */
}

main a:active, 
.overlay a:active, 
.project a:active, 
.operator a:active, 
.fotogalerie a:active,
footer a:active {
  color: #e8590c;    /* Tmavší oranžová při kliknutí */
}

/* Nadpisy */
h1 { 
  color: yellow; 
}

h2 { 
  color: #da70d6; 
}

h3 { 
  color: #32cd32; 
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #000;
  text-align: center;
  padding: 20px;
  z-index: 1000;
}

/* Menu toggle button */
.menu-toggle {
  display: none;
  margin-top: 10px;
  background: none;
  color: white;
  border: 2px solid white;
  padding: 8px 14px;
  font-size: 16px;
  cursor: pointer;
}

/* Navigace - zachovává původní barvy */
nav {
  position: fixed;
  top: 100px;
  left: 0;
  bottom: 40px;
  width: 200px;
  background-color: rgba(255,255,255,0.1);
  padding: 20px;
  overflow-y: auto;
}

nav a {
  color: #40e0d0;  /* Původní tyrkysová barva pro menu */
  text-decoration: none;
  display: block;
  font-weight: bold;
  margin: 10px 0;
  cursor: pointer;
}

nav a.active {
  color: yellow;
  background-color: rgba(255,255,255,0.2);
}

/* Hlavní obsah */
.middle {
  position: absolute;
  top: 100px;
  left: 200px;
  right: 0;
  bottom: 40px;
  background: url('pozadi.jpg') top left / 100% 100% no-repeat;
}

.overlay main h2 {
  text-align: center;
}

.overlay main h1 {
  text-align: center;
}

.overlay main h1 .aktualni {
  color: red;
}

.overlay {
  background-color: rgba(0,0,0,0.6);
  width: 100%;
  height: 100%;
  overflow-y: auto;
  padding: 20px;
}

main {
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: 40px;
}

/* Footer */
footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background-color: #000;
  text-align: center;
  font-size: 0.9em;
  color: #ccc;
  line-height: 40px;
}

/* Styly pro zavody.html */
.zavod {  
  text-align: left;
}

.bold-CAL {
  font-weight: bold;
  color: #40e0d0;
}

.centered-table {
  margin-left: auto;
  margin-right: auto;
}

/* Styly pro  technika.html */
.project {
  background-color: rgba(255,255,255,0.05);
  border: 1px solid #333;
  border-radius: 8px;
  padding: 15px;
  margin: 20px auto;
  max-width: 600px;
  text-align: center;
}

.project img {
  max-width: 100%;
  height: auto;
  max-height: 300px;
  border-radius: 4px;
  margin-top: 10px;
  box-shadow: 0 0 8px rgba(0,0,0,0.6);
}

/* odsazení a odřádkování odstavce */ 
.project p {
    text-indent: 20px;
    margin-bottom: 1.2em;
    line-height: 1.5;
}

.project h3 {
  margin-bottom: 10px;
}

.centered-table th,
.centered-table td {
  width: 100px;
}

.centered-table th:first-child,
.centered-table td:first-child {
  text-align: left;
}

/* Styly pro clenove_klubu.html */
.operator {
  background-color: rgba(255,255,255,0.05);
  border: 1px solid #333;
  border-radius: 8px;
  padding: 15px;
  margin: 20px auto;
  max-width: 600px;
  text-align: center;
  position: relative;
}

.operator img:not(.overlay) {  /* pouze hlavní obrázek */
  width: 190px;
  height: 270px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(0,0,0,0.6);
  flex-shrink: 0;
}

.operator-content {
  margin-top: 15px;    /* odstup od obrázku */
}

/* Responsivní design */
@media (max-width: 768px) {
  nav {
    display: none;
    position: fixed;
    top: 120px; /* menu začíná pod headerem s tlačítkem */
    left: 0;
    right: 0;
    width: 100%;
    bottom: auto;
    background-color: rgba(0,0,0,0.9);
    z-index: 999;
    max-height: calc(100vh - 160px); /* omezí výšku menu */
  }

  nav.active {
    display: block;
  }

  .menu-toggle {
    display: block;
  }

  .middle {
    left: 0;
    top: 120px; /* KLÍČOVÁ OPRAVA: hlavní obsah začíná až pod menu tlačítkem */
  }
  
  /* Když je menu otevřené, posuň obsah ještě níž */
  nav.active ~ .middle {
    top: calc(120px + 200px); /* přizpůsobte podle výšky vašeho menu */
  }
}

.disabled-link {
  color: #666; /* šedá barva pro indikaci zakázání */
  cursor: not-allowed;
  display: block;
  font-weight: bold;
  margin: 10px 0;
}

nav a.disabled {
  color: #666 !important;          /* šedá barva */
  cursor: not-allowed;             /* kurzor "zakázáno" */
  pointer-events: none;            /* zakáže klikání */
  opacity: 0.5;                    /* průhlednost pro vizuální indikaci */
}

/* Styly pro  fotogalerii */
.fotogalerie {
  background-color: rgba(255,255,255,0.05);
  border: 1px solid #333;
  border-radius: 8px;
  padding: 15px;
  margin: 20px auto;
  max-width: 800px;
  text-align: center;
}

/* Submenu styly */
.nav-item {
  position: relative;
}

.has-submenu > a::after {
  content: ' ▼';
  font-size: 0.8em;
  margin-left: 5px;
  transition: transform 0.3s;
}

.has-submenu.submenu-active > a::after {
  transform: rotate(180deg);
}

/* KLÍČOVÁ OPRAVA: Submenu je ve výchozím stavu skryté */
.submenu {
  display: none !important;
  background-color: rgba(0,0,0,0.9);
  border-left: 3px solid #40e0d0;
  margin-left: 15px;
  padding-left: 10px;
  margin-top: 5px;
  border-radius: 4px;
}

.submenu a {
  color: #87ceeb !important;  /* Původní barva pro submenu */
  font-size: 0.9em;
  margin: 5px 0;
  padding: 5px 0;
  border-left: 2px solid transparent;
  transition: border-left-color 0.3s;
}

.submenu a:hover {
  border-left-color: #40e0d0;
  color: #40e0d0 !important;  /* Původní hover barva pro submenu */
}

.submenu a.active {
  color: yellow !important;
  border-left-color: yellow;
}

/* Zobrazit submenu pouze při aktivaci */
.has-submenu.submenu-active .submenu {
  display: block !important;
}

/* Desktop hover efekt */
@media (min-width: 769px) {
  .has-submenu:hover .submenu {
    display: block !important;
  }
  
  .has-submenu:hover > a::after {
    transform: rotate(180deg);
  }
}

/* Mobilní úpravy pro submenu */
@media (max-width: 768px) {
  .submenu {
    margin-left: 0;
    padding-left: 15px;
    border-left: none;
    border-top: 1px solid #333;
    background-color: rgba(0,0,0,0.95);
  }
  
  .submenu a {
    padding: 8px 0;
    margin: 0;
  }
}