/* ============================================
   FONT DECLARATIONS
   ============================================ */

@font-face {
  font-family: 'BebasNeue';
  src: url('../fonts/BebasNeue-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'CormorantGaramond';
  src: url('../fonts/CormorantGaramond-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter_18pt-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter_24pt-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter_24pt-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Lora';
  src: url('../fonts/Lora-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Lora';
  src: url('../fonts/Lora-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'PlayfairDisplay';
  src: url('../fonts/PlayfairDisplay-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'PlayfairDisplay';
  src: url('../fonts/PlayfairDisplay-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
}

/* ============================================
   COLOR SCHEME & ROOT VARIABLES
   ============================================ */

:root {
  --primary: #1a6e2d; /* Deep green */
  --secondary: #d32f2f; /* Red */
  --accent: #ffd700; /* Soft gold */
  --text: #333333;
  --bg: #ffffff;
  --light-bg: #f5f5f5;
  --border: #ddd;
}

/* ============================================
   GLOBAL STYLES
   ============================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--secondary);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'PlayfairDisplay', serif;
  color: var(--primary);
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.navbar {
  background-color: var(--primary);
  color: white;
  padding: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.navbar a {
  color: white;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: background 0.2s ease;
}

.navbar a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
  background-color: var(--primary);
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}

/* ============================================
   BLOG LAYOUT
   ============================================ */

.blog-container {
  display: flex;
  gap: 2rem;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-main {
  flex: 3;
}

.blog-sidebar {
  flex: 1;
  background: var(--light-bg);
  padding: 1.5rem;
  border-radius: 8px;
}

.blog-post {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.blog-post h2 {
  margin-top: 0;
  color: var(--primary);
  font-family: 'PlayfairDisplay', serif;
}

.blog-post h2 a {
  color: var(--primary);
}

.blog-post h2 a:hover {
  color: var(--secondary);
}

.blog-post .post-meta {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.blog-post .post-content {
  line-height: 1.6;
}

.read-more {
  display: inline-block;
  margin-top: 1rem;
  color: var(--secondary);
  text-decoration: none;
  font-weight: bold;
}

.read-more:hover {
  text-decoration: underline;
}

/* ============================================
   FEATURED IMAGES
   ============================================ */

.featured-image {
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.featured-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.featured-image img:hover {
  transform: scale(1.02);
}

/* ============================================
   CATEGORY FILTER
   ============================================ */

.category-filter {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.category-filter h3 {
  border-bottom: 2px solid var(--secondary);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
  font-family: 'BebasNeue', sans-serif;
  text-transform: uppercase;
}

.category-filter ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.category-filter li {
  margin: 0;
}

.category-filter a {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: #eee;
  color: var(--text);
  text-decoration: none;
  border-radius: 4px;
  font-size: 0.9rem;
}

.category-filter a:hover,
.category-filter a.active {
  background: var(--secondary);
  color: white;
}

/* ============================================
   PAGINATION
   ============================================ */

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  gap: 0.5rem;
}

.pagination a,
.pagination span {
  padding: 0.5rem 1rem;
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--text);
  border-radius: 4px;
}

.pagination a:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.pagination .current {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  font-weight: bold;
}

/* ============================================
   SIDEBAR WIDGETS
   ============================================ */

.sidebar-widget {
  margin-bottom: 2rem;
}

.sidebar-widget h3 {
  border-bottom: 2px solid var(--secondary);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
  font-family: 'BebasNeue', sans-serif;
  text-transform: uppercase;
}

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

.sidebar-widget li {
  margin-bottom: 0.5rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}

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

.sidebar-widget a {
  color: var(--text);
  text-decoration: none;
}

.sidebar-widget a:hover {
  color: var(--secondary);
  text-decoration: underline;
}

.about-content {
  background: white;
  padding: 1rem;
  border-radius: 6px;
  margin-bottom: 1rem;
}

/* ============================================
   ARTICLE PAGE
   ============================================ */

.article-container {
  display: flex;
  gap: 2rem;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.single-article {
  flex: 3;
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.article-header h1 {
  color: var(--primary);
  font-family: 'PlayfairDisplay', serif;
  margin-top: 0;
}

.article-content {
  line-height: 1.6;
  margin-top: 1.5rem;
}

.article-content h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

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

.article-footer {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.article-navigation {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.article-navigation a {
  color: var(--secondary);
  text-decoration: none;
  font-weight: bold;
}

.article-navigation a:hover {
  text-decoration: underline;
}

.share-buttons {
  display: flex;
  gap: 1rem;
  font-size: 0.9rem;
}

.share-buttons a {
  color: var(--text);
  text-decoration: none;
}

.share-buttons a:hover {
  color: var(--secondary);
}

.article-sidebar {
  flex: 1;
  background: var(--light-bg);
  padding: 1.5rem;
  border-radius: 8px;
}

/* ============================================
   AUTHOR BIO
   ============================================ */

.author-bio {
  background: var(--light-bg);
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 2rem;
}

.author-bio h3 {
  border-bottom: 2px solid var(--secondary);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
  font-family: 'BebasNeue', sans-serif;
  text-transform: uppercase;
}

.author-info {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.author-avatar img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.author-avatar .avatar-placeholder {
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'BebasNeue', sans-serif;
  font-size: 1.5rem;
}

.author-details h4 {
  margin: 0 0 0.5rem 0;
  color: var(--primary);
  font-family: 'PlayfairDisplay', serif;
}

.author-details p {
  margin: 0 0 0.5rem 0;
  line-height: 1.4;
}

.author-details a {
  color: var(--secondary);
  text-decoration: none;
  font-weight: bold;
}

.author-details a:hover {
  text-decoration: underline;
}

/* ============================================
   TAG CLOUD
   ============================================ */

.tag-cloud {
  background: var(--light-bg);
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 2rem;
}

.tag-cloud h3 {
  border-bottom: 2px solid var(--secondary);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
  font-family: 'BebasNeue', sans-serif;
  text-transform: uppercase;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  padding: 0.25rem 0.5rem;
  background: #eee;
  color: var(--text);
  text-decoration: none;
  border-radius: 4px;
  font-size: 0.8rem;
  transition: all 0.2s ease;
}

.tag:hover {
  background: var(--primary);
  color: white;
}

.tag-1 { font-size: 0.8rem; }
.tag-2 { font-size: 0.9rem; }
.tag-3 { font-size: 1rem; }
.tag-4 { font-size: 1.1rem; }
.tag-5 { font-size: 1.2rem; }
.tag-6 { font-size: 1.3rem; }
.tag-7 { font-size: 1.4rem; }
.tag-8 { font-size: 1.5rem; }
.tag-9 { font-size: 1.6rem; }
.tag-10 { font-size: 1.7rem; }

/* ============================================
   SEARCH PAGE
   ============================================ */

.search-container {
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.search-container h1 {
  color: var(--primary);
  font-family: 'PlayfairDisplay', serif;
  margin-bottom: 1rem;
}

.search-query {
  background: var(--light-bg);
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.search-results {
  margin-bottom: 2rem;
}

.search-result {
  background: white;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.search-result h2 {
  margin-top: 0;
  color: var(--primary);
  font-family: 'PlayfairDisplay', serif;
}

.search-result .result-meta {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.search-result .result-summary {
  line-height: 1.6;
  margin-top: 0.5rem;
}

.no-results {
  text-align: center;
  padding: 2rem;
  background: var(--light-bg);
  border-radius: 8px;
}

.search-form {
  margin-top: 2rem;
  text-align: center;
}

.search-form input {
  width: 100%;
  max-width: 400px;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
}

.search-form button {
  margin-left: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

.search-form button:hover {
  background: #145523;
}

/* ============================================
   MODULAR SECTIONS
   ============================================ */

.modular-container {
  max-width: 1200px;
  margin: 0 auto;
}

.modular-section {
  padding: 2rem;
  margin-bottom: 2rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.modular-section h2 {
  color: var(--primary);
  font-family: 'BebasNeue', sans-serif;
  text-transform: uppercase;
  border-bottom: 2px solid var(--secondary);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

/* ============================================
   ERROR PAGE
   ============================================ */

.error-container {
  text-align: center;
  padding: 4rem 2rem;
}

.error-container h1 {
  color: var(--secondary);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.error-container .btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--primary);
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  margin-top: 1rem;
}

.error-container .btn:hover {
  background: #145523;
}

/* ============================================
   LANDING PAGE
   ============================================ */

.landing-container {
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.hero {
  background: var(--primary);
  color: white;
  padding: 3rem 2rem;
  text-align: center;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.hero h1 {
  font-family: 'PlayfairDisplay', serif;
  font-size: 2.5rem;
  margin: 0 0 1rem 0;
  color: white;
}

.hero p {
  font-size: 1.1rem;
  margin: 0 0 1.5rem 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero .btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: white;
  color: var(--primary);
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  font-family: 'BebasNeue', sans-serif;
  text-transform: uppercase;
}

.hero .btn:hover {
  background: #f5f5f5;
}

.features {
  margin-top: 2rem;
}

.features h2 {
  color: var(--primary);
  font-family: 'PlayfairDisplay', serif;
  margin-bottom: 1rem;
  text-align: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.feature-item {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.feature-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.feature-item h3 {
  margin: 0 0 0.5rem 0;
  color: var(--primary);
  font-family: 'PlayfairDisplay', serif;
}

.feature-item p {
  line-height: 1.4;
  margin: 0;
}

/* ============================================
   STANDARD PAGE
   ============================================ */

.page-container {
  display: flex;
  gap: 2rem;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.standard-page {
  flex: 3;
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.page-header h1 {
  color: var(--primary);
  font-family: 'PlayfairDisplay', serif;
  margin-top: 0;
}

.page-content {
  line-height: 1.6;
  margin-top: 1.5rem;
}

.page-sidebar {
  flex: 1;
  background: var(--light-bg);
  padding: 1.5rem;
  border-radius: 8px;
}

/* ============================================
   GALLERY PAGE
   ============================================ */

.gallery-container {
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-header {
  text-align: center;
  margin-bottom: 2rem;
}

.gallery-header h1 {
  color: var(--primary);
  font-family: 'PlayfairDisplay', serif;
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.gallery-filters a,
.gallery-filters button {
  padding: 0.5rem 1rem;
  background: var(--light-bg);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 4px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  transition: all 0.2s ease;
}

.gallery-filters a:hover,
.gallery-filters button:hover,
.gallery-filters a.active,
.gallery-filters button.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
  padding: 1rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
  transform: translateY(0);
}

.gallery-item-overlay h3 {
  color: white;
  margin: 0 0 0.5rem 0;
  font-size: 1.1rem;
}

.gallery-item-overlay p {
  margin: 0;
  font-size: 0.9rem;
}

.gallery-lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.gallery-lightbox.active {
  display: flex;
}

.gallery-lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.gallery-lightbox img {
  max-width: 100%;
  max-height: 100%;
}

.gallery-lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
}

/* ============================================
   CONTACT FORM
   ============================================ */

.contact-container {
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.contact-header {
  text-align: center;
  margin-bottom: 2rem;
}

.contact-header h1 {
  color: var(--primary);
  font-family: 'PlayfairDisplay', serif;
}

.contact-form {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--primary);
  font-weight: bold;
  font-family: 'BebasNeue', sans-serif;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
}

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

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 110, 45, 0.1);
}

.form-group button,
.form-submit {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  font-family: 'BebasNeue', sans-serif;
  text-transform: uppercase;
  transition: background 0.2s ease;
}

.form-group button:hover,
.form-submit:hover {
  background: #145523;
}

.form-success {
  background: #4caf50;
  color: white;
  padding: 1rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.form-error {
  background: var(--secondary);
  color: white;
  padding: 1rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}

/* ============================================
   ARCHIVE PAGE
   ============================================ */

.archive-container {
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.archive-header {
  text-align: center;
  margin-bottom: 2rem;
}

.archive-header h1 {
  color: var(--primary);
  font-family: 'PlayfairDisplay', serif;
}

.archive-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.archive-filters select {
  padding: 0.5rem 1rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  background: white;
}

.archive-timeline {
  position: relative;
  padding: 2rem 0;
}

.archive-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--primary);
  transform: translateX(-50%);
}

.archive-year {
  margin-bottom: 3rem;
}

.archive-year h2 {
  text-align: center;
  color: var(--primary);
  font-family: 'BebasNeue', sans-serif;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.archive-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.archive-item {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}

.archive-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.archive-item-date {
  color: var(--secondary);
  font-size: 0.9rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.archive-item h3 {
  margin: 0 0 0.5rem 0;
  color: var(--primary);
  font-family: 'PlayfairDisplay', serif;
}

.archive-item h3 a {
  color: var(--primary);
}

.archive-item h3 a:hover {
  color: var(--secondary);
}

.archive-item p {
  margin: 0;
  line-height: 1.4;
}

.archive-item-meta {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: #666;
}

.archive-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.archive-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.archive-list li:last-child {
  border-bottom: none;
}

.archive-list a {
  color: var(--primary);
    text-decoration: none;
}

.archive-list a:hover {
  color: var(--secondary);
  text-decoration: underline;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
  .blog-container,
  .article-container,
  .page-container {
    flex-direction: column;
    gap: 1rem;
  }

  .blog-main,
  .single-article,
  .standard-page {
    flex: 1;
  }

  .blog-sidebar,
  .article-sidebar,
  .page-sidebar {
    flex: 1;
  }

  .navbar ul {
    flex-direction: column;
    gap: 0;
  }

  .navbar a {
    display: block;
    padding: 0.75rem 1rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }

  .archive-timeline::before {
    left: 0;
  }

  .archive-items {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

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

  .search-form input {
    max-width: 100%;
  }

  .search-form button {
    margin-left: 0;
    margin-top: 0.5rem;
    width: 100%;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 14px;
  }

  .navbar ul {
    gap: 0;
  }

  .navbar a {
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
  }

  .blog-container,
  .article-container,
  .page-container {
    padding: 1rem;
  }

  .blog-post,
  .single-article,
  .standard-page,
  .contact-form {
    padding: 1rem;
  }

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

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

  .article-navigation {
    flex-direction: column;
  }

  .article-navigation a {
    width: 100%;
    text-align: center;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  h3 {
    font-size: 1rem;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--primary);
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: background 0.2s ease;
}

.btn:hover {
  background: #145523;
}

.btn-secondary {
  background: var(--secondary);
}

.btn-secondary:hover {
  background: #b71c1c;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.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; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }
