/*
Theme Name: OnlineJa Theme
Theme URI: https://onlineja.nl
Author: Jochem
Author URI: https://onlineja.nl
Description: Een fris, professioneel WordPress thema voor Online? JA!
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: onlineja
Tags: custom-logo, custom-menu, one-column, responsive-layout
*/

/* =========================
   Globale typografie
   ========================= */
html, body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: #1f2d3d;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  margin-top: 0;
}

p {
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

button, .btn, .wp-block-button__link {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 600;
  cursor: pointer;
}

/* =========================
   Hero sectie
   ========================= */
.hero {
  background: linear-gradient(135deg, #0073aa 0%, #005177 100%);
  color: #fff;
  padding: 6rem 2rem;
  text-align: center;
}
.hero-content {
  max-width: 900px;
  margin: 0 auto;
}
.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}
.hero .btn {
  background: #fff;
  color: #005177;
  padding: 1rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}
.hero .btn:hover {
  background: #e1e5e9;
  color: #0073aa;
}

/* =========================
   Extra content
   ========================= */
.extra-content {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 2rem;
}

/* =========================
   Navigatie menu
   ========================= */
.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 2rem;
}
.main-nav li {
  display: inline-block;
}
.main-nav a {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: #005177;
  text-decoration: none;
  transition: color 0.2s ease;
}
.main-nav a:hover {
  color: #0073aa;
}

/* =========================
   Logo
   ========================= */
.custom-logo {
  max-height: 80px;
  height: auto;
  width: auto;
}

/* =========================
   Footer
   ========================= */
.site-footer {
  background: #005177;
  color: #fff;
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
}