/*
Theme Name: Restaurant Theme
Theme URI: https://example.com/restaurant-theme
Author: Your Name
Author URI: https://example.com
Description: A complete WordPress theme for restaurants with a dark blue and orange color scheme, fully compatible with the latest WordPress version and PHP8.3.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: restaurant-theme
*/

/* Define color variables */
:root {
  --primary-color: #001f3f; /* Dark Blue */
  --secondary-color: #ff851b; /* Orange */
}

/* Basic Reset & Body */
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #f5f5f5;
  color: #333;
}

/* Header styling */
header {
  background-color: var(--primary-color);
  color: #fff;
  padding: 20px 0;
}
header .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
header .site-title {
  margin: 0;
  font-size: 2.5em;
}
header nav {
  margin-top: 10px;
}
header nav a {
  color: #fff;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
}
header nav a:hover {
  text-decoration: underline;
}

/* Main container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Footer styling */
footer {
  background-color: var(--primary-color);
  color: #fff;
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
}

/* Button styling */
.button {
  background-color: var(--secondary-color);
  color: #fff;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: bold;
}
.button:hover {
  opacity: 0.85;
}
