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

body {
  font-family: system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  color: #772e25;
  background: #edddd4;
}

/* Horná časť */
.uvod {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.fotka {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  flex-shrink: 0;
}

.text-o-mne h1 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.text-o-mne p {
  color: #772e25;
}

/* Mapa */
.mapa-sekcia {
  max-width: 900px;
  margin: 0 auto 60px;
  padding: 0 20px;
  text-align: center;
}

.mapa-sekcia h2 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.podnadpis {
  color: #772e25;
  margin-bottom: 25px;
}

.mapa-wrapper {
  position: relative;
  display: inline-block;
  max-width: 100%;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  border-radius: 8px;
  overflow: hidden;
}

.mapa-obrazok {
  display: block;
  width: 100%;
  height: auto;
}

/* Body na mape */
.bod {
  position: absolute;
  width: 24px;
  height: 24px;
  background: transparent;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transform: translate(-50%, -50%);
}

.bod:hover {
  	background: rgba(255, 255, 255, 0.25);
	transform: translate(-50%, -50%) scale(1.15);
  
}

/* Zoznam pod mapou */
.zoznam-bodov {
  list-style: none;
  margin-top: 30px;
  text-align: left;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.zoznam-bodov li {
  margin-bottom: 0;
}

.zoznam-bodov button {
  background: #edddd4;
  border: 1px solid #772e25;
  border-radius: 10px;
  font-size: 1.05rem;
  color: #772e25;
  cursor: pointer;
  padding: 12px 18px;
  text-align: left;
  width: 100%;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.zoznam-bodov button:hover {
  background: #e7ad99;
  border-color: #7a322d;
  color: #632324;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Popup */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
  box-sizing: border-box;
}

.popup.skryty {
  display: none;
}

.popup-obsah {
  background: #edddd4;
  max-width: 500px;
  width: 100%;
  padding: 25px 30px;
  border-radius: 12px;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.zatvor {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #888;
  line-height: 1;
}

.zatvor:hover {
  color: #333;
}

#popup-nadpis {
  margin-bottom: 12px;
  font-size: 1.3rem;
}

#popup-text {
  color: #444;
  white-space: pre-line;
}

.upozornenie {
  color: #e74c3c;
  font-weight: 600;
  margin-bottom: 12px;
}

/* Mobil */
@media (max-width: 600px) {
  .uvod {
    flex-direction: column;
    text-align: center;
  }

  .fotka {
    width: 140px;
    height: 140px;
  }
}