* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Inter, system-ui, Arial;
}

body {
  background: linear-gradient(to bottom, #111, #000);
  color: #eee;
  line-height: 1.7;
}


header {
  background: #000; 
  color: #ffd700;   
  padding: 20px;
  text-align: center;
}
header h1 {
  font-size: 2rem;
  letter-spacing: 1px;
}
header p {
  opacity: .9;
  margin-top: 6px;
  color: #fff;
}


.topnav {
  display: flex;
  gap: 12px;
  justify-content: center;
  padding: 12px;
  background: #111;
}

.topnav a {
  color: #ffd700;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: 500;
  opacity: 0;
  transform: translateY(-20px);
  animation: navSlideDown 0.7s forwards;
}


.topnav a:nth-child(1) { animation-delay: 0.2s; }
.topnav a:nth-child(2) { animation-delay: 0.4s; }
.topnav a:nth-child(3) { animation-delay: 0.6s; }
.topnav a:nth-child(4) { animation-delay: 0.8s; }
.topnav a:nth-child(5) { animation-delay: 1s; }

@keyframes navSlideDown {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.topnav a:hover {
  background: #222;
  transform: scale(1.05);
}



.hero {
  position: relative;
  height: 80vh;
  background: url("restaurant\ photo.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}
.hero-text {
  position: relative;
  z-index: 2;
  padding: 20px;
  animation: fadeInUp 1.6s ease-out;
}
.hero-text h1 {
  font-size: 3rem;
  color: #ffd700;
  text-shadow: 0 0 12px rgba(255, 215, 0, 0.3);
  animation: glow 2.5s infinite alternate;
}
.cta {
  display: inline-block;
  margin-top: 16px;
  padding: 12px 20px;
  background: #ffd700;
  color: #111;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: transform .2s, background .3s;
}
.cta:hover {
  transform: scale(1.05);
  background: #e6c200;
}


.container {
  max-width: 1100px;
  margin: 50px auto;
  padding: 0 20px;
}
h3 {
  color: #ffd700;
  margin-bottom: 14px;
  text-align: center;
  font-size: 1.8rem;
}
p {
  margin-bottom: 14px;
  text-align: center;
  color: #ddd;
}

/* Menu */
.menu-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.dish {
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid #ffd700;
  border-radius: 12px;
  padding: 18px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.dish:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

.dish h3 {
  font-size: 20px;
  color: #ffd700;
  margin-bottom: 8px;
}

.dish p {
  font-size: 16px;
  color: #eee;
}



.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 14px;
  margin-top: 20px;
}
.gallery img {
  width: 100%;
  border-radius: 10px;
  display: block;
  transition: transform .3s;
}
.gallery img:hover {
  transform: scale(1.05);
}


.schedule {
  text-align: center;
  font-size: 1.6rem;
  line-height: 2.6rem;
  margin: 50px auto;
  background: rgba(0,0,0,0.6);
  padding: 25px 30px;
  border-radius: 15px;
  width: fit-content;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.15);
}
.schedule h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #ffd700;
}


form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 520px;
  margin: auto;
}
form input, form button {
  padding: 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
}
form button {
  background: #ffd700;
  color: #111;
  border: none;
  cursor: pointer;
  transition: background .3s;
}
form button:hover {
  background: #e6c200;
}


footer {
  text-align: center;
  padding: 20px;
  background: #000;
  color: #ffd700;
  margin-top: 40px;
}


@keyframes fadeInUp {
  from { opacity:0; transform:translateY(30px) }
  to { opacity:1; transform:translateY(0) }
}
@keyframes glow {
  from { text-shadow:0 0 8px #fff,0 0 12px #ffd700 }
  to { text-shadow:0 0 18px #fff,0 0 32px #ffd700 }
}

.topnav a:active {
  transform: scale(0.9);
  background: #444;
  transition: transform 0.1s ease, background 0.2s ease;
}

html {
  scroll-behavior: smooth;
}

.waiter-box {
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid #ffd700;
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 20px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.waiter-box:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

.waiter-box label {
  display: block;
  color: #ffd700;
  font-size: 18px;
  margin-bottom: 10px;
}

.waiter-box select {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ffd700;
  background: #111;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}
