/*
Theme Name: Vandenberg Advocatuur Theme 20260507
Theme URI: https://example.com/vandenberg-advocatuur-theme-20260507
Author: PBN Automation
Author URI: https://example.com
Description: Professional theme for Vandenberg Advocatuur
Version: 1.0.1778135667
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: vandenberg-advocatuur-theme-20260507
Tags: blog, custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

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

:root {
  --primary-color: #003366;
  --secondary-color: #006699;
  --accent-color: #FFCC00;
  --bg-color: #ffffff;
  --text-color: #333333;
  --link-color: #003366;
  --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --heading-font: 'Georgia', serif;
  --max-width: 1200px;
  --spacing-small: 1rem;
  --spacing-medium: 2rem;
  --spacing-large: 4rem;
}

body {
  font-family: var(--font-family);
  color: var(--text-color);
  background-color: var(--bg-color);
  line-height: 1.6;
  font-size: 18px;
}

.site-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-medium);
}

/* Header Styles */
.site-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  padding: 1.5rem 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-branding {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-logo img {
  max-height: 80px;
  width: auto;
  display: block;
  background: white;
  padding: 0.75rem 1.25rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.custom-logo-link {
  display: block;
  line-height: 0;
}

.site-branding.has-logo .site-identity {
  display: none;
}

.site-identity {
  display: flex;
  flex-direction: column;
}

.site-title {
  font-family: var(--heading-font);
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

.site-title a {
  color: white;
  text-decoration: none;
  transition: opacity 0.3s;
}

.site-title a:hover {
  opacity: 0.85;
}

.site-description {
  font-size: 0.85rem;
  opacity: 0.9;
  margin-top: 0.25rem;
  line-height: 1.3;
}

/* Navigation */
.main-navigation {
  display: flex;
  gap: 2rem;
}

.main-navigation ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.main-navigation li {
  position: relative;
}

.main-navigation a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  transition: all 0.3s;
  display: block;
}

.main-navigation a:hover,
.main-navigation .current-menu-item a {
  background: rgba(255,255,255,0.15);
  transform: translateY(-1px);
}

/* Hamburger menu button */
.menu-toggle {
  display: none;
  background: rgba(255,255,255,0.2);
  border: none;
  color: white;
  padding: 0.75rem;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1.5rem;
  line-height: 1;
}

.menu-toggle:hover {
  background: rgba(255,255,255,0.3);
}

.menu-toggle:focus {
  outline: 2px solid rgba(255,255,255,0.5);
  outline-offset: 2px;
}

/* Modern Hero Section */
.hero-content {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.hero-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content-wrapper {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  color: white;
}

.hero-content .hero-title {
  font-family: var(--heading-font);
  font-size: 3.5rem;
  font-weight: 800;
  margin: 0 0 1.5rem;
  line-height: 1.2;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.hero-intro {
  font-size: 1.25rem;
  line-height: 1.7;
  opacity: 0.95;
  max-width: 800px;
  margin: 0 auto;
}

.intro-section {
  padding: 5rem 0;
  background: white;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.intro-text .section-heading {
  font-family: var(--heading-font);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.section-content p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #444;
}

.intro-visual .visual-placeholder {
  width: 100%;
}

/* Topic Sections */
.topic-section {
  padding: 5rem 0;
}

.topic-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.topic-reverse .topic-grid {
  direction: rtl;
}

.topic-reverse .topic-grid > * {
  direction: ltr;
}

.topic-heading {
  font-family: var(--heading-font);
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.topic-content p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 2rem;
}

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

.topic-keypoints li {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
}

.keypoint-bullet {
  font-size: 1.5rem;
  margin-right: 0.75rem;
  line-height: 1;
  flex-shrink: 0;
}

.topic-visual .visual-placeholder {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.closing-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 30% 40%, rgba(255,255,255,0.1) 0%, transparent 50%);
  pointer-events: none;
}

.closing-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  color: white;
}

.closing-heading {
  font-family: var(--heading-font);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.closing-text {
  font-size: 1.25rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  opacity: 0.95;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent-color);
  color: white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-primary:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.btn-outline {
  background: transparent;
  color: white;
  border-color: white;
}

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

.btn-large {
  padding: 1.125rem 3rem;
  font-size: 1.125rem;
}

/* Stats Section */
.stats-showcase {
  padding: 4rem 0;
  background: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  text-align: center;
}

.stat-box {
  padding: 2rem;
}

.stat-number {
  font-family: var(--heading-font);
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: #666;
  line-height: 1.4;
}

/* Features Section */
.features-modern {
  padding: 5rem 0;
  background: #f8f9fa;
}

.section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 5rem;
}

.section-heading {
  font-family: var(--heading-font);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-heading.centered {
  text-align: center;
}

.section-description {
  font-size: 1.125rem;
  color: #666;
  line-height: 1.6;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}

.feature-row.feature-reverse {
  direction: rtl;
}

.feature-row.feature-reverse > * {
  direction: ltr;
}

.feature-text h3.feature-title {
  font-family: var(--heading-font);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 1rem;
}

.feature-description {
  font-size: 1.125rem;
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.feature-checklist {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.feature-checklist li {
  padding: 0.75rem 0;
  font-size: 1rem;
  color: #333;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.checkmark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--accent-color);
  color: white;
  border-radius: 50%;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.feature-actions {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 2rem;
}

.link-arrow {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.link-arrow:hover {
  color: var(--accent-color);
  transform: translateX(4px);
}

.feature-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.visual-card {
  background: white;
  border-radius: 12px;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 400px;
}

.visual-placeholder {
  font-size: 8rem;
  text-align: center;
}

/* Testimonials Section */
.testimonials-modern {
  padding: 5rem 0;
  background: white;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: white;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s;
}

.testimonial-card:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

.testimonial-rating {
  color: #fbbf24;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.testimonial-quote {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e5e5e5;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.author-details {
  flex: 1;
}

.author-name {
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 0.25rem;
}

.author-role {
  font-size: 0.875rem;
  color: #666;
}

/* Blog Preview Section */
.blog-preview {
  padding: 5rem 0;
  background: #f8f9fa;
}

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

/* CTA Section */
.cta-final {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  text-align: center;
  color: white;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--heading-font);
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.cta-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
}

/* Old Hero Section - Keep for backward compatibility */
.hero-section {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  overflow: hidden;
}

.hero-section.has-background-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-section.has-background-image::before {
  background: rgba(0, 0, 0, 0.3);
  background-image: none;
}

.hero-section.has-background-image .hero-overlay {
  display: none;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.1);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: var(--spacing-large) var(--spacing-medium);
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  margin: 0;
  opacity: 0.95;
  line-height: 1.4;
  text-shadow: 0 1px 10px rgba(0,0,0,0.2);
}

/* Homepage Specific Styles */
.home-content {
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  padding: var(--spacing-large) 0;
}

.featured-section {
  margin-bottom: var(--spacing-large);
}

.section-title {
  font-family: var(--heading-font);
  font-size: 2.5rem;
  color: var(--primary-color);
  text-align: center;
  margin: 0 0 var(--spacing-large);
  font-weight: 700;
}

/* Posts Grid */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: var(--spacing-medium);
}

.home-post-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.home-post-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.home-post-thumbnail {
  position: relative;
  overflow: hidden;
  height: 240px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
}

.home-post-thumbnail a {
  display: block;
  height: 100%;
}

.home-post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.home-post-card:hover .home-post-thumbnail img {
  transform: scale(1.1);
}

.home-post-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.home-post-category {
  margin-bottom: 0.75rem;
}

.home-post-category a {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  color: white;
  text-decoration: none;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s;
}

.home-post-category a:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.home-post-title {
  font-family: var(--heading-font);
  font-size: 1.5rem;
  margin: 0 0 1rem;
  line-height: 1.3;
}

.home-post-title a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s;
}

.home-post-title a:hover {
  color: var(--accent-color);
}

.home-post-meta {
  font-size: 0.875rem;
  color: #6c757d;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.home-post-excerpt {
  color: #495057;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.read-more-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  transition: gap 0.3s;
  margin-top: auto;
}

.read-more-link:hover {
  gap: 0.75rem;
}

.view-all-posts {
  text-align: center;
  margin-top: var(--spacing-large);
}

.no-posts {
  text-align: center;
  padding: var(--spacing-large);
  font-size: 1.2rem;
  color: #6c757d;
}

/* Content Area */
.site-content {
  padding: var(--spacing-large) 0;
  min-height: 60vh;
}

.content-area {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: var(--spacing-large);
}

@media (max-width: 768px) {
  .content-area {
    grid-template-columns: 1fr;
  }
}

/* Posts & Articles */
article {
  background: white;
  padding: var(--spacing-medium);
  margin-bottom: var(--spacing-medium);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.entry-header {
  margin-bottom: var(--spacing-medium);
}

.entry-title {
  font-family: var(--heading-font);
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.entry-title a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s;
}

.entry-title a:hover {
  color: var(--accent-color);
}

.entry-meta {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: var(--spacing-small);
}

.entry-meta a {
  color: var(--link-color);
  text-decoration: none;
}

.entry-content {
  font-size: 1.1rem;
  line-height: 1.8;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
  font-family: var(--heading-font);
  color: var(--primary-color);
  margin-top: var(--spacing-medium);
  margin-bottom: var(--spacing-small);
}

.entry-content h2 { font-size: 2rem; }
.entry-content h3 { font-size: 1.5rem; }
.entry-content h4 { font-size: 1.25rem; }

.entry-content p {
  margin-bottom: var(--spacing-small);
}

.entry-content a {
  color: var(--link-color);
  text-decoration: underline;
}

.entry-content ul,
.entry-content ol {
  margin-left: 2rem;
  margin-bottom: var(--spacing-small);
}

.entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin: var(--spacing-medium) 0;
}

/* Sidebar */
.widget-area {
  font-size: 0.95rem;
}

.widget {
  background: white;
  padding: var(--spacing-medium);
  margin-bottom: var(--spacing-medium);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.widget-title {
  font-family: var(--heading-font);
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: var(--spacing-small);
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent-color);
}

.widget ul {
  list-style: none;
}

.widget li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}

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

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

.widget a:hover {
  color: var(--accent-color);
}

/* Footer */
.site-footer {
  background-color: var(--secondary-color);
  color: white;
  padding: var(--spacing-large) 0 var(--spacing-medium);
  margin-top: var(--spacing-large);
}

.footer-widgets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-medium);
  margin-bottom: var(--spacing-medium);
}

.site-info {
  text-align: center;
  padding-top: var(--spacing-medium);
  border-top: 1px solid rgba(255,255,255,0.2);
  font-size: 0.9rem;
  opacity: 0.8;
}

.site-info p {
  margin-bottom: 0.75rem;
}

.site-info a {
  color: white;
  text-decoration: underline;
}

.footer-menu {
  margin-top: 0.75rem;
}

.footer-menu ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.footer-menu a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-menu a:hover {
  color: white;
  text-decoration: underline;
}

/* Comments */
.comments-area {
  margin-top: var(--spacing-large);
  padding-top: var(--spacing-large);
  border-top: 2px solid #eee;
}

.comment-list {
  list-style: none;
}

.comment {
  margin-bottom: var(--spacing-medium);
  padding: var(--spacing-medium);
  background: #f9f9f9;
  border-radius: 8px;
}

.comment-author {
  font-weight: bold;
  color: var(--primary-color);
}

.comment-metadata {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 0.5rem;
}

/* Buttons */
.button,
button,
input[type="submit"],
input[type="button"] {
  background-color: var(--accent-color);
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s;
}

.button:hover,
button:hover,
input[type="submit"]:hover {
  background-color: var(--primary-color);
}

/* Pagination */
.pagination {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: var(--spacing-large);
}

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

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

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

/* Responsive */
@media (max-width: 1024px) {
  .posts-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
  }

  .hero-content .hero-title {
    font-size: 2.75rem;
  }

  .hero-intro {
    font-size: 1.125rem;
  }

  .intro-grid,
  .topic-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .topic-reverse .topic-grid {
    direction: ltr;
  }

  .feature-row {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .feature-row.feature-reverse {
    direction: ltr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (min-width: 769px) {
  /* Desktop: always show menu, hide hamburger */
  .menu-toggle {
    display: none !important;
  }

  .main-navigation {
    display: flex !important;
    position: static !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 16px;
  }

  .header-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .site-branding {
    flex-direction: row;
    text-align: left;
    gap: 1rem;
  }

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

  /* Mobile: show hamburger menu button */
  .menu-toggle {
    display: block;
  }

  /* Mobile: hide navigation by default */
  .main-navigation {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--primary-color);
    padding: 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    z-index: 1000;
  }

  .main-navigation.toggled {
    display: block;
  }

  .main-navigation ul {
    flex-direction: column;
    gap: 0.5rem;
  }

  .main-navigation a {
    padding: 0.75rem 1rem;
    display: block;
    text-align: left;
  }

  .hero-content {
    padding: 3rem 0;
  }

  .hero-content .hero-title {
    font-size: 2rem;
  }

  .hero-intro {
    font-size: 1rem;
  }

  .section-heading,
  .topic-heading,
  .closing-heading {
    font-size: 1.75rem;
  }

  .intro-section,
  .topic-section,
  .closing-section,
  .blog-preview {
    padding: 3rem 0;
  }

  .cta-title {
    font-size: 2rem;
  }

  .hero-section {
    min-height: 350px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

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

  .posts-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .home-post-card {
    max-width: 500px;
    margin: 0 auto;
  }

  .entry-title {
    font-size: 1.75rem;
  }

  .site-container {
    padding: 0 var(--spacing-small);
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.75rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .site-logo img {
    max-height: 60px;
    padding: 0.5rem 1rem;
  }

  .main-navigation ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
  }

  .main-navigation a {
    font-size: 0.85rem;
    padding: 0.4rem 0.75rem;
  }

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

  .home-post-title {
    font-size: 1.25rem;
  }

  .home-post-thumbnail {
    height: 200px;
  }
}

/* Cookie Consent Banner - Minimale enkele regel */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px);
  color: white;
  padding: 0.5rem 1rem;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
  z-index: 99999;
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 1px solid var(--accent-color);
}

.cookie-consent-banner.show {
  transform: translateY(0);
  opacity: 1;
}

.cookie-consent-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: nowrap;
}

.cookie-consent-text {
  flex: 0 1 auto;
  white-space: nowrap;
}

.cookie-consent-text p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.2;
  display: inline;
}

.cookie-consent-text p:first-child {
  color: white;
  opacity: 0.95;
}

.cookie-consent-text p:last-child {
  display: none;
}

.cookie-consent-actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 0.35rem 0.875rem;
  border: none;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  box-shadow: none;
}

.cookie-btn-accept {
  background: var(--accent-color);
  color: white;
}

.cookie-btn-accept:hover {
  opacity: 0.9;
}

.cookie-btn-decline {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-decline:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

@media (max-width: 768px) {
  .cookie-consent-content {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.5rem;
  }

  .cookie-consent-text {
    white-space: normal;
    flex: 1 1 100%;
    text-align: center;
  }

  .cookie-consent-actions {
    flex: 1 1 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .cookie-consent-banner {
    padding: 0.5rem 0.75rem;
  }

  .cookie-consent-text p {
    font-size: 0.75rem;
  }

  .cookie-btn {
    padding: 0.3rem 0.75rem;
    font-size: 0.7rem;
  }
}
/* Modern Business Theme - Additional Styles */

:root {
  --primary-color: #003366;
  --dark-bg: #006699;
  --light-bg: #f8fafc;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
  color: #334155;
  line-height: 1.6;
}

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

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

/* Button hover animations */
a, button {
  transition: all 0.2s ease;
}

/* Image styles */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .site-footer [style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }

  .site-footer [style*="flex"] {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
}
