/* =============================================
   Aktuelnomag.site — Glavni stylesheet
   Bosanska kuhinja + Zdravlje
   ============================================= */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&family=Playfair+Display:wght@400;600;700&display=swap');

/* --- CSS Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', Arial, sans-serif;
  background-color: #FAFAFA;
  color: #333333;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #2E7D32;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #F57C00;
}

ul, ol {
  padding-left: 1.5rem;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.3;
  color: #1a1a1a;
}

p {
  margin-bottom: 1rem;
}

/* --- Utility Classes --- */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #2E7D32;
}

.section-subtitle {
  font-size: 1rem;
  color: #666;
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  font-family: 'Lato', sans-serif;
}

.btn-primary {
  background-color: #2E7D32;
  color: #fff;
}

.btn-primary:hover {
  background-color: #1B5E20;
  color: #fff;
}

.btn-secondary {
  background-color: #F57C00;
  color: #fff;
}

.btn-secondary:hover {
  background-color: #E65100;
  color: #fff;
}

.btn-outline {
  background-color: transparent;
  color: #2E7D32;
  border: 2px solid #2E7D32;
}

.btn-outline:hover {
  background-color: #2E7D32;
  color: #fff;
}

.text-center { text-align: center; }
.text-green { color: #2E7D32; }
.text-orange { color: #F57C00; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* --- Header & Navigation --- */
.site-header {
  background-color: #fff;
  border-bottom: 3px solid #2E7D32;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  max-width: 1140px;
  margin: 0 auto;
}

.site-logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #2E7D32;
  letter-spacing: -0.5px;
}

.logo-tagline {
  font-size: 0.72rem;
  color: #F57C00;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.main-nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 8px;
  align-items: center;
}

.main-nav ul li a {
  font-weight: 700;
  font-size: 0.9rem;
  color: #333;
  padding: 8px 14px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
  background-color: #2E7D32;
  color: #fff;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background-color: #2E7D32;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile nav toggle */
.main-nav.open ul {
  display: flex;
}

/* --- Hero Section --- */
.hero {
  background: linear-gradient(135deg, #2E7D32 0%, #1B5E20 60%, #33691E 100%);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 2.6rem;
  color: #fff;
  margin-bottom: 1rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.9);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Article Card Grid --- */
.articles-section {
  padding: 60px 0;
}

.articles-section .section-header {
  margin-bottom: 2.5rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.card-image {
  height: 200px;
  background-color: #C8E6C9;
  position: relative;
  overflow: hidden;
}

.card-image.health-bg { background-color: #E1F5FE; }
.card-image.recipe-bg { background-color: #FFF8E1; }

.card-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-category {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.cat-recepti {
  background-color: #FFF8E1;
  color: #F57C00;
}

.cat-zdravlje {
  background-color: #E8F5E9;
  color: #2E7D32;
}

.card-title {
  font-size: 1.15rem;
  font-family: 'Playfair Display', serif;
  margin-bottom: 10px;
  line-height: 1.4;
}

.card-title a {
  color: #1a1a1a;
}

.card-title a:hover {
  color: #2E7D32;
}

.card-excerpt {
  font-size: 0.9rem;
  color: #666;
  flex: 1;
  margin-bottom: 16px;
}

.card-meta {
  font-size: 0.8rem;
  color: #888;
  display: flex;
  align-items: center;
  gap: 8px;
}

.card-meta .author {
  font-weight: 700;
  color: #555;
}

/* --- About Section (Homepage) --- */
.about-section {
  background: #fff;
  padding: 60px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.about-inner {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 48px;
  align-items: center;
}

.about-photo {
  border-radius: 50%;
  width: 220px;
  height: 220px;
  object-fit: cover;
  border: 5px solid #2E7D32;
  margin: 0 auto;
  display: block;
}

.about-photo-placeholder {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: #C8E6C9;
  border: 5px solid #2E7D32;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  margin: 0 auto;
}

.about-text h2 {
  font-size: 1.8rem;
  color: #2E7D32;
  margin-bottom: 1rem;
}

.about-text p {
  color: #555;
  font-size: 1rem;
  line-height: 1.8;
}

/* --- Newsletter Section --- */
.newsletter-section {
  background: linear-gradient(135deg, #F57C00, #E65100);
  padding: 60px 20px;
  text-align: center;
  color: #fff;
}

.newsletter-section h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.newsletter-section p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  max-width: 480px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 250px;
  padding: 14px 18px;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-family: 'Lato', sans-serif;
  outline: none;
}

.newsletter-form button {
  padding: 14px 28px;
  background: #1B5E20;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  font-family: 'Lato', sans-serif;
}

.newsletter-form button:hover {
  background: #2E7D32;
}

/* --- Footer --- */
.site-footer {
  background: #1a1a1a;
  color: #ccc;
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-about .footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #2E7D32;
  margin-bottom: 12px;
  display: block;
}

.footer-about p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: #aaa;
}

.footer-col h4 {
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #aaa;
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: #F57C00;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: #777;
  margin: 0;
}

.footer-bottom a {
  color: #999;
  font-size: 0.82rem;
}

.footer-bottom a:hover {
  color: #F57C00;
}

/* --- Breadcrumb --- */
.breadcrumb {
  padding: 12px 0;
  margin-bottom: 16px;
}

.breadcrumb ol {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
  font-size: 0.82rem;
  color: #888;
}

.breadcrumb ol li + li::before {
  content: '›';
  margin-right: 4px;
  color: #bbb;
}

.breadcrumb ol li a {
  color: #666;
}

.breadcrumb ol li a:hover {
  color: #2E7D32;
}

/* --- Article Layout --- */
.article-wrapper {
  padding: 40px 0 60px;
}

.article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}

/* Article Header */
.article-header {
  margin-bottom: 2rem;
}

.article-header .category-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.article-header h1 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.article-meta {
  font-size: 0.85rem;
  color: #888;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.article-meta .author {
  font-weight: 700;
  color: #555;
}

/* Article Image Placeholder */
.article-image-placeholder {
  width: 100%;
  height: 360px;
  background: linear-gradient(135deg, #C8E6C9, #A5D6A7);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  margin-bottom: 2rem;
}

.article-image-placeholder.health {
  background: linear-gradient(135deg, #B3E5FC, #81D4FA);
}

/* Article Content */
.article-content {
  font-size: 1.02rem;
  line-height: 1.85;
  color: #333;
}

.article-content h2 {
  font-size: 1.65rem;
  color: #2E7D32;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 8px;
  border-bottom: 2px solid #E8F5E9;
}

.article-content h3 {
  font-size: 1.25rem;
  color: #333;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.article-content ul, .article-content ol {
  margin-bottom: 1.5rem;
}

.article-content li {
  margin-bottom: 6px;
}

.article-content strong {
  color: #1a1a1a;
}

/* Ingredients Box */
.ingredients-box {
  background: #F9FBE7;
  border-left: 4px solid #8BC34A;
  border-radius: 0 8px 8px 0;
  padding: 24px 28px;
  margin: 2rem 0;
}

.ingredients-box h3 {
  color: #558B2F;
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.ingredients-box ul {
  margin: 0;
}

.ingredients-box ul li {
  padding: 5px 0;
  border-bottom: 1px solid #DCEDC8;
}

.ingredients-box ul li:last-child {
  border-bottom: none;
}

/* Steps */
.steps-list {
  counter-reset: step-counter;
  list-style: none;
  padding: 0;
}

.steps-list li {
  counter-increment: step-counter;
  padding: 12px 16px 12px 52px;
  position: relative;
  margin-bottom: 12px;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.steps-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 14px;
  top: 12px;
  background: #2E7D32;
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
}

/* Tips Box */
.tips-box {
  background: #FFF8E1;
  border-left: 4px solid #F57C00;
  border-radius: 0 8px 8px 0;
  padding: 24px 28px;
  margin: 2rem 0;
}

.tips-box h3 {
  color: #E65100;
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.tips-box ul {
  margin: 0;
}

.tips-box ul li {
  padding: 4px 0;
}

/* Medical Disclaimer Box */
.disclaimer-box {
  background: #FFF3E0;
  border: 2px solid #F57C00;
  border-radius: 8px;
  padding: 20px 24px;
  margin: 2rem 0;
}

.disclaimer-box .disclaimer-title {
  font-weight: 700;
  color: #E65100;
  font-size: 1rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.disclaimer-box p {
  font-size: 0.9rem;
  color: #555;
  margin: 0;
}

/* Info Box / Highlighted callout */
.info-box {
  background: #E8F5E9;
  border-left: 4px solid #2E7D32;
  border-radius: 0 8px 8px 0;
  padding: 20px 24px;
  margin: 2rem 0;
}

.info-box h3 {
  color: #1B5E20;
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.info-box p { margin-bottom: 0; }

/* --- Author Box --- */
.author-box {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 24px 28px;
  margin-top: 3rem;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.author-box-photo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #2E7D32;
  flex-shrink: 0;
}

.author-box-photo-placeholder {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #C8E6C9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  flex-shrink: 0;
  border: 3px solid #2E7D32;
}

.author-box-info h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: #1a1a1a;
}

.author-box-info .author-role {
  font-size: 0.82rem;
  color: #F57C00;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.author-box-info p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Alias classes used in articles */
.author-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #2E7D32;
  flex-shrink: 0;
}

.author-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: #1a1a1a;
}

.author-info p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Tip box */
.tip-box {
  background: #E8F5E9;
  border-left: 4px solid #2E7D32;
  border-radius: 0 8px 8px 0;
  padding: 20px 24px;
  margin: 2rem 0;
}

.tip-box h3 {
  font-size: 1rem;
  color: #2E7D32;
  margin-bottom: 12px;
}

.tip-box ul {
  margin: 0;
  padding-left: 1.4rem;
}

.tip-box li {
  margin-bottom: 6px;
  font-size: 0.95rem;
  color: #444;
}

.tip-box p {
  margin: 0;
  font-size: 0.95rem;
  color: #444;
}

/* --- Related Articles --- */
.related-articles {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid #E8F5E9;
}

.related-articles h3 {
  font-size: 1.4rem;
  color: #2E7D32;
  margin-bottom: 1.5rem;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.related-card {
  background: #fff;
  border-radius: 6px;
  padding: 16px;
  border: 1px solid #e0e0e0;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.related-card:hover {
  border-color: #2E7D32;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.related-card .rel-cat {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #F57C00;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.related-card h4 {
  font-size: 0.95rem;
  font-family: 'Playfair Display', serif;
  line-height: 1.35;
}

.related-card h4 a {
  color: #1a1a1a;
}

.related-card h4 a:hover {
  color: #2E7D32;
}

/* --- Sidebar --- */
.sidebar {
  position: sticky;
  top: 90px;
}

.sidebar-widget {
  background: #fff;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 28px;
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
  border: 1px solid #eeeeee;
}

.sidebar-widget h3 {
  font-size: 1.05rem;
  color: #2E7D32;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid #E8F5E9;
}

.sidebar-widget ul {
  list-style: none;
  padding: 0;
}

.sidebar-widget ul li {
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.9rem;
}

.sidebar-widget ul li:last-child {
  border-bottom: none;
}

.sidebar-widget ul li a {
  color: #444;
}

.sidebar-widget ul li a:hover {
  color: #2E7D32;
}

.sidebar-about-text {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.65;
}

/* --- Category Page --- */
.category-header {
  background: linear-gradient(135deg, #2E7D32, #1B5E20);
  color: #fff;
  padding: 50px 20px;
  text-align: center;
  margin-bottom: 48px;
}

.category-header h1 {
  color: #fff;
  font-size: 2.4rem;
  margin-bottom: 0.5rem;
}

.category-header p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
}

.category-header.zdravlje-header {
  background: linear-gradient(135deg, #0288D1, #01579B);
}

/* --- Contact Form --- */
.contact-section {
  padding: 60px 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  font-size: 1.8rem;
  color: #2E7D32;
  margin-bottom: 1rem;
}

.contact-info p {
  color: #666;
  line-height: 1.8;
}

.contact-info .contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  font-size: 0.95rem;
}

.contact-info .contact-detail strong {
  color: #333;
}

.contact-form h2 {
  font-size: 1.6rem;
  color: #2E7D32;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: #444;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 4px;
  font-size: 1rem;
  font-family: 'Lato', sans-serif;
  color: #333;
  background: #fff;
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #2E7D32;
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

/* --- Page Header (for static pages) --- */
.page-header {
  background: #F1F8E9;
  border-bottom: 3px solid #C5E1A5;
  padding: 40px 20px;
  margin-bottom: 48px;
}

.page-header h1 {
  font-size: 2rem;
  color: #2E7D32;
  margin-bottom: 0.5rem;
}

.page-header p {
  color: #666;
  font-size: 1rem;
  margin: 0;
}

/* --- Static Page Content --- */
.static-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 20px 60px;
}

.static-content h2 {
  font-size: 1.5rem;
  color: #2E7D32;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.static-content h3 {
  font-size: 1.15rem;
  color: #333;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.static-content p, .static-content li {
  color: #555;
  line-height: 1.8;
}

.static-content ul, .static-content ol {
  margin-bottom: 1rem;
}

.static-content li {
  margin-bottom: 4px;
}

/* --- About Page --- */
.about-page-hero {
  background: linear-gradient(135deg, #F1F8E9, #DCEDC8);
  padding: 60px 20px;
}

.about-page-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: start;
}

.about-page-photo-wrap {
  text-align: center;
}

.about-page-photo {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid #2E7D32;
  margin: 0 auto 16px;
  display: block;
}

.about-page-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #2E7D32;
  margin-bottom: 4px;
}

.about-page-title {
  font-size: 0.85rem;
  color: #F57C00;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-content {
  max-width: 1000px;
  margin: 60px auto 0;
  padding: 0 20px 60px;
}

.about-content h2 {
  font-size: 1.6rem;
  color: #2E7D32;
  margin-bottom: 1rem;
}

.about-content p {
  color: #555;
  line-height: 1.85;
  font-size: 1.02rem;
}

/* Stats / Social proof */
.stats-row {
  display: flex;
  gap: 32px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  flex: 1;
  min-width: 120px;
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  border-top: 4px solid #2E7D32;
}

.stat-item .stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: #2E7D32;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-item .stat-label {
  font-size: 0.82rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* --- Responsive --- */

/* Tablet */
@media (max-width: 960px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-about {
    grid-column: 1 / -1;
  }

  .about-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .about-page-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-page-photo {
    margin: 0 auto 16px;
  }

  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 640px) {
  .hamburger {
    display: flex;
  }

  .main-nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #eee;
    padding: 12px 20px 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 999;
  }

  .main-nav.open ul {
    display: flex;
  }

  .main-nav ul li a {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    border-radius: 0;
  }

  .site-header {
    position: relative;
  }

  .header-inner {
    position: relative;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .related-grid {
    grid-template-columns: 1fr;
  }

  .author-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .article-header h1 {
    font-size: 1.6rem;
  }

  .stats-row {
    gap: 16px;
  }

  .section-title {
    font-size: 1.5rem;
  }
}

/* --- Hamburger JS toggle helper --- */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* --- Print styles --- */
@media print {
  .site-header, .site-footer, .sidebar, .newsletter-section {
    display: none;
  }
  body { background: #fff; }
}
