/*
Theme Name: Greenfork
Theme URI: https://example.com/greenfork
Description: Een professioneel upscale catering & restaurant WordPress thema, volledig aanpasbaar via Elementor. Inclusief setup-wizard met optionele demo content import en vooraf ingestelde Elementor globale stijlen.
Author: Greenfork
Author URI: https://example.com
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
Tested up to: 6.7
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: greenfork
Domain Path: /languages
Tags: elementor, restaurant, catering, food, one-column, two-columns, custom-colors, custom-menu, featured-images, full-width-template, sticky-post, translation-ready
*/

/* ==========================================================================
   Greenfork Theme – Basis CSS
   Elementor beheert het grootste deel van de visuele stijl.
   Dit bestand bevat alleen de minimale reset en typografie-basis.
   ========================================================================== */

/* CSS Custom Properties – gespiegeld vanuit Elementor Kit */
:root {
	--gf-primary:    #4a7c59;
	--gf-secondary:  #2c3e2d;
	--gf-accent:     #c8a96e;
	--gf-bg:         #f9f6f0;
	--gf-text:       #1a1a1a;
	--gf-text-muted: #5a5a5a;
	--gf-white:      #ffffff;
	--gf-font-head:  'Playfair Display', Georgia, serif;
	--gf-font-body:  'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Reset */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	font-size: 16px;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	padding: 0;
	background-color: var(--gf-bg);
	color: var(--gf-text);
	font-family: var(--gf-font-body);
	font-size: 1rem;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
}

/* Typografie */
h1, h2, h3, h4, h5, h6 {
	font-family: var(--gf-font-head);
	font-weight: 700;
	line-height: 1.2;
	color: var(--gf-secondary);
	margin-top: 0;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
h4 { font-size: 1.3rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
	margin-top: 0;
	margin-bottom: 1.25em;
	color: var(--gf-text-muted);
}

a {
	color: var(--gf-primary);
	text-decoration: none;
	transition: color 0.2s ease;
}

a:hover {
	color: var(--gf-secondary);
}

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

/* Knoppen */
.gf-btn,
.wp-block-button__link,
button,
input[type="submit"],
input[type="button"] {
	display: inline-block;
	padding: 0.85em 2.2em;
	background-color: var(--gf-primary);
	color: var(--gf-white);
	font-family: var(--gf-font-body);
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	border: 2px solid transparent;
	border-radius: 0;
	cursor: pointer;
	transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.gf-btn:hover,
.wp-block-button__link:hover,
button:hover,
input[type="submit"]:hover {
	background-color: var(--gf-secondary);
	color: var(--gf-white);
}

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

.gf-btn--outline:hover {
	background-color: var(--gf-primary);
	color: var(--gf-white);
}

.gf-btn--accent {
	background-color: var(--gf-accent);
	color: var(--gf-secondary);
}

/* Layout */
.site {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.site-content {
	flex: 1;
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

/* Fallback Header */
.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background-color: var(--gf-white);
	border-bottom: 1px solid rgba(0,0,0,0.07);
	padding: 1rem 0;
}

.site-header .header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}

.site-branding .site-title {
	font-family: var(--gf-font-head);
	font-size: 1.6rem;
	font-weight: 700;
	color: var(--gf-secondary);
	margin: 0;
}

.site-branding .site-title a {
	color: inherit;
}

/* Navigatie */
.main-navigation ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 2rem;
	align-items: center;
}

.main-navigation ul li a {
	font-size: 0.9rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--gf-text);
	transition: color 0.2s;
}

.main-navigation ul li a:hover {
	color: var(--gf-primary);
}

/* Fallback Footer */
.site-footer {
	background-color: var(--gf-secondary);
	color: rgba(255,255,255,0.7);
	padding: 3rem 0 1.5rem;
}

.site-footer a {
	color: var(--gf-accent);
}

.footer-bottom {
	border-top: 1px solid rgba(255,255,255,0.1);
	margin-top: 2rem;
	padding-top: 1rem;
	font-size: 0.85rem;
	text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
	.main-navigation {
		display: none;
	}
}

/* Skip link (toegankelijkheid) */
.skip-link {
	position: absolute;
	top: -100%;
	left: 0;
	background: var(--gf-primary);
	color: var(--gf-white);
	padding: 0.5rem 1rem;
	font-size: 0.9rem;
	z-index: 9999;
}

.skip-link:focus {
	top: 0;
}
