body {
  font-family: "Poppins", sans-serif;
  background-color: #f5f1ea;
  color: #292625;
  margin: 0;
}
.pagecontainer {
  max-width: 1400px;
  margin: 0 auto;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 10px;
  max-width: 1200px;
  margin: 0 auto;
}
.grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}
section {
  max-width: 100%;
  margin: 0 auto;
  padding: 40px 20px;
}
.text-center {
  text-align: center;
}
.embed {
  margin: 10px 10px;
  max-width: 100%;
}
.site-header {
  background-color: #f5f1ea;
  text-align: center;
  padding: 18px 20px 5px;
}

.site-brand a {
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  font-weight: 600;
  color: #292625;
  text-decoration: none;
  letter-spacing: 1px;
}

.hero {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url("/images/hero_image.jpg");

  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;

  color: white;
  text-align: center;

  padding: 120px 20px 80px;
}

.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 76px;
  line-height: 1.1;
  margin: 15px 0;
  color: white;
}
header h2,
.hero h3 {
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 2px;
  margin: 0;
  color: white;
}
header p {
  color: white;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}
a.button,
a.button:visited,
a.button:active {
  background-color: #6b3f4a !important;
  color: #ffffff !important;
  border: 1px solid #6b3f4a !important;
  padding: 12px 24px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
  display: inline-block;
  margin: 10px;
  text-decoration: none !important;
  text-align: center;
  transition: background-color 0.2s ease;
}

a.button:hover {
  background-color: #4d2c35 !important;
  color: #ffffff !important;
  border-color: #4d2c35 !important;
}
.card {
  background-color: #f8f5ff;
  text-align: center;
}
.cardImage {
  max-width: 100%;
  filter: opacity(90%);
  filter: brightness(1.2);
}
.card p {
  margin: 10px;
}
footer {
  color: white;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url("/images/footer.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  padding: 50px 0;
  margin: 20px;
}
footer h3 {
  font-weight: 400;
  font-size: 25px;
  line-height: 1.5;
  letter-spacing: 1px;
  margin: 0;
}
footer p {
  font-weight: 400;
  font-size: 16px;
  margin-right: 20px;
  line-height: 24px;
}
footer ul {
  padding: 0;
}
footer li {
  list-style: none;
  margin: 0;
  padding: 0;
}
footer a {
  color: white;
  text-decoration: none;
}
.imgresponsive {
  max-width: 100%;
}

@media (max-width: 960px) {
  header {
    padding: 60px 0;
  }
  header h1 {
    font-size: 48px;
  }
  header h3 {
    font-size: 12px;
  }
  .grid {
    grid-template-columns: 1fr;
  }
  .grid2 {
    grid-template-columns: 1fr;
  }
  .card {
    max-width: 300px;
  }
  .embed {
    display: none;
  }
}

.nav-pills .nav-link {
  color: #6b3f4a;
  background-color: transparent;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.nav-pills .nav-link:hover {
  background-color: #6b3f4a;
  color: white;
}

.nav-pills .nav-link.active {
  background-color: transparent;
  color: #6b3f4a;
}

.nav {
  justify-content: center;
  padding: 10px 20px;
}
/* BLOG */

.blog-list {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 20px;
}

.blog-list > h1 {
  margin-bottom: 10px;
}

.blog-card {
  background-color: #f8f5ff;
  padding: 30px;
  margin: 30px 0;
  border-radius: 8px;
}

.blog-card h2 {
  margin-top: 0;
}

.blog-card h2 a {
  color: #333;
  text-decoration: none;
}

.blog-card h2 a:hover {
  color: blueviolet;
}

.blog-date {
  font-size: 14px;
  opacity: 0.7;
}

.blog-post {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #f8f5ff;
}

.blog-post h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.blog-post p {
  line-height: 1.8;
}

.blog-post h2 {
  margin-top: 40px;
}
h1,
h2,
h3,
h4 {
  font-family: "Cormorant Garamond", serif;
  color: #292625;
}
.blog-card-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  margin-bottom: 25px;
}
/* ABOUT SECTION */

.about-section {
  padding: 55px 20px;
  background-color: #f5f1ea;
}

.about-section .grid2 {
  align-items: center;
}

.about-image {
  width: 100%;
  max-width: 520px;
  height: 480px;
  object-fit: cover;
  display: block;
}

.about-text {
  max-width: 600px;
  padding: 20px;
}

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #6b3f4a;
  margin-bottom: 15px;
}

.about-text h2 {
  font-size: 52px;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 25px;
}

.about-text p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.editorial-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 32px 0;
}

.editorial-principles > div {
  padding-top: 16px;
  border-top: 1px solid #d8d2c8;
}

.editorial-principles .eyebrow {
  margin-bottom: 8px;
}

.editorial-principles > div p:last-child {
  margin: 0;
}

@media (max-width: 700px) {
  .editorial-principles {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.publisher-section {
  padding: 55px 20px;
}

.publisher-section .grid2 {
  align-items: center;
}

.publisher-image img {
  width: 100%;
  display: block;
}

.publisher-text {
  max-width: 560px;
}

.publisher-text h2 {
  margin-bottom: 20px;
}

.publisher-text p {
  margin-bottom: 18px;
}

.publisher-text .button {
  margin-top: 10px;
}

@media (max-width: 700px) {
  .publisher-section {
    padding: 60px 0;
  }

  .publisher-text {
    margin-top: 30px;
  }
}
.coming-soon-section {
  padding: 60px 20px;
  text-align: center;
  background: #f3f0ea;
}

.coming-soon-content {
  max-width: 720px;
  margin: 0 auto;
}

.coming-soon-content h2 {
  margin-bottom: 24px;
}

.coming-soon-content p {
  margin-bottom: 18px;
}

.coming-soon-content .button {
  margin-top: 15px;
}
.readers-section {
  padding: 55px 20px;
  text-align: center;
}

.readers-content {
  max-width: 680px;
  margin: 0 auto;
}

.readers-content h2 {
  margin-bottom: 20px;
}

.readers-content p {
  margin-bottom: 24px;
}
.journal-section {
  padding: 55px 20px;
}

.journal-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.journal-header h2 {
  margin: 0;
}

.text-link {
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.journal-card {
  padding: 28px;
  border: 1px solid #d8d2c8;
}

.journal-card h3 {
  margin: 10px 0 14px;
}

.journal-card p:last-child {
  margin-bottom: 0;
}

@media (max-width: 700px) {
  .journal-header {
    display: block;
  }

  .journal-header .text-link {
    display: inline-block;
    margin-top: 15px;
  }

  .journal-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
/* FOOTER */

.site-footer {
  background-color: #4d2c35;
  color: #f5f1ea;
  padding: 70px 50px 25px;
  margin: 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 80px;
}

.footer-brand {
  max-width: 400px;
}

.footer-brand h2 {
  color: #f5f1ea;
  font-size: 42px;
  font-weight: 500;
  margin: 0 0 10px;
}

.footer-brand p {
  font-size: 16px;
  margin: 0;
  opacity: 0.85;
}

.footer-links {
  display: flex;
  gap: 100px;
}

.footer-links h3 {
  color: #f5f1ea;
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 20px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #f5f1ea;
  text-decoration: none;
  font-size: 14px;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-bottom {
  max-width: 1200px;
  margin: 60px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(245, 241, 234, 0.2);
}

.footer-bottom p {
  margin: 0;
  font-size: 12px;
  opacity: 0.65;
}

@media (max-width: 700px) {
  .footer-inner {
    flex-direction: column;
    gap: 50px;
  }

  .footer-links {
    gap: 60px;
  }
}
/* STANDARD CONTENT PAGES */

.page-section {
  padding: 90px 30px;
  background-color: #f5f1ea;
}

.page-content {
  max-width: 850px;
  margin: 0 auto;
}

.page-content h2 {
  font-size: 48px;
  margin-top: 20px;
  margin-bottom: 30px;
}

.page-content h3 {
  font-size: 30px;
  margin-top: 45px;
  margin-bottom: 15px;
}

.page-content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 22px;
}
/* CATALOGUE */

.catalogue-intro {
  max-width: 700px;
  margin: 40px auto 70px;
  text-align: center;
}

.catalogue-coming-soon {
  max-width: 900px;
  margin: 0 auto 70px;
  padding: 70px 40px;
  text-align: center;
  border-top: 1px solid #c9beb2;
  border-bottom: 1px solid #c9beb2;
}

.catalogue-coming-soon h2 {
  font-size: 44px;
  font-weight: 500;
  margin-bottom: 15px;
}

.catalogue-coming-soon p {
  margin: 0;
  font-size: 16px;
}

.catalogue-cta {
  text-align: center;
  margin-bottom: 15px !important;
}
/* CONTACT */

.contact-email {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px !important;
  margin-top: 25px;
}

.contact-email a {
  color: #6b3f4a;
  text-decoration: none;
}

.contact-email a:hover {
  text-decoration: underline;
}

.contact-note {
  font-size: 13px !important;
  opacity: 0.6;
  font-style: italic;
}
.comment-section {
  max-width: 700px;
  margin: 70px auto 20px;
  padding-top: 50px;
  border-top: 1px solid #d8d2c8;
}

.comment-section h2 {
  font-size: 42px;
  margin-bottom: 15px;
}

.comment-section > p {
  margin-bottom: 30px;
}

.comment-field {
  margin-bottom: 20px;
}

.comment-field label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.comment-field input,
.comment-field textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #d8d2c8;
  background-color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  box-sizing: border-box;
}

.comment-field textarea {
  resize: vertical;
}

.hidden {
  display: none;
}
.approved-comments {
  max-width: 700px;
  margin: 50px auto 70px;
}

.approved-comments h2 {
  font-size: 42px;
  margin-bottom: 30px;
}

.approved-comment {
  padding: 20px 0;
  border-top: 1px solid #d8d2c8;
}

.comment-author {
  margin-bottom: 10px;
  font-size: 14px;
}

.approved-comment > p:last-child {
  margin-bottom: 0;
}
.comment-section button.button {
  background-color: #6b3f4a;
  color: #fff;
  border: 1px solid #6b3f4a;
  padding: 12px 28px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.comment-section button.button:hover {
  background-color: #4d2c35;
  border-color: #4d2c35;
}
/* Submissions announcement */
.submission-announcement {
  background-color: #eee7dc;
  border-left: 4px solid #6b3f4a;
  padding: 28px 32px;
  margin: 40px 0;
}

.submission-announcement h2 {
  margin-top: 0;
  color: #6b3f4a;
}

.submission-announcement p:last-child {
  margin-bottom: 0;
}
