/* CSS Variables */
:root {
  --clr-primary: #9c5526;
  --clr-bg: #54331d;
  --clr-neutral: #ede7e3;
  --clr-black: hsla(30, 4%, 20%, 0.8);
  --clr-neutral75: hsl(24, 22%, 91%, 0.75);
}

body {
  font-family: "Open Sans", sans-serif;
  color: var(--clr-black);
  line-height: 1.5;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  background-image: url("../images/coffee.jpeg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

h1,
h3,
h4 {
  font-family: Oswald, sans-serif;
  font-weight: 500;
  line-height: 1.2;
}

h1 {
  font-size: 2.488rem;
}

h3 {
  font-size: 1.728rem;
}

h4 {
  font-size: 1.44rem;
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Header Styles */
header {
  color: var(--clr-neutral);
  text-align: center;
  padding: 1rem;
}

p#established {
  color: var(--clr-neutral75);
}

/* Main Styles */
main {
  background-color: var(--clr-neutral);
  width: 80%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 1rem;
  padding-top: 1rem;
  padding-right: 2rem;
  padding-left: 2rem;
}

h3,
h4 {
  color: var(--clr-primary);
  margin-bottom: 1rem;
}

h4 {
  text-align: center;
}

#about,
#menu {
  margin-bottom: 1rem;
}

/* About Section */
p {
  margin: 0.5rem;
}

li {
  list-style-type: none;
  background-image: url(/images/logo.png);
  background-repeat: no-repeat;
  background-size: 1em, 1em;
  padding-left: 1.5em;
  background-position-x: 0;
  background-position-y: 0.3em;
}

/* Menu Section */
.title {
  text-align: left;
}

.price {
  text-align: right;
}

hr {
  height: 3px;
}

.item {
  display: flex;
  flex-direction: row;
}

.item p {
  display: inline-block;
}

.title {
  width: 75%;
}

.price {
  width: 25%;
}

/* Location and Hours Section */
div {
  text-align: center;
}

iframe {
  width: 360px;
  height: 270px;
  border: none;
  margin-bottom: 1rem;
}

a[href] {
  color: var(--clr-primary);
  text-decoration: none;
  border-bottom: solid transparent 2px;
}

a:hover,
a:active {
  border-color: var(--clr-primary);
}

/* Footer Section */
footer {
  background-color: var(--clr-bg);
  color: var(--clr-neutral);
  font-size: 0.833rem;
  text-align: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
  margin-top: 2rem;
}
