/**
 * Yellowstone Cheri — Blog & Travel Guide Stylesheet
 * islandparkidaho.com
 *
 * This file defines all CSS classes used in Cheri's blog posts
 * and travel guide pages. All content should use these classes
 * rather than inline styles for consistency.
 *
 * Brand colors:
 *   Gold:     #C9A535
 *   Charcoal: #2D2E30
 *   Warm bg:  #f5f3ef
 *   Warm text:#3a3226
 *   Brown h3: #5b3a1f
 */

/* ============================================================
   BLOG WRAPPER
   ============================================================ */
.cheri-blog {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
}

/* ============================================================
   HERO / POST HEADER
   ============================================================ */
.cheri-blog__hero {
  background: #2D2E30;
  padding: 48px 40px 36px;
  border-bottom: 5px solid #C9A535;
}

.cheri-blog__eyebrow {
  font-family: Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #C9A535;
  margin-bottom: 12px;
}

.cheri-blog__hero h1 {
  font-size: 30px;
  line-height: 1.25;
  color: #fff;
  margin-bottom: 16px;
}

.cheri-blog__meta {
  font-family: Arial, sans-serif;
  font-size: 12px;
  color: #aaa;
  letter-spacing: 1px;
}

.cheri-blog__author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(201, 165, 53, 0.35);
}

.cheri-blog__author-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 3px solid #C9A535;
  flex-shrink: 0;
}

.cheri-blog__author-name {
  color: #C9A535;
  font-family: Arial, sans-serif;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 0.5px;
  display: block;
}

.cheri-blog__author-meta {
  font-family: Arial, sans-serif;
  font-size: 11px;
  color: #aaa;
  letter-spacing: 1px;
  display: block;
}

/* ============================================================
   BODY CONTENT
   ============================================================ */
.cheri-blog__body {
  padding: 40px 40px 20px;
}

.cheri-blog__body p {
  font-size: 16px;
  line-height: 1.8;
  color: #3a3226;
  margin-bottom: 20px;
}

.cheri-blog__body h2 {
  font-size: 22px;
  color: #2D2E30;
  margin: 36px 0 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid #C9A535;
}

.cheri-blog__body h3 {
  font-size: 17px;
  color: #5b3a1f;
  margin: 24px 0 10px;
  font-family: Arial, sans-serif;
}

.cheri-blog__divider {
  border: none;
  border-top: 1px solid #e8e0d5;
  margin: 36px 0;
}

/* ============================================================
   CHERI TIP BOX
   Usage:
   <div class="cheri-tip">
     <div class="cheri-tip__photo-col">
       <img class="cheri-tip__avatar" src="[avatar-url]" alt="Yellowstone Cheri">
       <div class="cheri-tip__name">Yellowstone<br>Cheri</div>
     </div>
     <div class="cheri-tip__content">
       <div class="cheri-tip__label">⭐ Yellowstone Cheri's Tip</div>
       <p class="cheri-tip__text">Your tip text here.</p>
     </div>
   </div>
   ============================================================ */
.cheri-tip {
  background: #fff;
  border: 1px solid #e0d5c5;
  border-left: 5px solid #C9A535;
  border-radius: 8px;
  margin: 28px 0;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.09);
}

.cheri-tip__photo-col {
  background: #2D2E30;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px 14px;
  min-width: 100px;
  gap: 7px;
}

.cheri-tip__avatar {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #C9A535;
}

.cheri-tip__name {
  color: #C9A535;
  font-size: 9px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  font-family: Arial, sans-serif;
  line-height: 1.3;
}

.cheri-tip__content {
  padding: 16px 20px;
  flex: 1;
}

.cheri-tip__label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #2D2E30;
  color: #C9A535;
  font-size: 10px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 3px 9px;
  border-radius: 3px;
  margin-bottom: 9px;
  font-family: Arial, sans-serif;
}

.cheri-tip__text {
  font-size: 15px;
  line-height: 1.65;
  color: #3a3226;
  font-style: italic;
}

/* ============================================================
   OFFER / PROMO BANNER
   Usage:
   <div class="cheri-offer">
     <p><strong>Offer headline</strong> — details here.</p>
     <a href="/book">Book Now →</a>
   </div>
   ============================================================ */
.cheri-offer {
  background: #2D2E30;
  border-left: 6px solid #C9A535;
  padding: 22px 26px;
  margin: 32px 0;
  border-radius: 0 8px 8px 0;
}

.cheri-offer p {
  color: #f0ece3;
  font-size: 16px;
  margin-bottom: 14px;
  font-family: Arial, sans-serif;
}

.cheri-offer strong {
  color: #C9A535;
}

.cheri-offer a {
  display: inline-block;
  background: #C9A535;
  color: #1a1a1a;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 11px 22px;
  border-radius: 4px;
  text-decoration: none;
}

.cheri-offer a:hover {
  background: #b8921f;
}

/* ============================================================
   DATA TABLE (e.g. entrance opening schedule)
   Usage:
   <table class="cheri-table">
     <thead><tr><th>Column</th></tr></thead>
     <tbody><tr><td>Data</td></tr></tbody>
   </table>
   ============================================================ */
.cheri-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 14px;
  font-family: Arial, sans-serif;
}

.cheri-table th {
  background: #2D2E30;
  color: #C9A535;
  padding: 10px 14px;
  text-align: left;
  letter-spacing: 0.5px;
}

.cheri-table td {
  padding: 10px 14px;
  border-bottom: 1px solid #e8e0d5;
  color: #3a3226;
}

.cheri-table tr:nth-child(even) td {
  background: #faf7f2;
}

.cheri-table .open-now {
  color: #4A7A3A;
  font-weight: bold;
}

/* ============================================================
   AUTHOR BIO (bottom of post)
   ============================================================ */
.cheri-author-bio {
  background: #faf7f2;
  border-top: 4px solid #C9A535;
  padding: 28px 40px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.cheri-author-bio img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #C9A535;
  flex-shrink: 0;
}

.cheri-author-bio p {
  font-size: 14px;
  color: #5b3a1f;
  margin-bottom: 6px;
  line-height: 1.6;
}

.cheri-author-bio strong {
  color: #2D2E30;
}

.cheri-author-bio a {
  color: #C9A535;
  font-weight: bold;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 600px) {
  .cheri-blog__hero {
    padding: 32px 22px 24px;
  }
  .cheri-blog__hero h1 {
    font-size: 22px;
  }
  .cheri-blog__body {
    padding: 28px 22px 16px;
  }
  .cheri-author-bio {
    flex-direction: column;
    text-align: center;
    padding: 24px 22px;
  }
  .cheri-tip__photo-col {
    min-width: 80px;
    padding: 14px 10px;
  }
  .cheri-tip__avatar {
    width: 52px;
    height: 52px;
  }
}
