* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Roboto", Arial, sans-serif;
  background: #101010;
  color: #fff;
}

a {
  color: inherit;
}

.container {
  width: min(1120px, 90%);
  margin: 0 auto;
}

/* NAV */
nav {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
  padding: 18px 0;
  transition: 0.3s ease;
}

.nav-scrolled {
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
}

.logo {
  font-family: "Oswald", Arial, sans-serif;
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}

.logo span,
.section-label {
  color: #d6a84c;
}

.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: white;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.order-btn,
.primary-btn,
.secondary-btn,
.card-btn,
.back-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
}

.order-btn,
.primary-btn,
button {
  background: #d6a84c;
  color: #111;
}

.secondary-btn {
  border: 1px solid rgba(255, 255, 255, 0.8);
  color: #fff;
}

.mobile-menu {
  display: none;
  font-size: 1.7rem;
  cursor: pointer;
}

/* HERO */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.38)),
    url("images/hero.jpg");
  background-color: #191919;
  background-size: cover;
  background-position: center;
  padding: 130px 0 90px;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero-subtitle,
.section-label {
  margin: 0 0 12px;
  font-weight: 700;
}

.hero h1,
.section-heading h2,
.about h2 {
  font-family: "Oswald", Arial, sans-serif;
  margin: 0;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 6.8rem);
}

.hero-description {
  max-width: 620px;
  color: #ededed;
  font-size: 1.12rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

/* FEATURES */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #d6a84c;
  color: #111;
}

.feature-card {
  min-height: 205px;
  padding: 34px 26px;
  border-right: 1px solid rgba(0, 0, 0, 0.16);
}

.feature-card h3,
.event-card h3,
footer h3 {
  font-family: "Oswald", Arial, sans-serif;
  margin: 0 0 12px;
  letter-spacing: 0;
}

.feature-card p,
.event-content p,
footer p,
.about p,
.section-heading p {
  line-height: 1.65;
}

/* ABOUT */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.about-text {
  padding: 90px min(8vw, 90px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about h2,
.section-heading h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
}

.about p {
  color: #ddd;
}

.about-image {
  min-height: 420px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.18)),
    url("images/about.jpg");
  background-color: #262626;
  background-size: cover;
  background-position: center;
}

/* EVENTS */
.events {
  padding: 90px 0;
  background: #f5f1e8;
  color: #111;
}

.section-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 42px;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.event-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.12);
}

.event-image {
  min-height: 210px;
  background-color: #222;
  background-size: cover;
  background-position: center;
}

.event1 {
  background-image: url("images/event1.jpg");
}

.event2 {
  background-image: url("images/event2.jpg");
}

.event3 {
  background-image: url("images/event3.jpg");
}

.event-content {
  padding: 26px;
}

.event-content p {
  color: #555;
}

.card-btn,
.back-link {
  color: #111;
  border: 1px solid #d6a84c;
}

.card-btn {
  width: auto;
  min-height: 42px;
}

.back-link {
  background: #d6a84c;
  color: #111;
  box-shadow: 0 10px 26px rgba(214, 168, 76, 0.2);
}

.event-popup-btn {
  font: inherit;
}

.event-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.72);
}

.event-modal.open {
  display: flex;
}

.event-modal-panel {
  position: relative;
  width: min(560px, 100%);
  padding: 34px;
  border-radius: 8px;
  background: #fff;
  color: #111;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.35);
}

.event-modal-panel h2 {
  margin: 0 0 14px;
  font-family: "Oswald", Arial, sans-serif;
  font-size: clamp(2rem, 6vw, 3rem);
}

.event-modal-panel p:last-child {
  margin-bottom: 0;
  color: #333;
  line-height: 1.7;
}

.event-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  padding: 0;
  border-radius: 50%;
  font-size: 1.6rem;
  line-height: 1;
}

/* EVENTS PAGE */
.events-page {
  min-height: 100vh;
  background: #101010;
}

.events-shell {
  width: min(980px, 92%);
  margin: 0 auto;
  padding: 70px 0;
}

.events-page-header {
  margin: 34px 0 36px;
}

.events-page-header h1 {
  margin: 0 0 16px;
  font-family: "Oswald", Arial, sans-serif;
  font-size: clamp(3rem, 9vw, 6rem);
  line-height: 1;
}

.events-page-header p:last-child {
  max-width: 680px;
  color: #ddd;
  line-height: 1.7;
}

.event-list {
  display: grid;
  gap: 18px;
}

.event-listing {
  padding: 24px;
  border-left: 4px solid #d6a84c;
  border-radius: 8px;
  background: #1b1b1b;
}

.event-listing h2 {
  margin: 0 0 10px;
  font-family: "Oswald", Arial, sans-serif;
  font-size: 2rem;
}

.event-listing p {
  color: #ddd;
  line-height: 1.6;
}

.event-date {
  margin: 0 0 8px;
  color: #d6a84c;
  font-weight: 700;
  text-transform: uppercase;
}

/* HOURS */
.hours {
  padding: 90px 0;
  background: #151515;
}

.hours-grid {
  width: min(760px, 100%);
  margin: 0 auto;
  border-top: 1px solid #333;
}

.hour-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid #333;
  font-weight: 700;
}

/* FOOTER */
footer {
  background: #050505;
  padding: 64px 0 22px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 34px;
}

.socials {
  display: flex;
  gap: 12px;
}

.socials a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #d6a84c;
  color: #111;
  text-decoration: none;
}

.copyright {
  width: min(1120px, 90%);
  margin: 36px auto 0;
  padding-top: 20px;
  border-top: 1px solid #222;
  color: #aaa;
  font-size: 0.9rem;
}

/* MENU AND ADMIN */
.menu-page,
.admin-page {
  background: #101010;
  min-height: 100vh;
}

.menu-container,
.admin-shell {
  width: min(900px, 92%);
  margin: 0 auto;
  padding: 70px 0;
}

.menu-container h1,
.admin-shell h1 {
  font-family: "Oswald", Arial, sans-serif;
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  margin: 18px 0 28px;
}

.item,
.card {
  background: #1b1b1b;
  padding: 20px;
  margin-bottom: 15px;
  border-left: 4px solid #d6a84c;
  border-radius: 6px;
}

.item h2 {
  margin: 0 0 8px;
  font-family: "Oswald", Arial, sans-serif;
}

.item h3 {
  margin: 0 0 8px;
  font-family: "Oswald", Arial, sans-serif;
  font-size: 1.35rem;
}

.item p {
  color: #ddd;
  margin-bottom: 0;
}

.menu-category {
  margin-bottom: 42px;
}

.menu-category h2 {
  color: #d6a84c;
  font-size: 2.1rem;
  margin-bottom: 16px;
}

.menu-phone {
  margin-top: 58px;
  padding-top: 28px;
  border-top: 1px solid #333;
  text-align: center;
}

.menu-phone p {
  margin: 0 0 10px;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
}

.menu-phone a {
  color: #d6a84c;
  font-family: "Oswald", Arial, sans-serif;
  font-size: clamp(2rem, 6vw, 3.2rem);
  font-weight: 700;
  text-decoration: none;
}

input {
  width: 100%;
  padding: 12px;
  margin: 6px 0 10px;
  border: 1px solid #333;
  border-radius: 4px;
  background: #090909;
  color: #fff;
  font: inherit;
}

select {
  width: 100%;
  padding: 12px;
  margin: 6px 0 10px;
  border: 1px solid #333;
  border-radius: 4px;
  background: #090909;
  color: #fff;
  font: inherit;
}

button {
  border: none;
  border-radius: 4px;
  padding: 12px 16px;
  width: 100%;
  cursor: pointer;
  font-weight: 700;
}

.danger {
  margin-top: 8px;
  background: #b42323;
  color: #fff;
}

.small-button {
  width: auto;
  min-width: 145px;
}

.admin-category {
  margin: 24px 0;
}

.admin-divider {
  height: 1px;
  margin: 44px 0;
  background: #333;
}

.category-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.category-heading h3,
.menu-category h2 {
  margin: 0;
  font-family: "Oswald", Arial, sans-serif;
}

.status {
  min-height: 22px;
  color: #d6a84c;
}

.status.error {
  color: #ff7777;
}

@media (max-width: 820px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 5%;
    right: 5%;
    padding: 18px;
    background: rgba(0, 0, 0, 0.95);
    flex-direction: column;
  }

  .nav-links.open {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

  .features,
  .about,
  .event-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.16);
  }

  .order-btn {
    display: none;
  }

  .hour-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}
