:root {
  --bg-color: #b6b6b6;
  --text-color: #222;
  --accent-color: #0b2343;
  --card-bg: #fff;
  --border-color: #000000;
  --section-bg: #0f3567;
  --special-bg: #063c88;
  --font-heading: "Playfair Display", serif;
  --font-body: "Lato", sans-serif;
  --theme-toggle: #063c88;
}

.dark-mode{
  --bg-color: #000000;
  --text-color: #ffffff;
  --accent-color: #0b2343;
  --card-bg: #393E44;
  --border-color: #ffffff;
  --section-bg: #4BA4CB;
  --special-bg: #063c88;
  --theme-toggle: #4BA4CB;
}

@font-face {
    font-family: 'artisual_deco_personaluseonly';
    src: url('../links/fonts/artisualdecoregular-webfont.woff2') format('woff2'),
         url('../links/fonts/artisualdecoregular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  margin-top: 0;
}

h2, h3 {
    font-family: 'artisual_deco_personaluseonly';
}

/* ----------- HEADER ----------- */
.photo {
  height: 150pt;
  margin: 1em ;
  display: flex;
  justify-content: center;
}
.main-header {

  background-color: var(--bg-color);
  padding: 1rem 2rem;
  border-bottom: 1px solid var(--border-color);
}

.header-content {
  text-align: left;
  margin-bottom: 0.5em ;
}

.logo {
  /* font-family: var(--font-heading);
  font-size: 2rem;
  letter-spacing: 1px;
  text-transform: uppercase; */
  text-indent:-9999px;
  width:80%;
  aspect-ratio: 395 / 261;
  background-image: url(../links/highwire-logo-light.svg);
  background-size: cover;
}

.dark-mode .logo {
    background-image: url(../links/highwire-logo-dark.svg);

}

.tagline {
  font-size: 0.9rem;
  font-style: italic;
  color: #555;
}

.main-nav {
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.nav-list {
  list-style: none;
  display: flex;
  justify-content: left;
  padding: 0.5rem 0;
  margin-left: 1em;
  gap: 5rem;
}

.nav-list a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
}

.nav-list a:hover {
  text-decoration: underline;
}

.theme-toggle {
   background-color: var(--theme-toggle);
}
/* ----------- MENU SECTIONS ----------- */
.menu-section {
  background-color: var(--section-bg);
  color: #fff;
  padding: 2rem;
  margin: 2rem;
  border-radius: 12px;
}

.section-title {
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.section-description {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.menu-item {
  background-color: var(--card-bg);
  color: var(--text-color);
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  overflow: hidden;
  
}

.menu-item img {
   width: 100%; 
   height: 160px;
   object-fit: cover;
}

.item-name {
  font-size: 1.1rem;
  margin: 0.8rem 1rem 0.3rem;
}

.item-description {
  font-size: 0.9rem;
  color: var(--text-color);
  margin: 0 1rem 1rem;
}

.item-prices {
  padding: 0.5rem 1rem;
  font-weight: bold;
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
}


/* ----------- SPECIALS ----------- */
.specials {
  display: grid;
  grid-area: auto;
  padding: 1rem 1rem;
  flex-wrap: wrap;
  float: right;
  justify-content: right;
  background-color: var(--card-bg);
  color: var(--text-color);
  border-radius: 10px;
  overflow: hidden;
  max-width: 200px;
  margin: 1em;
}

/* ----------- FOOTER ----------- */

.main-footer {
  background-color: var(--bg-color);
  border-top: 1px solid var(--border-color);
  padding: 2rem;
  color: var(--text-color);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}


.footer-content h3 {
  font-family: var(--font-heading);
  margin-bottom: 0.5rem;
}


.footer-content ul {
  list-style: none;
  padding: 0;
}

.copyright {
  text-align: center;
  font-size: 0.8rem;
  color: #666;
  margin-top: 1rem;
}

/* ----------- RESPONSIVE ----------- */
@media (max-width: 700px) {
  .menu-section {
    margin: 1rem;
    padding: 1.5rem;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
  }
}