/*
Theme Name: WBIC Consultancy
Theme URI: https://wbic.nl
Author: WBIC
Author URI: https://wbic.nl
Description: Professioneel WordPress thema voor WBIC - IT Consultancy voor de publieke sector. Modern, clean design met beige, wit, zwart en oranje accenten.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: wbic
Tags: one-column, custom-menu, featured-images, theme-options, translation-ready
*/

/* ================================
   CSS Variables - WBIC Brand Colors
   ================================ */
:root {
  --wbic-beige: #D6C6AA;
  --wbic-beige-pale: #E8DED0;
  --wbic-orange: #F04A1C;
  --wbic-black: #000000;
  --wbic-white: #FFFFFF;
  --wbic-gray: #6B7280;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--wbic-black);
  background-color: var(--wbic-white);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: color 0.3s ease; }
img { max-width: 100%; height: auto; }

h1, h2, h3 { font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: 1.25rem; }

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

/* ================================
   Navigation
   ================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 0.75rem 2rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  z-index: 100;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

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

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.site-logo-icon {
  width: 40px;
  height: 40px;
  background-color: var(--wbic-orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.125rem;
}

.site-logo-text span:first-child {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}

.site-logo-text span:last-child {
  font-size: 0.75rem;
  color: var(--wbic-gray);
  line-height: 1;
}

.main-navigation ul {
  display: none;
  list-style: none;
  gap: 2rem;
}

@media (min-width: 768px) {
  .main-navigation ul { display: flex; }
}

.main-navigation a {
  font-size: 0.875rem;
  color: var(--wbic-gray);
}

.main-navigation a:hover { color: var(--wbic-black); }

.nav-cta {
  background-color: var(--wbic-black);
  color: var(--wbic-white) !important;
  padding: 0.625rem 1.25rem;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 500;
}

.nav-cta:hover { background-color: #333; }

/* ================================
   Buttons
   ================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: 4px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--wbic-orange);
  color: var(--wbic-white);
}

.btn-primary:hover { opacity: 0.9; }

/* ================================
   Hero Section
   ================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 33%;
  height: 100%;
  background: linear-gradient(180deg, var(--wbic-beige) 0%, transparent 100%);
  opacity: 0.4;
}

.hero .container { position: relative; z-index: 1; }

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

@media (min-width: 768px) {
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 5rem; }
}

.hero-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-label::before {
  content: '';
  width: 2rem;
  height: 2px;
  background-color: var(--wbic-orange);
}

.hero-label span {
  font-size: 0.75rem;
  color: var(--wbic-gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero h1 { margin-bottom: 1.5rem; }

.hero-description {
  font-size: 1.125rem;
  color: var(--wbic-gray);
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.hero-buttons a:not(.btn) {
  font-weight: 500;
}

.hero-buttons a:not(.btn):hover { color: var(--wbic-gray); }

/* Hero Card */
.hero-card {
  background-color: var(--wbic-beige);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.1);
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.hero-card-icon {
  width: 56px;
  height: 56px;
  background-color: var(--wbic-orange);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
}

.hero-card-title { font-size: 1.125rem; font-weight: 600; }
.hero-card-subtitle { font-size: 0.875rem; color: rgba(0,0,0,0.6); }

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

.hero-stat {
  text-align: center;
  padding: 1rem;
  background: var(--wbic-white);
  border-radius: 12px;
}

.hero-stat-value { font-size: 1.5rem; font-weight: 700; }
.hero-stat-label {
  font-size: 0.75rem;
  color: var(--wbic-gray);
  text-transform: uppercase;
  margin-top: 0.25rem;
}

/* ================================
   Clients Marquee
   ================================ */
.clients-section {
  padding: 2rem 0;
  background-color: var(--wbic-beige-pale);
  overflow: hidden;
}

.clients-label {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(0,0,0,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.clients-marquee {
  display: flex;
  animation: marquee 35s linear infinite;
}

.clients-marquee:hover { animation-play-state: paused; }

.client-item {
  display: flex;
  align-items: center;
  padding: 0.5rem 1.5rem;
  background: var(--wbic-white);
  border-radius: 50px;
  margin: 0 0.5rem;
  white-space: nowrap;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.client-item span { font-size: 0.875rem; font-weight: 500; }

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ================================
   Services Section
   ================================ */
.services-section { background: var(--wbic-white); }

.section-header { text-align: center; margin-bottom: 3.5rem; }

.section-dot {
  width: 8px;
  height: 8px;
  background: var(--wbic-orange);
  border-radius: 50%;
  margin: 0 auto 0.75rem;
}

.section-label {
  font-size: 0.75rem;
  color: var(--wbic-gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

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

@media (min-width: 768px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

.service-card {
  position: relative;
  padding: 1.5rem;
  background: var(--wbic-white);
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.service-card:hover { box-shadow: 0 10px 40px rgba(0,0,0,0.1); }

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--wbic-orange);
}

.service-card h3 { margin-top: 0.5rem; margin-bottom: 0.75rem; }
.service-card p { font-size: 0.875rem; color: var(--wbic-gray); line-height: 1.6; }

/* ================================
   About Section
   ================================ */
.about-section { background: var(--wbic-beige); }

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

@media (min-width: 768px) {
  .about-grid { grid-template-columns: 1fr 1fr; }
}

.about-image-wrapper { position: relative; }

.about-image {
  aspect-ratio: 4/5;
  background: var(--wbic-white);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 25px 50px rgba(0,0,0,0.1);
  overflow: hidden;
}

.about-image img { width: 100%; height: 100%; object-fit: cover; }

.about-badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: var(--wbic-black);
  color: var(--wbic-white);
  padding: 1rem 1.25rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.about-badge-value { font-size: 1.5rem; font-weight: 700; }
.about-badge-label { font-size: 0.75rem; opacity: 0.7; text-transform: uppercase; }

.about-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.about-label::before {
  content: '';
  width: 1.5rem;
  height: 2px;
  background: var(--wbic-orange);
}

.about-label span {
  font-size: 0.75rem;
  color: rgba(0,0,0,0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.about-content h2 { margin-bottom: 1.25rem; }
.about-content p { color: rgba(0,0,0,0.7); margin-bottom: 1rem; line-height: 1.7; }

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 2rem;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--wbic-white);
  border-radius: 12px;
}

.about-feature::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--wbic-orange);
  border-radius: 50%;
  flex-shrink: 0;
}

.about-feature span { font-size: 0.875rem; font-weight: 500; }

/* ================================
   Blog Section
   ================================ */
.blog-section { background: var(--wbic-white); }

.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.blog-link { font-size: 0.875rem; color: var(--wbic-gray); font-weight: 500; }
.blog-link:hover { color: var(--wbic-black); }

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

@media (min-width: 768px) {
  .blog-grid { grid-template-columns: repeat(3, 1fr); }
}

.blog-card { display: block; }

.blog-card-image {
  aspect-ratio: 2/1;
  background: var(--wbic-beige-pale);
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.blog-card-image img { width: 100%; height: 100%; object-fit: cover; }

.blog-card-tag {
  font-size: 0.75rem;
  color: var(--wbic-orange);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.blog-card-title {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.blog-card:hover .blog-card-title { color: var(--wbic-gray); }

/* ================================
   CTA Section
   ================================ */
.cta-section { background: var(--wbic-white); }

.cta-box {
  max-width: 700px;
  margin: 0 auto;
  background: var(--wbic-black);
  border-radius: 1rem;
  padding: 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, var(--wbic-orange) 0%, transparent 70%);
  opacity: 0.2;
  filter: blur(40px);
}

.cta-box h2 { color: var(--wbic-white); margin-bottom: 0.75rem; position: relative; z-index: 1; }
.cta-box p { color: rgba(255,255,255,0.6); margin-bottom: 2rem; position: relative; z-index: 1; }
.cta-box .btn { position: relative; z-index: 1; }

/* ================================
   Footer
   ================================ */
.site-footer {
  padding: 2.5rem 2rem;
  background: var(--wbic-beige-pale);
}

.site-footer .container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .site-footer .container {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav { display: flex; gap: 1.5rem; }
.footer-nav a { font-size: 0.875rem; color: rgba(0,0,0,0.6); }
.footer-nav a:hover { color: var(--wbic-black); }

.footer-copyright { font-size: 0.875rem; color: rgba(0,0,0,0.5); }
