/*
Theme Name:  Asona
Theme URI:   https://demo.apalodi.com/asona/
Version:     1.3

Author:      APALODI
Author URI:  https://apalodi.com

Description: Creative Blog and Magazine WordPress Theme.
*/

.quick-nav-container {
  font-family: "Inter", Arial, sans-serif;
  background: var(--bg);
  padding: 24px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-bottom: 32px;
  line-height: 1.65;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.03);
}

.quick-nav-container h3 {
  margin: 0 0 20px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #111;
  position: relative;
  display: inline-block;
}

.quick-nav-container h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 3px;
  border-radius: 2px;
  background: var(--brand);
}

.quick-nav-container ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quick-nav-container a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--brand);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.quick-nav-container a::before {
  content: "→";
  font-size: 0.8rem;
  opacity: 0.6;
  transition: transform 0.2s ease;
}

.quick-nav-container a:hover,
.quick-nav-container a:focus {
  color: var(--brand-dark);
  padding-left: 6px;
}

.quick-nav-container a:hover::before,
.quick-nav-container a:focus::before {
  transform: translateX(2px);
}

.cs2-info-wrapper {
  max-width: 800px;
  margin: 0 auto 40px;
  padding: 0 20px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  box-sizing: border-box;
}

.cs2-info-card {
  background: var(--bg-card);
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.cs2-info-card ul {
  margin: 0;
  padding-left: 20px;
  list-style-type: disc;
  list-style-position: inside;
  color: #111827;
}

.cs2-info-card ul li {
  margin-bottom: 14px;
  line-height: 1.6;
}

/* Custom styles for the blog layout to match index.php */
.blog-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 24px;
    display: flex;
    gap: 40px;
    color: #cbd5e1; /* Light text for dark theme */
}

.blog-sidebar {
    width: 300px;
    flex-shrink: 0;
    position: sticky;
    top: 100px;
    height: fit-content;
}

.blog-main {
    flex-grow: 1;
    max-width: 800px;
}

.blog-main h1 {
    color: #f8fafc;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    font-family: 'Rajdhani', sans-serif;
}

.blog-main h2 {
    color: #f8fafc;
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 15px;
    font-family: 'Rajdhani', sans-serif;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 10px;
}

.blog-main p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #9ca3af;
}

.quick-nav-container {
    background: #131a28; /* Dark theme background */
    border-color: #1f2937;
    --brand: #f59e0b; /* Accent color */
    --brand-dark: #d97706;
    --bg: #131a28;
    --radius: 12px;
    --border: #1f2937;
}

.quick-nav-container h3 {
    color: #f8fafc;
}

.cta-box {
    background: linear-gradient(145deg, rgba(20, 20, 30, 0.8), rgba(15, 15, 25, 0.9));
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.cta-box h3 {
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.cta-box p {
    color: #9ca3af;
    margin-bottom: 25px;
}

.btn-cta-highlight {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #000 !important;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s, box-shadow 0.2s;
    font-family: 'Inter', sans-serif;
}

.btn-cta-highlight:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.4);
}

@media (max-width: 991px) {
    .blog-container {
        flex-direction: column;
    }
    
    .blog-sidebar {
        width: 100%;
        position: static;
        margin-bottom: 30px;
    }
}
