/*
Theme Name: Norvault Security Theme
Theme URI: https://norvault.security
Author: Norvault Security
Author URI: https://norvault.security
Description: Een professionele WordPress thema voor Norvault Security - Virtuele CISO diensten
Version: 1.0.0
License: GPL v2 or later
Text Domain: norvault
Tags: security, business, responsive, custom-menu, featured-images
*/

/* Bootstrap wordt via CDN geladen, dus alleen custom styles hier */

:root {
  --primary-color: #0d6efd;
  --secondary-color: #6c757d;
  --success-color: #198754;
  --info-color: #0dcaf0;
  --warning-color: #ffc107;
  --danger-color: #dc3545;
  --light-color: #f8f9fa;
  --dark-color: #212529;
}

body {
  font-family: 'Segoe UI', sans-serif;
  transition: background-color 0.3s, color 0.3s;
}

/* Hero Section */
.hero {
  background-color: var(--primary-color);
  color: white;
  padding: 100px 0 0 0;
  text-align: center;
  position: relative;
}

.hero svg {
  display: block;
  width: 100%;
  margin-top: -5px;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
}

/* Toggle Button */
.toggle-btn {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 1100;
  background: #fff;
  border: none;
  padding: 10px;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* Cards and Hover Effects */
.hover-shadow {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-shadow:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Section Titles */
.section-title {
  margin-top: 60px;
  margin-bottom: 30px;
  text-align: center;
  color: var(--primary-color);
}

/* Pricing Cards */
.pricing-card {
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  height: 100%;
  transition: transform 0.3s ease;
}

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

.pricing-card ul {
  list-style: none;
  padding-left: 0;
  text-align: left;
}

.pricing-card li {
  margin-bottom: 0.75rem;
}

.pricing-card li::before {
  content: "✅ ";
  color: green;
  margin-right: 8px;
}

.pricing-card li.unavailable::before {
  content: "❌ ";
  color: gray;
}

/* Counter Animation */
.counter {
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary-color);
}

/* Dark Mode */
.dark-mode {
  background-color: #121212;
  color: white;
}

.dark-mode .bg-light {
  background-color: #1f1f1f !important;
}

.dark-mode .text-primary {
  color: #90caf9 !important;
}

.dark-mode .navbar-light {
  background-color: #1f1f1f !important;
}

.dark-mode .navbar-light .navbar-brand,
.dark-mode .navbar-light .nav-link {
  color: #ffffff !important;
}

.dark-mode .card {
  background-color: #1f1f1f;
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    padding: 50px 0 0 0;
  }
  
  .display-4 {
    font-size: 2rem;
  }
  
  .section-title {
    margin-top: 40px;
    font-size: 1.5rem;
  }
}

/* WordPress Core Styles */
.alignleft {
  float: left;
  margin-right: 1.5em;
}

.alignright {
  float: right;
  margin-left: 1.5em;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

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

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

/* Footer */
footer {
  background-color: var(--dark-color);
  color: white;
  padding: 40px 0;
  text-align: center;
  margin-top: 60px;
}

footer p {
  margin: 0;
}

/* Form Styles */
.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: #0b5ed7;
  border-color: #0a58ca;
}

/* Blog Styles */
.blog-post {
  margin-bottom: 3rem;
}

.blog-post-title {
  margin-bottom: 0.25rem;
  font-size: 2.5rem;
}

.blog-post-meta {
  margin-bottom: 1.25rem;
  color: #6c757d;
}

/* Pagination */
.pagination {
  justify-content: center;
  margin-top: 3rem;
}

/* Comments */
.comment-list {
  list-style: none;
  padding: 0;
}

.comment-body {
  margin-bottom: 2rem;
  padding: 1rem;
  background-color: #f8f9fa;
  border-radius: 0.25rem;
}

.comment-author {
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.comment-meta {
  font-size: 0.875rem;
  color: #6c757d;
  margin-bottom: 1rem;
}

/* Widgets */
.widget {
  margin-bottom: 2rem;
}

.widget-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}