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;
}

table  {
	border-collapse: collapse;
  width: min(900px, 92%);
  margin: 0 auto;

}

#main h1{
	color: #fff;
	text-align: center;
	margin: 100px 0 30px;
    font-size: 40px;
}
caption {
	text-align: left;
	margin-bottom: 30px;

}
caption p {
	margin-top: 0;
	margin-bottom: 0;
}
table th, table td {
	padding: 15px;
	border: 1px solid #6c5f45;
  
}
table tr th:first-child {
	width: 300px;
  
}

table tbody th,
table tbody td {

	vertical-align: middle;
}
table thead tr th {
	background-color: #eee8cc;
}
table tbody tr:nth-child(odd) {
	background-color: #ffffff;
}
table tbody tr:nth-child(even) {
	background-color: #f4f2f0;
}

table a {
	text-decoration: none;
	list-style-type: none;
}

.info-section{
  width: min(900px, 92%);
  margin: 60px auto 0;
  color: #fff;
}

.info-section .lead{
  margin: 0 0 16px;
  line-height: 1.8;
  opacity: 0.92;
}

.cta-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 16px 0 8px;
}

.cta-btn{
  display: inline-block;
  padding: 12px 16px;
  border-radius: 14px;
  text-decoration: none;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  font-weight: 700;
  transition: background-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.small-note{
  margin: 8px 0 0;
  font-size: 13px;
  opacity: 0.85;
  line-height: 1.7;
}

.map-actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 12px 0 8px;
}

.btn-link{
  display: inline-block;
  padding: 10px 12px;
  border-radius: 12px;
  text-decoration: none;
  color: #000;
  border: 1px solid rgba(0,0,0,0.25);
  font-weight: 700;
  font-size: 14px;
  transition: color .2s ease, border-color .2s ease;
}
.btn-link:hover{
  color: #a52828;
  border-color: rgba(165,40,40,0.45);
}

.access-note{
  margin: 0 0 6px;
  font-size: 13px;
  line-height: 1.7;
  opacity: 0.88;
}

.cta-btn:hover{
background-color: #a52828;
  box-shadow: 0 12px 24px rgba(0,0,0,0.32);
  transform: translateY(-3px);
}
.cta-btn:active{
  transform: translateY(0);
  box-shadow: 0 6px 12px rgba(0,0,0,0.20);
}

.faq-list{
  margin-top: 10px;
}

.faq-row{
  border-top: 1px solid rgba(255,255,255,0.15);
  padding: 14px 0;
}

.faq-row:last-child{
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.faq-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.faq-q{
  margin: 0;
  color: #fff;
  line-height: 1.5;
}

.faq-toggle{
  background: none;
  border: 1px solid rgba(255,255,255,0.6);
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
  flex: 0 0 auto;
}

.faq-toggle.is-open{
  transform: rotate(45deg);
}

#faq .faq-toggle{
  background: none;
  border: none;
  width: auto;
  height: auto;
  border-radius: 0;
  padding: 0;
  font-size: 16px;
  line-height: 1;
}

.faq-detail{
  margin: 0;
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  line-height: 1.75;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.35s ease, margin-top 0.35s ease;
  will-change: max-height;
}

.faq-detail.is-open{
  margin-top: 10px;
  opacity: 1;
}

#reserve-cta h2,
#faq h2{
  font-weight: normal;
  text-align: center;
}

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;
}