body{
  background-color: black;
  margin: 0;
}

header{
  background-color: #fff;
	margin: 0;
  width: auto;
  height: 90px;
}

.logo{
  width: 150px;
  height: auto;
}

header,.logo{
  display: flex;
  justify-content: center;
  align-items: center;
}

nav {
  background-color: #a52828;
  padding: 10px 20px;
  margin: 0 186px;
}

nav ul {
  display: flex;
  margin: 0;
  padding: 0;
  justify-content: center;
  list-style: none;
  gap: 80px;
}

nav a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background 0.2s;
}

nav a:hover {
  color: rgb(228, 169, 79);
}

.menu-parent {
  position: relative;
}

.menu-child {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  min-width: 160px;
  padding: 10px 0;
  margin: 0;
  background-color: #a52828;
  list-style: none;
  border-radius: 0 0 8px 8px;
  transform: translateX(-50%); 
}

.menu-child li a {
  display: block;
  color: white;
  padding: 8px 16px;
  white-space: nowrap;
  text-align: center; 
}

.menu-child li a:hover {
  color: rgb(228, 169, 79);
}

.menu-parent:hover .menu-child {
  display: block;
}

.menu-title {
  display: block;
  color: #fff; 
  cursor: default;
  font-weight: bold;
}

.JIMCHI{
  margin:0 15px;
  align-items: center;
}

.JIMCHI img{
  width: 25px;
  height: auto;
  padding: 0 10px;
}

#graphic {
  display: flex;
	width: 840px;
	height: 400px;
	margin: 0 auto 30px auto;
  justify-content: center;
}

#graphic ul {
	position: relative;
	list-style: none;
	padding-left: 0;
}

#graphic ul li {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	transition: opacity 1s ease-in-out;
  z-index: 0;
}

#graphic ul li.now {
	display: block;
	position: relative;
	top: 0;
	left: 0;
	opacity: 1;
  z-index: 1;
}

#graphic img {
  width: 891px;
  height: 400px;
  object-fit: cover;
}

#reservation {
  position: fixed;
  right: 80px;
  top: 500px;
  z-index: 1000; 
}

#reservation img {
  width: 200px;
  height: auto;
  border-radius: 30px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25); 
  transition: transform 0.2s, box-shadow 0.2s;
}

#reservation img:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
  cursor: pointer;
}

#news{
	margin: 70px 186px;
}

#news h2{
		color: #ffffff;
    font-size: 40px;
    text-align: center;
}

#news ul {
	list-style-type: none;
	padding-left: 0;
}

#news ul li {
	padding: 20px 0 20px 175px;
	border-bottom: 2px solid #6c5f45;
	color: #d7bd86;
	text-indent: -175px;
}

#news ul li time {
	display: inline-block;
	width: 175px;
	font-weight: bold;
	color: #ae996d;
	text-indent: 0;
}

footer{
  background-color: #000000;
  margin-top: 200px;
}

#footer{
  align-items: center;
  justify-content: center;
  margin: 10px;
  display: flex;
  gap: 100px;
  list-style-type: none;
}


#footer a{
  color: #fff;
  text-decoration: none;
  justify-content: center;
}

#footer :hover{
  color: rgb(228, 169, 79);
}

footer #pagetop a {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  color: #fff;
  margin-right: 186px;
  margin-bottom: 100px;
  margin-top: 100px;
}

footer #copyright{
	display: flex;
	color: #ffffff;
	margin: 0;
	background-color: #6c5f45;
	justify-content: center;
	align-items: center;
	height: 30px;
}