@import url('https://fonts.googleapis.com/css?family=Questrial');
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,700');

/* Content Page Specific Styles */
.content-page {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .content-container {

    border-radius: 10px;
  
    overflow: hidden;
  }
  
  .content-header {
    padding: 2rem;
    background-color:transparent;
    position: relative;
    align-items:left;
  }
  
  .date-info {
    display: flex;
    align-items: baseline;
    margin-bottom: 1rem;
    color: #2e2e2e;
  }
  
  .day-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0 0.5rem;
    color: #1c49da;
  }
  
  .month, .year {
    font-size: 1.2rem;
  }
  
  .content-title {
    font-size: 2.2rem;
    color: #1a1a1a;
  }
  
  .featured-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  
  .featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .content-body {
    padding: 0 0 2rem 0;
    color:#2e2e2e;
  }
  
  .content-text {
    padding: 2rem;
  }
  
  .content-text h2 {
    margin-bottom: 1.5rem;
    color: #1c49da;
    font-size: 1.8rem;
  }
  
  .content-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
  }
  
  .trivia-item {
    margin-bottom: 2rem;
    padding: 1rem;
    background-color: #f9f9f9;
    border-radius: 8px;
  }
  
  .trivia-item h3 {
    color:#1c49da;
    margin-bottom: 0.5rem;
  }
  
  .activity-section {
    margin-top: 3rem;
    padding: 1.5rem;
    background-color: rgba(241,241,233,0.6);
    border-radius: 8px;
  }
  
  .question {
    margin-bottom: 1.5rem;
  }
  
  .options {
    margin-top: 0.5rem;
    display: flex;
    flex-direction: column;
  }
  
  .options label {
    margin: 0.3rem 0;
    cursor: pointer;
  }
  
  .submit-quiz {
    background-color: #1c49da;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 1rem;
  }
  
  .submit-quiz:hover {
    background-color:#1c49da;
  }
  
  .quiz-results {
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: #f0f7ff;
    border-radius: 4px;
  }
  
  .content-footer {
    padding: 1.5rem 2rem;
    background-color: #f5f5f5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .navigation a {
    display: inline-block;
    margin-right: 1rem;
  }
  
  .share-buttons {
    display: flex;
    align-items: center;
  }
  
  .share-btn {
    margin-left: 0.5rem;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.9rem;
  }
  
  .share-btn.facebook {
    background-color: #3b5998;
    color: white;
  }
  
  .share-btn.twitter {
    background-color: #1da1f2;
    color: white;
  }
  
  .share-btn.email {
    background-color: #666;
    color: white;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .content-footer {
      flex-direction: column;
      align-items: flex-start;
    }
    
    .share-buttons {
      margin-top: 1rem;
    }
    
    .featured-image {
      height: 200px;
    }
  }