body {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f5f7fa;
    color: #333;
    line-height: 1.6;
}
header {
    background-color: #2c3e50;
    color: #ecf0f1;
    text-align: center;

}
.lgo {
    display: flex;
    flex-direction: row;
    gap: 80px;
    flex: 1;
}
img {
    border-radius: 10px;
    margin-top: 20px;
    margin-bottom: 7px;
    box-shadow: 1px 2px 8px #ecf0f1;
}
.logopng {
    display: flex;
    flex-basis: 25%;
    flex-direction: row-reverse;
    border-radius: 10px;
}
.logo {
    display: flex;
    flex-basis: 80%;   
}
h1 {
    font-size: 50px;
    text-shadow: 1px 2px 10px black;
}
nav{
    padding-bottom: 10px;
}
nav a, a:visited{
      color: #ecf0f1;
      text-decoration: none;
      margin: 0 15px;
      font-weight: 600;
      transition: color 0.3s ease;
}
nav a:hover {
    color: #1abc9c;
}
main {
    max-width: 900px;
    margin: 30px auto;
    padding: 0 20px;
}
section {
    margin-bottom: 40px;
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
section h2 {
    margin-bottom: 15px;
    color: #2c3e50;
    border-bottom: 2px solid #1abc9c;
    padding-bottom: 8px;
}
section h3 {
    margin-bottom: 0px;
    margin-top: 25px;
    text-decoration-line: underline;
    text-align: left;
    font-weight: 700;
}
.lia {
    list-style-type: "✅";
}
.highlight {
    background-color:#ffe4c4;
    padding: 4px;
    border-radius: 4px;
    margin: 5px;
    }
.highlight1 {
    background-color:#eed3b3;
    padding: 4px;
    border-radius: 4px;
}
#kontakt a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}
#kontaktform {
  background-color: #f8f9fa;
  padding: 40px;
  border-radius: 16px;
  max-width: 600px;
  margin: 40px auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  font-family: 'Segoe UI', sans-serif;
}

#kontaktform h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #222;
}

form label {
  margin-top: 15px;
  font-weight: 600;
  color: #333;
}

form input,
form textarea {
  width: 100%;
  padding: 12px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  resize: none;
  box-sizing: border-box;
  transition: border-color 0.3s;
}

form input:focus,
form textarea:focus {
  border-color: #e63946;
  outline: none;
}

form button {
  margin-top: 25px;
  width: 100%;
  padding: 14px;
  background-color: #e63946;
  color: white;
  font-weight: bold;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
}

form button:hover {
  background-color: #d62828;
}

footer {
    text-align: center;
    padding: 20px 10px;
    background: #2c3e50;
    color: #ecf0f1;
    margin-top: 50px;
    font-size: 0.9rem;
}

#booksy-widget {
  position: fixed;
  top: 25%;
  right: 0;
  z-index: 9999;
  background: white;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 10px;
  margin-right: 25px;
  box-shadow: -2px 2px 6px rgba(0,0,0,0.2);
}

.review {
  margin-bottom: 20px;
  padding: 20px;
  background-color: white;
  border-left: 5px solid #4CAF50;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

#opinie .linka:hover {
    color:#1abc9c;
    text-decoration: none;
    transform: scale(1.15);
}
#opinie a:visited {
    color:black;
    text-decoration: none;
    transform: scale(1.15);
}
.linka{
    color: black;
    text-decoration: none;
    text-align: left;
    display: inline-block;
    transition: transform 0.1s ease;
}
.linkb{
    color: black;
    text-decoration: none;
    text-align: left;
    display: inline-block;
    transition: transform 0.1s ease;
}
#kontakt a:hover {
    transform: scale(1.03);
}