
/*
Theme Name: Allesoverbusiness Theme 20260503
Theme URI: undefined
Description: Professional theme for Allesoverbusiness
Version: 1.0.0
Author: PBN Automation
*/

/* Magazine Pro Theme - Editorial Styling */

/* Import Editorial Fonts */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;700;900&family=Source+Sans+Pro:wght@300;400;600;700;900&display=swap');

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

body {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', serif;
  font-weight: 900;
  line-height: 1.2;
  color: #1a1a1a;
}

/* Header */
.site-header {
  background: white;
  padding: 20px 0;
  border-bottom: 3px solid #004A99;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.site-branding {
  display: flex;
  align-items: center;
  gap: 16px;
}

.site-title {
  font-size: 32px;
  font-weight: 900;
  margin: 0;
  font-family: 'Merriweather', serif;
  color: #004A99;
  letter-spacing: -0.5px;
}

.site-title a {
  text-decoration: none;
  color: inherit;
}

.site-description {
  font-size: 13px;
  color: #666;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* Navigation */
.main-navigation {
  display: flex;
  gap: 4px;
}

.main-navigation a {
  color: #333;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.main-navigation a:hover,
.main-navigation a.current {
  color: white;
  background: #004A99;
}

/* Footer */
.site-footer {
  background: #1a1a1a;
  color: #b0b0b0;
  padding: 60px 0 30px 0;
  border-top: 4px solid #004A99;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.footer-navigation {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-navigation a {
  color: #888;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-navigation a:hover {
  color: #004A99;
}

.copyright {
  color: #666;
  font-size: 13px;
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #333;
}

/* Blog Pages */
.blog-archive {
  padding: 60px 0;
}

.archive-header {
  text-align: center;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 3px solid #f0f0f0;
}

.archive-title {
  font-size: 36px;
  font-weight: 900;
  color: #1a1a1a;
  margin: 0 0 12px 0;
}

/* Single Post */
.single-post {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.post-header {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 2px solid #f0f0f0;
}

.post-title {
  font-size: 42px;
  font-weight: 900;
  line-height: 1.2;
  margin: 0 0 16px 0;
  color: #1a1a1a;
}

.post-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 14px;
  color: #666;
}

.post-content {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
}

.post-content h2 {
  font-size: 32px;
  margin: 48px 0 24px 0;
}

.post-content h3 {
  font-size: 24px;
  margin: 36px 0 18px 0;
}

.post-content p {
  margin-bottom: 24px;
}

.post-content img {
  border-radius: 8px;
  margin: 32px 0;
  width: 100%;
  height: auto;
}

.post-content blockquote {
  border-left: 4px solid #004A99;
  padding-left: 24px;
  margin: 32px 0;
  font-size: 20px;
  font-style: italic;
  color: #555;
}

/* Comments */
.comments-area {
  max-width: 800px;
  margin: 60px auto 0;
  padding: 40px;
  background: #f8f9fa;
  border-radius: 8px;
}

/* Widgets */
.widget ul {
  list-style: none;
  padding: 0;
}

.widget li {
  padding: 8px 0;
  border-bottom: 1px solid #e5e5e5;
}

.widget a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.widget a:hover {
  color: #004A99;
}

/* Responsive */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 16px 0;
  }

  .site-title {
    font-size: 24px;
  }

  .main-navigation {
    flex-direction: column;
    gap: 4px;
  }

  .post-title {
    font-size: 32px;
  }

  .post-content {
    font-size: 16px;
  }

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

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Selection */
::selection {
  background: #004A99;
  color: white;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f0f0f0;
}

::-webkit-scrollbar-thumb {
  background: #004A99;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #A0C1E6;
}
