/*
Theme Name: Zlatan Nadvornik Theme
Theme URI: https://zlatan-nadvornik.com
Author: Makso Herman
Description: Custom WordPress theme for the Zlatan Nadvornik digital repository.
Version: 1.0.0
Text Domain: zn-theme
*/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #faf8f5;
  color: #2c2520;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

h1, h2, h3, .site-title {
  font-family: "Playfair Display", Georgia, serif;
  color: #4a2c11;
  font-weight: 700;
}

.site-header {
  border-bottom: 1px solid rgba(74, 44, 17, 0.1);
  padding: 2rem 0;
}
.site-header .header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.site-header .site-title {
  font-size: 1.75rem;
  text-decoration: none;
}
.site-header .site-description {
  font-size: 0.875rem;
  color: #70655c;
}
.site-header .main-navigation ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}
.site-header .main-navigation ul a {
  text-decoration: none;
  color: #2c2520;
  font-weight: 500;
  transition: color 0.2s;
}
.site-header .main-navigation ul a:hover {
  color: #c0392b;
}

.site-main {
  padding: 4rem 0;
}

.hero-presentation {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 5rem auto;
}
.hero-presentation h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}
.hero-presentation .lead-text {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  color: #70655c;
  line-height: 1.5;
}

.books-repository .section-title {
  font-size: 2rem;
  margin-bottom: 2.5rem;
  border-bottom: 2px solid #4a2c11;
  padding-bottom: 0.5rem;
}

.books-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 3rem 2rem;
}

.book-card {
  display: flex;
  flex-direction: column;
}
.book-card .book-cover-link {
  text-decoration: none;
}
.book-card .book-cover {
  background: #fff;
  padding: 0.5rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05), 0 6px 6px rgba(0, 0, 0, 0.07);
  border-radius: 4px;
  transition: transform 0.3s ease;
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.book-card .book-cover img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.book-card .book-cover:hover {
  transform: translateY(-5px);
}
.book-card .placeholder-cover {
  background: rgb(236.9, 233.9, 231.2);
  border: 2px dashed rgba(74, 44, 17, 0.2);
  padding: 2rem;
  text-align: center;
  color: #4a2c11;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: bold;
}
.book-card .book-header {
  margin-top: 1.25rem;
}
.book-card .book-header h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.book-card .book-header h3 a {
  text-decoration: none;
  color: #4a2c11;
}
.book-card .book-header h3 a:hover {
  color: #c0392b;
}
.book-card .book-excerpt {
  font-size: 0.9rem;
  color: #70655c;
}

.site-footer {
  background-color: #4a2c11;
  color: #fff;
  padding: 3rem 0;
  margin-top: 5rem;
  font-size: 0.9rem;
}
.site-footer .footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.site-footer .footer-subtext {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  margin-top: 0.25rem;
}
.site-footer .footer-credits {
  color: rgba(255, 255, 255, 0.5);
}

.single-book-article {
  margin-top: 1rem;
}

.book-details-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 3rem;
}
@media (max-width: 900px) {
  .book-details-layout {
    grid-template-columns: 1fr;
  }
}

.book-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.book-sidebar .book-cover-wrapper {
  background: #fff;
  padding: 0.75rem;
  border-radius: 6px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}
.book-sidebar .book-cover-wrapper .book-cover-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}
.book-sidebar .book-meta-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 6px;
  border: 1px solid rgba(74, 44, 17, 0.12);
}
.book-sidebar .book-meta-card h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(74, 44, 17, 0.1);
  padding-bottom: 0.5rem;
}
.book-sidebar .book-meta-card .meta-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}
.book-sidebar .book-meta-card .meta-list li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}
.book-sidebar .book-meta-card .meta-list li strong {
  color: #4a2c11;
}
.book-sidebar .book-meta-card .meta-list li span {
  color: #70655c;
  text-align: right;
}
.book-sidebar .book-meta-card .btn-download {
  display: block;
  width: 100%;
  text-align: center;
  background-color: #4a2c11;
  color: #fff;
  padding: 0.75rem 1rem;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: background 0.2s ease;
}
.book-sidebar .book-meta-card .btn-download:hover {
  background-color: #c0392b;
}

.book-main-content .entry-title {
  font-size: 2.75rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.book-main-content .entry-content {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 3rem;
  color: #2c2520;
}
.book-main-content .flipbook-section {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px solid rgba(74, 44, 17, 0.1);
}
.book-main-content .flipbook-section .section-subtitle {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}
.book-main-content .flipbook-section .flipbook-container {
  width: 100%;
  min-height: 600px;
  background: #fff;
  padding: 1rem;
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.book-main-content .flipbook-section .no-pdf-notice {
  color: #70655c;
  font-style: italic;
  padding: 2rem;
  text-align: center;
}

.page-title {
  margin-bottom: 2rem;
}/*# sourceMappingURL=style.css.map */