/* =======================
   New Arrivals
========================== */
.new-arrivals{
  display:flex;
  flex-direction: row;

}


/* =======================
   Dailes header
========================== */

.dailies-header{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.dailies-header-text{
 font-size: 1.1rem;
  font-weight: 200;
  letter-spacing: 0.1px;
  color: #2e2e2e;
  font-style: italic;
  text-transform: none;
}

.dailies-date-text{
   font-size: 0.9rem;
  font-weight: 200;
  letter-spacing: 0.1px;
  color: #2e2e2e;
  font-style: italic;
  text-transform: none;
}
/* =======================
   Todays Quote
========================== */
.todays-quote{
  display:flex;
  flex-direction: row;

}

.todays-quote-content{

}



.sunken-box {
  background-color: #f1f1f1; /* Light gray to resemble paper */
    padding: 10px;
    border-radius: 0px; /* Soft rounded corners */
    max-width: 400px; /* Limit the width to make it look like a book page */
    margin: 10px auto;

    /* Deep inset shadow to create a pronounced sunken look */
    box-shadow: inset 10px 10px 20px rgba(0, 0, 0, 0.2), 
                inset -10px -10px 20px rgba(255, 255, 255, 0.3);

    /* Optional: Add texture to the background (paper-like effect) */
    background-image: url('https://www.transparenttextures.com/patterns/old-paper-2.png');
    background-size: cover;

    font-size: 18px;
    color: #333;
    font-family: 'Georgia', serif; /* Book-like font */

}

.sunken-box p{
      /* Text shadow to create an embossed effect */
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);

    font-family: "Garamond", serif;
}

.sunken-box .source-info{
  font-size: 0.8rem;
}




/* =======================
   Olly Yonkoma (4-panel comic)
========================== */

.yonkoma-header{
  justify-content: center;
  text-align: center;
}
.olly-yonkoma {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0;
  width: 100%;
  max-width: 600px;
  aspect-ratio: 1 / 1;
  margin: 2rem auto;
  padding: 0;
  border: 3px solid #333;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  background-color: #fff;
  font-family: 'Helvetica', sans-serif;
}

.panel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.1rem;
  border: 1px solid #999;
  overflow: hidden;
  box-sizing: border-box;
}

.panel:last-child {
  border-bottom: none;
}

.panel:hover {
  background-color: #f0f0f0;
}

.panel-img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.panel-text {
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  padding: 0.5rem 1rem;
  text-align: center;
  font-size: 1rem;
  z-index: 1;
  pointer-events: none;
}

/* =======================
   Book List Section
========================== */

.book-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid #ccc;
}

.book-cover-img {
  width: 100px;
  height: auto;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 4px;
}

.book-info {
  flex: 1;
  padding: 5px;
  font-size: 1em;
}

.book-title {
  font-size: 1.4em;
  font-weight: bold;
  margin: 0 0 5px;
}

.book-author {
  font-size: 1em;
  color: #555;
  margin: 0 0 15px;
}

.book-summary {
  font-size: 0.95em;
  color: #333;
  line-height: 1.5;
}

.book-btn-link {
  display: inline-block;
  width: 100%;
  margin-top: 15px;
  padding: 0.5rem 2rem;
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}

.book-btn-link:hover {
  background-color: #0056b3;
}

.book-divider {
  border: none;
  border-bottom: 1px solid #ddd;
  margin: 0 0 16px 0;
}

/* =======================
   Responsive (Mobile)
========================== */

@media (max-width: 600px) {
  .book-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .book-cover-img {
    width: 60%;
    max-width: 200px;
    margin: 0 auto;
    border: 0.5px solid black;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  .book-info {
    margin-top: 12px;
  }
}
