body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start; 
  min-height: 100vh;
  margin: 0;
  background: #f0f0f0;
  font-family: sans-serif;

  /* FIX: adjust path if your CSS file is in a subfolder */
  background-image: url("zinesimages/BACKGROUNDING.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}


.book {
  width: 600px;
  height: 400px;
  position: relative;
  perspective: 1500px;
}

.page {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;

  backface-visibility: hidden;
  -webkit-backface-visibility: hidden; /* Safari support */

  transform-style: preserve-3d;
  transition: transform 1s ease;
  overflow: hidden;
}

.page img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page.flipped {
  transform: rotateY(-180deg);
}

/* =======================
   CONTROLS
   ======================= */

.controls {
  margin-top: 20px;
}

.controls button {
  padding: 8px 16px;
  margin: 0 10px;
  font-size: 16px;
  border: none;
  border-radius: 4px;
  background: #222;
  color: white;
  cursor: pointer;

  font-family: "Oldenburg", cursive; /* FIX: missing semicolon + fallback */
}

.controls button:hover {
  background: #444;
}

/* =======================
   TOOLBAR / NAVIGATION
   ======================= */

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: rgb(211, 172, 187);
}

ul li {
  float: left;
}

ul li a {
  display: block;
  color: rgb(11, 25, 51);
  text-align: center;
  padding: 14px 91.05px;
  text-decoration: none;
  font-family: "Oldenburg", cursive;
}

ul li a:hover {
  background-color: rgb(98, 169, 167);
}

ul li a.active {
  background-color: rgb(100, 120, 133);
}

/* =======================
   ICON HOVER EFFECTS
   ======================= */

.icon-row a {
  display: inline-block;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.icon-row a:hover {
  transform: translateY(-5px);
  filter: brightness(1.1);
}

/* =======================
   LOGO
   ======================= */

.logoheader {
  display: block;
  margin: auto;
  max-width: 45%;
  height: auto;
}