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

body {
  font-family: Arial, sans-serif;
  color: white;
}

/* Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 70px;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  padding: 0 30px;
  z-index: 10;
}

header h1 {
  margin-left: 30px;
  font-size: 24px;
}

/* Hamburger */
.hamburger {
  font-size: 35px;
  cursor: pointer;
  color: white;
}

/* Hide checkbox */
#menu-toggle {
  display: none;
}

/* Side Menu */
.side-menu {
  position: fixed;
  top: 0;
  left: -260px;
  width: 260px;
  height: 100%;
  background: #111;
  padding-top: 80px;
  transition: 0.4s ease;
  z-index: 20;
}

.side-menu a {
  display: block;
  color: white;
  text-decoration: none;
  padding: 18px 30px;
  font-size: 20px;
}

.side-menu a:hover {
  background: #c59d5f;
}

.close {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 40px;
  cursor: pointer;
}

/* Open menu */
#menu-toggle:checked ~ .side-menu {
  left: 0;
}

/* Hero Video */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dark overlay */
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
}

/* Hero Text */
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-content h2 {
  font-size: 55px;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 22px;
  margin-bottom: 25px;
}

.btn {
  background: #c59d5f;
  color: white;
  padding: 14px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
}

.btn:hover {
  background: #a87f3d;
}



.about-page {
  background: #0d0d0d;
  color: white;
}

.about-section {
  min-height: 100vh;
  padding: 120px 8% 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image::before {
  content: "";
  position: absolute;
  top: -25px;
  left: -25px;
  width: 100%;
  height: 100%;
  border: 3px solid #c59d5f;
  border-radius: 30px;
  z-index: 0;
}

.about-image img {
  position: relative;
  width: 100%;
  height: 620px;
  object-fit: cover;
  border-radius: 30px;
  z-index: 1;
}

.about-message {
  background: rgba(255,255,255,0.06);
  padding: 45px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
}

.about-message span {
  color: #c59d5f;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 14px;
}

.about-message h2 {
  font-size: 46px;
  margin: 15px 0 25px;
}

.about-message p {
  color: #ddd;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-message blockquote {
  font-size: 24px;
  color: #c59d5f;
  font-style: italic;
  margin: 30px 0;
  border-left: 4px solid #c59d5f;
  padding-left: 20px;
}

.about-message h3 {
  font-size: 26px;
  margin-top: 20px;
}

.role {
  color: #c59d5f !important;
}




/* Reserve Page  */

.reserve-page {
  background: #0f0f0f;
  color: white;
}

.reserve-section {
  min-height: 100vh;
  padding: 120px 20px 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background:
    linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.85)),
    url("img/food.png") center/cover;
}

.reserve-box {
  width: 100%;
  max-width: 600px;
  background: rgba(255,255,255,0.08);
  padding: 40px;
  border-radius: 25px;
  border: 1px solid rgba(255,255,255,0.15);
}

.reserve-box h2 {
  color: #c59d5f;
  font-size: 42px;
  margin-bottom: 10px;
}

.reserve-box p {
  color: #ddd;
  margin-bottom: 25px;
}

.reserve-box input,
.reserve-box select,
.reserve-box textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 14px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
}

.reserve-box textarea {
  height: 120px;
  resize: none;
}

.reserve-box button {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 10px;
  background: #c59d5f;
  color: white;
  font-size: 18px;
  cursor: pointer;
}

.reserve-box button:hover {
  background: #a77f3e;
}




/* Footer */
footer {
  background: #111;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}


/* MENU */

.menu-wrapper {
  width: 90%;
  max-width: 1200px;
  margin: 120px auto 60px;
}

.menu-category {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 35px;
  border-radius: 25px;
  margin-bottom: 40px;
}

.menu-category h2 {
  color: #c59d5f;
  font-size: 38px;
  margin-bottom: 25px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.15);
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item h3 {
  font-size: 20px;
  color: #473333;
}

.menu-item span {
  color: #c59d5f;
  font-weight: bold;
  font-size: 18px;
}

@media(max-width:768px){

  .menu-category {
    padding: 25px;
  }

  .menu-category h2 {
    font-size: 30px;
  }

  .menu-item h3 {
    font-size: 16px;
  }

}

.contact-page {
  background: #0f0f0f;
  color: white;
}

.contact-hero {
  min-height: 100vh;
  padding: 120px 8% 60px;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 40px;
  align-items: center;
  background:
    linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.8)),
    url("img/food.png") center/cover;
}

.contact-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  padding: 40px;
  border-radius: 25px;
  border: 1px solid rgba(255,255,255,0.15);
}

.contact-card h2 {
  font-size: 48px;
  color: #c59d5f;
  margin-bottom: 10px;
}

.contact-card p {
  color: #ddd;
  margin-bottom: 30px;
}

.form-row {
  display: flex;
  gap: 15px;
}

form input,
form select,
form textarea {
  width: 100%;
  padding: 16px;
  margin-bottom: 15px;
  border: none;
  border-radius: 12px;
  background: rgba(255,255,255,0.92);
  font-size: 16px;
  outline: none;
}

form textarea {
  height: 140px;
  resize: none;
}

form button {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 12px;
  background: #c59d5f;
  color: white;
  font-size: 18px;
  cursor: pointer;
}

form button:hover {
  background: #a77f3e;
}

.contact-info {
  background: #111;
  padding: 35px;
  border-radius: 25px;
  border-left: 5px solid #c59d5f;
}

.contact-info h3 {
  font-size: 32px;
  color: #c59d5f;
  margin-bottom: 20px;
}

.contact-info p {
  margin-bottom: 18px;
  line-height: 1.6;
}

.contact-info a {
  color: #c59d5f;
  text-decoration: none;
}


.notification-panel {
  background: #1b1b1b;
  border: 1px solid #c59d5f;
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 25px;
}

.notification-panel h2 {
  color: white;
}

#booking-count {
  background: red;
  color: white;
  padding: 6px 12px;
  border-radius: 50%;
}

.sound-btn {
  background: #c59d5f;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
}




@media (max-width: 600px) {
  .menu-item {
    flex-direction: column;
  }

  .menu-hero h2 {
    font-size: 35px;
  }
}






/* Mobile */
@media (max-width: 768px) {
  header h1 {
    font-size: 18px;
  }

  .hero-content h2 {
    font-size: 35px;
  }

  .hero-content p {
    font-size: 18px;
  }

    .contact-hero {
    grid-template-columns: 1fr;
    padding: 110px 20px 40px;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .contact-card h2 {
    font-size: 34px;
  }

  .about-section {
    grid-template-columns: 1fr;
    padding: 110px 20px 40px;
  }

  .about-image img {
    height: 430px;
  }

  .about-message {
    padding: 30px 25px;
  }

  .about-message h2 {
    font-size: 34px;
  }

}
