@import url('https://fonts.googleapis.com/css2?family=Pacifico&family=Segoe+UI&display=swap');

body {
    font-family: "Segoe UI", Tahoma, sans-serif;
    background: #333 url("../Barvy/abstract-1780386_1920\ -\ kopie.png") no-repeat center center fixed;
    background-size: cover;
    color: #f0f0f0;
    text-align: center;
    margin: 0;
    padding: 20px;
}

h1 {
  font-family: 'Pacifico', cursive;
  font-size: 3rem;
  color: #ffffff;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
}


button, nav a {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  background: #4a90e2;
  border: none;
  border-radius: 30px; 
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

header a {
    display: inline-block;
  padding: 0.8rem 1.6rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #000000;
  background: #ffffff;
  border: none;
  border-radius: 30px; 
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;

}

button:hover, nav a:hover {
  background: #357abf;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}

header a:hover {
  background: #e0e0e0;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}


#fotografie {
    width: 80%;
    max-width: 800px;
    height: 450px;
    margin: 20px auto;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.6);
    transition: background-image 0.5s ease-in-out;
}

#ovladani {
    display: flex;
    justify-content: center;
    margin-top: 15px;
    gap: 15px;
}

.kolecko {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #fff;
    background-color: transparent; 
    cursor: pointer;
    transition: all 0.3s ease;
}

.kolecko.active {
    background-color: #333;
}

.kolecko:hover {
    transform: scale(1.1);
}
