/*
Theme Name: My Minimal Theme
Theme URI: https://example.com
Author: Jouw Naam
Author URI: https://example.com
Description: Een minimalistisch WordPress-thema.
Version: 1.0
*/

/* Algemene reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
 	background-image: url("https://ruimte-vaarder.nl/wp-content/uploads/2025/01/space2.webp");
  	background-repeat: no-repeat;
  	background-attachment: fixed;
	font-family: 'Noto Sans', sans-serif;
    font-weight: 300; /* Licht gewicht */
    font-size: 18px; /* Standaard fontgrootte */
    line-height: 1.5; /* Voor betere leesbaarheid */
	background-color: #030d17; /* Pas de achtergrondkleur aan */
	margin: 0;
    padding: 0;
	color: var(--wp--preset--color--light);
}

.container {
    max-width: 720px;
    margin: 0px auto;
    padding: 0px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

img {
    height: auto;
    max-width: 100%;
}

p {
    margin-bottom: 1.5em; /* Verhoog of verlaag dit naar wens */
    line-height: 1.5; /* Optioneel: verbeter leesbaarheid */
	font-size: 18px;
}

a:link {
color: var(--wp--preset--color--light) 
}

input {
    font-size: 18px;
    padding: 8px;
    border-radius: 4px;
	border-width: 1px;
	border-color: #f0f0f5
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
}

/* noto-sans-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 300;
  src: url('fonts/noto-sans-v37-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-sans-300italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Noto Sans';
  font-style: italic;
  font-weight: 300;
  src: url('fonts/noto-sans-v37-latin-300italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-sans-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 500;
  src: url('fonts/noto-sans-v37-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-sans-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 600;
  src: url('fonts/noto-sans-v37-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* Basis knopstijl */
button, .button, input[type="submit"] {
    background-color: var(--wp--preset--color--primary); /* Primaire kleur */
    color: var(--wp--preset--color--light); /* Tekstkleur */
    border: 4px solid var(--wp--preset--color--light);
    font-family: inherit;
    font-weight: 500;
    line-height: 1em;
    font-size: 18px;
	border-radius: 2px; /* Maak de hoeken afgerond */
    padding-top: 10px;
    padding-right: 15px;
    padding-bottom: 10px;
    padding-left: 15px;
}

/* Hover-effect */
button:hover, .button:hover, input[type="submit"]:hover {
    background-color: var(--wp--preset--color--secondary); /* Donkerdere kleur bij hover */
}

/* Overige knoppen */
.wp-block-button .wp-block-button__link, .wp-block-search .wp-block-search__button, body .wp-block-file .wp-block-file__button {
    background-color: var(--wp--preset--color--primary); /* Primaire kleur */
    color: var(--wp--preset--color--light); /* Tekstkleur */
    border: 4px solid var(--wp--preset--color--light);
    font-family: inherit;
    font-weight: 500;
    line-height: 1em;
    font-size: 18px;
	border-radius: 2px; /* Maak de hoeken afgerond */
    padding-top: 10px;
    padding-right: 15px;
    padding-bottom: 10px;
    padding-left: 15px;
}

/* Hover-effect */
.wp-block-button:hover .wp-block-button__link:hover, .wp-block-search:hover .wp-block-search__button:hover, body .wp-block-file:hover .wp-block-file__button:hover {
    background-color: var(--wp--preset--color--accent); /* Donkerdere kleur bij hover */
}