 /* === Global Styles === */ 
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: black;
  color: white;
  font-family: Arial, sans-serif;
  height: 100%;
}

h1, h2, h3 {
  font-family: 'Special Elite', serif;
  color: white;
}

h1 { font-size: 2em; }
h2 { font-size: 1.6em; }
h3 {
  font-size: 1.4em;
  font-weight: bold;
  margin: 25px 0 10px;
}

.site-footer {
  background-color: #111;
  color: #fff;
  text-align: center;
  padding: 25px 15px;
  font-family: 'Special Elite', serif;
  border-top: 2px solid crimson;
  margin-top: 50px;
}

.footer-content p {
  margin: 10px 0;
}

.footer-links a {
  color: crimson;
  text-decoration: none;
  margin: 0 10px;
  font-weight: bold;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ff4d4d;
}


a {
  color: #EB801D;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
}

a:hover,
a.active {
  color: #B90B0D;
  border-bottom: 2px solid #B90B0D;
}

.align-left { text-align: left; }
.align-right { text-align: right; }

/* === Layout Containers === */
.container, .books-container, .grid-container, main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.content-block,
.entry {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  border-radius: 10px;
  margin-bottom: 40px;
  color: white;
}

.content-block {
  background: #1c1c1c;
  padding: 20px;
  flex-wrap: wrap;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.content-block.reverse,
.entry.reverse {
  flex-direction: row-reverse;
}

.content-block img,
.entry img {
  width: 300px;
  max-height: 400px;
  object-fit: contain;
  border-radius: 5px;
  flex-shrink: 0;
  height: auto;
}

.text-section,
.text-trailer {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.content-block p {
  font-size: 1.1em;
  line-height: 1.6;
}

.combined-place-block {
  background: #1c1c1c;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 40px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.combined-place-block .content-block {
  background: none;
  box-shadow: none;
  margin-bottom: 0;
  padding: 0;
}

.combined-place-block .content-block:not(:last-child) {
  margin-bottom: 20px;
}

/* === Entry Specific === */
.entry {
  background: #222;
  padding: 15px;
  border-radius: 6px;
  border: 1px solid #333;
}

.entry p {
  flex: 1;
  line-height: 1.5;
}

/* === Trailer === */
.trailer {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}

.top-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
}

.top-row img {
  width: 300px;
  border-radius: 8px;
  flex-shrink: 0;
}

.text-section {
  flex: 1;
}

.trailer iframe {
  width: 100%;
  max-width: 560px;
  height: 315px;
  border-radius: 10px;
}

/* === Responsive === */
@media (max-width: 1024px) {
  .entry,
  .entry.reverse {
    flex-direction: column !important;
    align-items: center;
    text-align: left;
  }

  .entry img,
  .content-block img {
    max-width: 70%;
    margin-bottom: 15px;
  }

  .entry p {
    width: 90%;
  }

  .welcome-text {
    display: block;
    text-align: center;
  }

  .welcome-text p {
    width: 100%;
  }
}

@media (min-width: 600px) {
  nav {
    text-align: center;
    padding: 10px 0;
  }

  nav a {
    margin: 0 10px;
  }

  .welcome-text {
    display: flex;
    gap: 20px;
    justify-content: center;
    padding: 10px;
  }

  .welcome-text p {
    width: 45%;
  }

  main img {
    display: block;
    margin: 0 auto;
    width: 70%;
    max-width: 400px;
  }

  main h2 {
    text-align: center;
  }
}