@charset "UTF-8";

header {
  color: white;
  width: 100%;
  height: 100vh;
  background-image: url(../img/IMG_8327.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.frameTV {
  position: fixed;
  object-fit: fill;
  min-width: 100vw;
  min-height: 100%;
  pointer-events: none;
  z-index: 100;
}

header h1 {
  margin: 0;
  font-size: var(--font-h2);
}

.dial-wrapper {
  background-color: var(--color-main);
  width: 13%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
}

.nav-list {
  margin: 0 auto;
  height: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.dial-item {
  margin: 0 auto;
  width: 100%;
  height: 17%;
  position: relative;
  z-index: 2;
  cursor: pointer;
}

.dial1 img {
  position: absolute;
  top: 0;
  left: 0;
  filter: drop-shadow(0px 0px 5px rgba(44, 255, 1, 0.3));
  animation: feature 2s linear infinite;
}

@keyframes feature {
  50% {
    filter: drop-shadow(0px 0px 7px rgba(255, 255, 255, 0.9));
  }
}

.dial1 img:nth-of-type(1) {
  z-index: 4;
}

.dial-item.dial1:hover img {
  animation: none;
  filter: drop-shadow(0px 0px 5px rgba(0, 12, 255, 0));
}

.dial-item.dial1:hover .dial-list {
  transform: none;
}

.list-item a {
  font-size: var(--font-h6);
}

.list-item a:hover {
  background-color: var(--color-sub1);
}

.nav-list:has(.list-item.item1 a:hover) .dial-item.dial1 img:nth-of-type(2) {
  z-index: 5;
}

.nav-list:has(.list-item.item2 a:hover) .dial-item.dial1 img:nth-of-type(3) {
  z-index: 6;
}

.nav-list:has(.list-item.item3 a:hover) .dial-item.dial1 img:nth-of-type(4) {
  z-index: 7;
}

.dial-list {
  background-color: var(--color-main);
  width: 20vw;
  height: 300%;
  position: absolute;
  top: 50%;
  left: -19.9vw;
  transform: translateX(400%);
  transition: 500ms ease-in;
}

main {
  background-color: var(--color-sub1);
  margin-left: 10%;
  margin-right: 20%;
  margin-bottom: 20vw;
  padding: 0 2%;
}

section {
  padding: 2rem;
  max-width: 960px;
  margin: auto;
}

.hero img {
  width: 100%;
  border: 6px solid #6a994e;
  border-radius: 8px;
  box-shadow: 4px 4px 0 #b55030;
}

.menu,
.interior,
.access {
  margin-top: 3rem;
}

.menu-item,
.interior-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.menu-item img,
.interior-item img {
  width: 200px;
  height: 150px;
  object-fit: cover;
  border-radius: 6px;
}

footer {
  background-color: #b55030;
  color: white;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
}

.btn {
  display: inline-block;
  background-color: #6a994e;
  color: white;
  padding: 0.7rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
  box-shadow: 2px 2px 0 #444;
  font-weight: bold;
}

.btn:hover {
  background-color: #588d3d;
}

.goform {
  position: relative;
  z-index: 0;
  display: inline-block;
  font-size: var(--font-h1);
  background-color: var(--color-main);
  opacity: 0.8;
  margin: 5% 0;
  padding: 10px;
  border-radius: 50px;
  box-shadow: 0px 0px 5px 5px rgb(146, 146, 146, 0);
  transition: 0.5s;
}

.goform:hover {
  box-shadow: 0px 0px 5px 5px rgba(0, 17, 255, 0.2);
  animation: feature-form 1s linear infinite;
}

@keyframes feature-form {
  50% {
    box-shadow: 0px 0px 5px 5px rgba(0, 17, 255, 0.8);
  }
}
