﻿/* style.css - Slick's Sandwich Shop */
body {
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
	background: #fdfdfd;
	color: #333;
	font-size: 11pt;
}
header {
	background: #206ba1;
	color: white;
	padding: 20px 30px;
	text-align: center;
}
nav {
	background: #333;
	padding: 10px;
	text-align: center;
}
nav a {
	color: white;
	margin: 0 15px;
	text-decoration: none;
	font-weight: bold;
}
nav a:hover {
	text-decoration: underline;
}
.hero {
	background: #f4f4f4;
	padding: 50px 20px;
	text-align: center;
}
.hero h1 {
	margin-bottom: 20px;
	font-size: 2.5em;
	color: #206ba1;
}
.hero p {
	font-size: 1.2em;
}
.container {
	padding: 20px;
	max-width: 900px;
	margin: 0 auto;
}
h2 {
	border-bottom: 2px solid #206ba1;
	padding-bottom: 5px;
	margin-top: 40px;
}
table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 30px;
}
th, td {
	border: 1px solid #ddd;
	padding: 8px;
	text-align: left;
}
th {
	background-color: #206ba1;
	color: white;
}
.menu-section {
	margin-bottom: 40px;
}
.menu-section a {
	display: inline-block;
	margin-top: 10px;
	color: #206ba1;
	font-weight: bold;
	text-decoration: none;
}
.menu-section a:hover {
	text-decoration: underline;
}
footer {
	background: #333;
	color: white;
	text-align: center;
	padding: 15px;
	margin-top: 40px;
}
a {
	color: #206ba1;
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}
.center {
	  text-align: center;
}
.right {
	  text-align: right;
}