
/*
 Theme Name:   Polfliet Kadence Child
 Theme URI:    https://polfliet-transport.nl/
 Description:  Child theme for Kadence tailored to Polfliet Transport (blue-yellow palette)
 Author:       Altwin + ChatGPT
 Author URI:   https://polfliet-transport.nl/
 Template:     kadence
 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:  polfliet-kadence-child
*/

/* CSS Variables for brand palette */
:root{
  --polfliet-blue:#003366;
  --polfliet-yellow:#FFD100;
  --polfliet-white:#FFFFFF;
  --polfliet-light:#F4F4F4;
  --polfliet-dark:#2E2E2E;
  --polfliet-warm:#E8DCC4;
  --polfliet-contrast:#1F1F1F;
}

/* Global tweaks */
body{
  color: var(--polfliet-dark);
  background: var(--polfliet-white);
}

/* Buttons */
.wp-block-button__link,
button, .button, .kadence-button, .wp-element-button{
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(0,0,0,.08);
}

.wp-block-button.is-style-fill .wp-block-button__link,
.wp-block-button__link{
  background: var(--polfliet-yellow);
  color: var(--polfliet-blue);
}
.wp-block-button__link:hover{
  filter: brightness(0.95);
}

/* Header phone CTA (Kadence header button) */
.header-button .button, .header-button .wp-element-button{
  background: var(--polfliet-yellow);
  color: var(--polfliet-blue);
}

/* Links */
a{
  color: var(--polfliet-blue);
}
a:hover{
  opacity:.9;
}

/* Section helpers */
.section--light{ background: var(--polfliet-light); }
.section--dark{ background: var(--polfliet-contrast); color: #fff; }
.section--brand{ background: var(--polfliet-blue); color: #fff; }

/* Gallery spacing */
.wp-block-gallery, .kb-gallery-wrap{ gap: 12px; }
