/*
Theme Name: BhojonWP
Author: Your Name
Description: قالب وردپرس رستوران با لوگو و حرف ای
Version: 1.0
*/

body {
  margin: 0;
  padding: 0;
  font-family: 'IRANSans', sans-serif;
  background-color: #fdfdfd;
  color: #333;
}

header {
  background-color: #d32f2f;
  color: white;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-icon {
  font-size: 40px;
  font-weight: bold;
  background-color: white;
  color: #d32f2f;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  margin-right: 10px;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
}

.logo-text {
  font-size: 24px;
  font-weight: bold;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #ffcdd2;
}

footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 15px;
  font-size: 14px;
}