/* Blog Content Styles */
.blog-content {
  color: #1f2937; /* Tailwind gray-800 */
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.blog-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827; /* Tailwind gray-900 */
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.blog-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.blog-content p {
  margin-bottom: 1rem;
}

.blog-content ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.blog-content li {
  margin-bottom: 0.5rem;
  color: #374151; /* Tailwind gray-700 */
}

.blog-content a {
  color: #2563eb; /* Tailwind blue-600 */
  text-decoration: none;
}

.blog-content a:hover {
  text-decoration: underline;
}

.blog-content img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: block;
}

/* Unified Adventure Theme Components */

/* Badge System */
.badge {
  font-size: 0.75rem;         /* text-xs */
  font-weight: 500;           /* font-medium */
  padding: 0.25rem 0.75rem;    /* py-1 px-3 */
  border-radius: 9999px;      /* rounded-full */
  display: inline-block;
}

.badge-expertise-easy {
  background-color: #d1fae5;  /* green-100 */
  color: #065f46;             /* green-800 */
  border: 1px solid #a7f3d0;  /* green-200 */
}

.badge-expertise-moderate {
  background-color: #fef3c7;  /* yellow-100 */
  color: #92400e;             /* yellow-800 */
  border: 1px solid #fde68a;  /* yellow-200 */
}

.badge-expertise-hard {
  background-color: #fee2e2;  /* red-100 */
  color: #991b1b;             /* red-800 */
  border: 1px solid #fecaca;  /* red-200 */
}

.badge-category {
  background-color: #dbeafe;  /* blue-100 */
  color: #1e40af;             /* blue-800 */
  border: 1px solid #bfdbfe;  /* blue-200 */
}

.badge-cost {
  background-color: #ede9fe;  /* purple-100 */
  color: #4c1d95;             /* purple-800 */
  border: 1px solid #ddd6fe;  /* purple-200 */
}

.badge-time {
  background-color: #f3f4f6;  /* gray-100 */
  color: #1f2937;            /* gray-800 */
  border: 1px solid #e5e7eb;  /* gray-200 */
}

.badge-gear-category {
  background-color: #e0f2fe;  /* sky-100 */
  color: #0369a1;            /* sky-800 */
  border: 1px solid #bae6fd;  /* sky-200 */
}

/* Button System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;          /* py-2 px-4 */
  border-radius: 0.375rem;       /* rounded-md */
  font-weight: 600;              /* font-semibold */
  transition: all 0.2s;
  outline: none;
}

.btn-primary {
  background-color: #16a34a;      /* green-600 */
  color: #ffffff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  background-color: #15803d;      /* green-700 */
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
  background-color: #ffffff;
  color: #1f2937;                /* gray-800 */
  border: 1px solid #d1d5db;      /* gray-300 */
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
  background-color: #f9fafb;      /* gray-50 */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-accent {
  background-color: #2563eb;      /* blue-600 */
  color: #ffffff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-accent:hover {
  background-color: #1d4ed8;      /* blue-700 */
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.15);
}

/* Card System */
.card {
  background-color: #ffffff;
  border-radius: 0.75rem;             /* rounded-xl */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease-out;
}

.card-hover:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  transform: scale(1.02) translateY(-0.25rem);
}

.card-blog {
  background-color: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease-out;
}

.card-blog:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  transform: scale(1.02) translateY(-0.25rem);
}

.card-gear {
  background-color: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
  transition: box-shadow 0.2s;
}

.card-gear:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* Image styling */
.adventure-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s;
}

/* Typography */
.heading-primary {
  font-size: 1.875rem;             /* text-3xl */
  font-weight: 700;
  color: #1f2937;
}

@media (min-width: 768px) {
  .heading-primary {
    font-size: 2.25rem;            /* md:text-4xl */
  }
}

.heading-secondary {
  font-size: 1.5rem;               /* text-2xl */
  font-weight: 700;
  color: #1f2937;
}

.heading-card {
  font-size: 1.125rem;             /* text-lg */
  font-weight: 600;
  color: #1f2937;
}

/* Layout helpers */
.grid-responsive {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .grid-responsive {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-responsive {
    grid-template-columns: repeat(3, 1fr);
  }
}

.container-content {
  max-width: 80rem;             /* max-w-7xl: 80rem (1280px) */
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* Overlay system for hero images */
.overlay-dark {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.35);
  transition: background 0.3s;
}

.group:hover .overlay-dark {
  background-color: rgba(0, 0, 0, 0.6);
}

.overlay-text {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 600;
  transform: translate(0);
  transition: transform 0.3s;
}

.group:hover .overlay-text {
  transform: scale(1.05);
}
