/*
Theme Name: Foodhub
Theme URI: https://example.com/foodhub
Author: Your Name
Author URI: https://example.com
Description: A custom, Just Eat-inspired food ordering theme for Swiss restaurants, optimized for WooCommerce and TWINT.
Version: 1.0.7
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 7.4
Text Domain: foodhub
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Tags: e-commerce, restaurant, food ordering, responsive, custom-menu
*/

/*
 * Keep this file light: theme header + minimal base styles.
 * All layout and components live in assets/css/main.css.
 */

/* Minimal reset (kept light to avoid plugin conflicts) */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	font-size: 100%; /* 16px default */
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	padding: 0;
	font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: #f5f5f5;
	background-color: #1c1a17;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin-top: 0;
	color: #fdfaf4;
}

a {
	color: #ff8000;
	text-decoration: none;
	transition: color 0.2s ease-in-out;
}

a:hover,
a:focus {
	color: #ff9b33;
}

.foodhub-container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding-left: 16px;
	padding-right: 16px;
}

.foodhub-visually-hidden {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}