/* ============================================================
   DD HOME 2 SUITES — Blog / Travel CSS Extension
   Adds travel/tourism feel on top of main style.css
   ============================================================ */

/* ===== BLOG HERO ===== */
.blog-hero {
  height: 520px;
  display: flex; align-items: flex-end;
  position: relative; overflow: hidden;
}
.blog-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.blog-hero:hover .blog-hero-bg { transform: scale(1); }
.blog-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(26,18,16,0.92) 0%, rgba(26,18,16,0.35) 60%, rgba(61,58,140,0.15) 100%);
  z-index: 1;
}
.blog-hero-content {
  position: relative; z-index: 2;
  padding-bottom: 48px; width: 100%;
}
.blog-hero-category {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--red); color: var(--white);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 2px;
  margin-bottom: 16px;
}
.blog-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 400; color: var(--white);
  line-height: 1.08; margin-bottom: 16px;
}
.blog-hero-title em { font-style: italic; color: var(--red-light); }
.blog-hero-meta {
  display: flex; flex-wrap: wrap; gap: 20px;
  font-size: 13px; color: rgba(255,255,255,0.65);
}
.blog-hero-meta span { display: flex; align-items: center; gap: 6px; }
.blog-hero-meta i { color: var(--red); }

/* ===== INFO CHIPS (timings, entry fee, etc.) ===== */
.info-strip {
  background: var(--dark);
  border-bottom: 3px solid var(--red);
  padding: 0;
}
.info-chip {
  display: flex; align-items: center; gap: 10px;
  padding: 18px 0; border-right: 1px solid rgba(255,255,255,0.08);
}
.info-chip:last-child { border-right: none; }
.info-chip i { font-size: 22px; color: var(--red); flex-shrink: 0; }
.info-chip .ic-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.4); margin-bottom: 2px; }
.info-chip .ic-value { font-size: 14px; font-weight: 600; color: var(--white); }

/* ===== BLOG BODY CONTENT ===== */
.blog-body-content { font-size: 15px; line-height: 1.9; color: #3D2E2E; }
.blog-body-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px; font-weight: 500;
  color: var(--dark); margin: 40px 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--cream2);
}
.blog-body-content h2::before {
  content: '';
  display: inline-block; width: 4px; height: 22px;
  background: var(--red); border-radius: 2px;
  margin-right: 12px; vertical-align: middle;
}
.blog-body-content h3 { font-size: 21px; color: var(--dark); margin: 28px 0 10px; }
.blog-body-content p { margin-bottom: 18px; }
.blog-body-content ul { margin: 0 0 18px 20px; }
.blog-body-content ul li {
  list-style: none; padding-left: 20px;
  position: relative; margin-bottom: 10px;
  color: var(--text-muted);
}
.blog-body-content ul li::before {
  content: '';
  position: absolute; left: 0; top: 9px;
  width: 8px; height: 8px;
  border-radius: 50%; background: var(--red);
}
.blog-body-content strong { color: var(--dark); font-weight: 600; }

/* Pull quote */
.blog-pullquote {
  border-left: 4px solid var(--red);
  background: var(--cream);
  padding: 24px 28px; margin: 32px 0;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.blog-pullquote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-style: italic;
  color: var(--dark); margin: 0; line-height: 1.5;
}

/* Highlight box */
.blog-highlight {
  background: linear-gradient(135deg, #FFF5F5 0%, #F5F0FF 100%);
  border: 1px solid var(--red-light);
  border-radius: var(--radius);
  padding: 24px 28px; margin: 28px 0;
}
.blog-highlight-title {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--red); margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.blog-highlight ul { margin: 0; }
.blog-highlight ul li { color: var(--text); }

/* ===== PHOTO GALLERY ===== */
.photo-gallery { margin: 40px 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 8px; border-radius: var(--radius); overflow: hidden;
}
.gallery-item { overflow: hidden; cursor: zoom-in; position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item.large { grid-row: 1 / 3; }
.gallery-item::after {
  content: '\F52A'; font-family: 'Bootstrap-Icons';
  position: absolute; inset: 0;
  background: rgba(204,31,31,0.0);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 30px;
  transition: all 0.3s ease; opacity: 0;
}
.gallery-item:hover::after { background: rgba(204,31,31,0.35); opacity: 1; }

/* ===== TRAVEL TIPS BOX ===== */
.travel-tips {
  background: var(--dark);
  border-radius: var(--radius); padding: 32px;
  margin: 32px 0;
}
.travel-tips-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; color: var(--white);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.travel-tips-title i { color: var(--red); }
.tip-item {
  display: flex; gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.tip-item:last-child { border-bottom: none; }
.tip-num {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--red); color: var(--white);
  font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.tip-text { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.7; }

/* ===== HOW TO REACH ===== */
.reach-card {
  background: var(--cream); border-radius: var(--radius);
  padding: 24px; border: 1px solid var(--cream2);
  margin-bottom: 12px; display: flex; gap: 16px; align-items: flex-start;
}
.reach-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--red); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.reach-mode { font-size: 13px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.reach-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ===== SIDEBAR ===== */
.blog-sidebar { position: sticky; top: 80px; }

.sidebar-widget {
  background: var(--white); border: 1px solid var(--cream2);
  border-radius: var(--radius); padding: 24px;
  margin-bottom: 20px;
}
.sidebar-widget-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 500;
  color: var(--dark); margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--red);
}

.related-post { display: flex; gap: 12px; margin-bottom: 14px; padding-bottom: 14px; border-bottom: 1px solid var(--cream2); }
.related-post:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.related-post img { width: 70px; height: 60px; object-fit: cover; border-radius: var(--radius); flex-shrink: 0; }
.related-post-title { font-size: 13px; font-weight: 500; color: var(--dark); line-height: 1.4; margin-bottom: 4px; }
.related-post-title a:hover { color: var(--red); }
.related-post-dist { font-size: 11px; color: var(--red); font-weight: 600; }

/* Map embed placeholder */
.map-placeholder {
  background: var(--cream2);
  height: 200px; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 10px;
  border: 1px solid var(--cream2);
  font-size: 13px; color: var(--text-muted);
}

/* ===== STAY CTA (sidebar) ===== */
.stay-cta {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  border-radius: var(--radius); padding: 28px 24px; text-align: center;
  margin-bottom: 20px;
}
.stay-cta h4 { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: var(--white); margin-bottom: 8px; }
.stay-cta p { font-size: 13px; color: rgba(255,255,255,0.8); margin-bottom: 18px; line-height: 1.6; }
.stay-cta a {
  display: block; background: var(--white); color: var(--red);
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 12px 20px;
  border-radius: var(--radius); transition: var(--transition);
}
.stay-cta a:hover { background: var(--dark); color: var(--white); }

/* ===== BLOG LISTING PAGE ===== */
.blog-filter-btn {
  padding: 8px 20px; font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  border: 1.5px solid var(--red); border-radius: 2px;
  background: transparent; color: var(--red); cursor: pointer;
  transition: var(--transition);
}
.blog-filter-btn.active,
.blog-filter-btn:hover { background: var(--red); color: var(--white); }

/* Big featured blog card */
.blog-card-featured {
  border-radius: var(--radius); overflow: hidden;
  position: relative; height: 420px;
  display: flex; align-items: flex-end;
  cursor: pointer;
}
.blog-card-featured img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.blog-card-featured:hover img { transform: scale(1.04); }
.blog-card-featured::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(26,18,16,0.88) 0%, rgba(26,18,16,0.15) 60%);
  z-index: 1;
}
.blog-card-featured-body {
  position: relative; z-index: 2; padding: 32px;
}
.blog-card-featured-body .blog-cat { color: var(--red-light); }
.blog-card-featured-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; color: var(--white);
  line-height: 1.2; margin: 8px 0 12px;
}
.blog-card-featured-body p { font-size: 14px; color: rgba(255,255,255,0.7); margin-bottom: 16px; }
.blog-card-featured-body .blog-meta { color: rgba(255,255,255,0.5); }

/* ===== TAG CLOUD ===== */
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  font-size: 12px; padding: 5px 12px;
  background: var(--cream2); color: var(--text-muted);
  border-radius: 2px; border: 1px solid var(--cream2);
  transition: var(--transition); cursor: pointer;
}
.tag:hover { background: var(--red); color: var(--white); border-color: var(--red); }

/* ===== PAGINATION ===== */
.blog-pagination { display: flex; gap: 8px; justify-content: center; margin-top: 48px; }
.page-btn {
  width: 40px; height: 40px; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 600;
  border: 1.5px solid var(--cream2);
  background: var(--white); color: var(--text-muted);
  cursor: pointer; transition: var(--transition);
}
.page-btn.active, .page-btn:hover { background: var(--red); border-color: var(--red); color: var(--white); }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item.large { grid-row: auto; }
  .blog-hero { height: 380px; }
  .blog-hero-title { font-size: 36px; }
  .blog-sidebar { position: static; }
}
@media (max-width: 767px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 160px 160px; }
  .info-chip { padding: 12px 0; }
}
