/*
Theme Name: Restaurant Directory
Theme URI: https://example.com/restaurant-directory
Author: Your Company
Author URI: https://example.com
Description: A modern, fast, mobile-friendly, SEO-optimized WordPress restaurant directory theme for restaurants, cafes, bars, bakeries, food trucks, and catering companies. Includes restaurant listings, frontend submissions, paid memberships, PayPal payments, maps, menus, galleries, and reviews.
Version: 0.1.2
Requires at least: 6.4
Tested up to: 6.6
Requires PHP: 8.2
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: restaurant-directory
Tags: custom-post-type, food-and-drink, directory, block-patterns, translation-ready, rtl-language-support
*/

/* ==========================================================================
   Phase 1 note: this stylesheet intentionally stays minimal. Full visual
   design (design tokens, homepage, listing cards, detail page layout) is
   scoped to the "Frontend Design" phase. This file only provides sane
   resets/base rules so the scaffold is usable and testable right now.
   ========================================================================== */

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

body {
	margin: 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	line-height: 1.5;
	color: #1d1d1f;
	background: #fff;
}

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

a {
	color: inherit;
}

.rd-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.rd-site-header,
.rd-site-footer {
	padding: 20px 0;
	border-bottom: 1px solid #e5e5e5;
}

.rd-site-footer {
	border-bottom: none;
	border-top: 1px solid #e5e5e5;
	margin-top: 60px;
	font-size: 14px;
	color: #666;
}

.rd-badge {
	display: inline-block;
	font-size: 12px;
	font-weight: 600;
	padding: 2px 8px;
	border-radius: 4px;
	margin-right: 6px;
}

.rd-badge--verified {
	background: #e6f4ea;
	color: #1e7e34;
}

.rd-badge--featured {
	background: #fff4e5;
	color: #b26a00;
}

.rd-badge--open {
	background: #e6f4ea;
	color: #1e7e34;
}

.rd-badge--closed {
	background: #fdecea;
	color: #c0392b;
}

.rd-restaurant-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 24px;
	margin: 24px 0;
}

.rd-restaurant-card {
	border: 1px solid #e5e5e5;
	border-radius: 8px;
	overflow: hidden;
}

.rd-restaurant-card__body {
	padding: 14px 16px;
}

.rd-restaurant-card h3 {
	margin: 0 0 6px;
	font-size: 18px;
}

.rd-field-table {
	width: 100%;
	border-collapse: collapse;
	margin: 16px 0;
}

.rd-field-table th,
.rd-field-table td {
	text-align: left;
	padding: 6px 10px;
	border-bottom: 1px solid #eee;
	vertical-align: top;
}

.rd-hours-list td {
	padding: 4px 10px;
}
