html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background-color: rgb(88, 6, 6);
  color: black;
  text-align: center;
  line-height: 1.5;
  transition: background-color 0.4s, color 0.4s;
}


#dziennoc {
  position: fixed;
  bottom: 15px;
  right: 15px;
  background: white;
  border: 2px solid black;
  border-radius: 5px;
  color: black;
  padding: 8px 14px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1000;
  user-select: none;
}
#dziennoc:hover {
  background-color: yellow;
  color:  black;
  border-color: yellow;
}

body.nocny,
body.nocny nav ul li a:hover,
body.nocny nav ul li a.active,
body.nocny .lokalizacja {
  background-color: black;
  color: yellow; 
}

body.nocny header,
body.nocny footer {
  background-color: yellow;
  color: black;
  transition: background-color 0.4s, color 0.4s;
}

body.nocny nav ul li a {
  color: black;
}


body.nocny .box{
  color: yellow;  
}

 
body.nocny #dziennoc {
  border-color: yellow;
  color: black;
}

body.nocny #dziennoc:hover {
  background-color: black;
  color: yellow;
  border-color: black;
}

header {
  background-color: black;
  color: white;
  padding: 20px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

header .logo {
  font-family: 'MojaCzcionka', sans-serif;
  font-weight: bold;
  font-size: 1.8rem;
  text-align: left;
  flex: 1;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0 20px;
  display: flex;
  gap: 20px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
    background-color: rgb(88, 6, 6);
}

.galeria-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 10px;
}

img {
  width: 500px;
  height: 300px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}

.strzalka {
  font-size: 2rem;
  background: none;
  border: none;
  color: #333;
  cursor: pointer;
  padding: 10px;
}

.obrazy-row {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.obrazy {
  width: 100px;
  height: 70px;
  object-fit: cover;
  border-radius: 5px;
  opacity: 0.5;
  cursor: pointer;
  transition: opacity 0.3s , border 0.3s ease;
}

.obrazy:hover,
.obrazy.active {
  opacity: 1;
  border: 2px solid #333;
}


.box {
  display: flex;
  border: 2px solid black;
  border-radius: 12px;
  justify-content: space-between;
  gap: 40px;
  padding: 20px 0 50px 0;
  margin: 20px;
  background-color: black;
  color: white;
  flex-wrap: wrap;
}
.box-lewo,
.box-prawo {
    width: 50%;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}
  
.box-prawo ul li {
    padding: 6px 0;
    font-size: 1.1rem;
}

.box-lewo h2 {
    text-align: center;
}



footer {
  background-color: black;
  color: white;
  padding: 10px;
}


