:root {
  --bg: #000000;          /* background */
  --text: #f0f0f0;        /* main text color */
  --muted: #8f8f8f;       /* softer gray for descriptions */
  --card: #111111;        /* dark card background */
  --border: #333333;      /* subtle borders */
  --accent: #ffffff;      /* white accent */
  --hover-accent: #167325;/* bright green accent for hover */
  --card-w: 300px;      
  --photo-h: 160px;     
  --title-h: 100px;      
  --desc-h: 82px;       
  --price-h: 28px;      
}

#title {
  font-size: clamp(40px, 8vw, 100px); /* scales automatically with screen size */
  font-weight: 900;
  text-align: center;
  letter-spacing: 2px;
  margin: 0 0 20px 0;
}

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

body {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
}

/* Layout container */
.container {
  max-width: 1000px;
  margin: 160px auto 96px;
  padding: 0 24px;
  text-align: center;
}

/* Titles */
.page-title {
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 800;
  letter-spacing: 0.02em;
  margin: 24px 0 16px;
}
.section-title {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 800;
  margin: 40px 0 16px;
  display: flex;
  justify-content: center; 
}

/* Navbar container */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  background-color: rgba(0, 0, 0, 0.9);  
  backdrop-filter: blur(6px);
  padding: 1rem 2rem;
  box-shadow: 0 1px 3px rgba(255, 255, 255, 0.1);  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Scrolled state */
.navbar.scrolled {
  background-color: rgba(0, 0, 0, 0.95);
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.15);
}

/* Brand */
.navbar-brand {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
}

/* Navbar links */
.navbar-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-item {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-item:hover {
  color: var(--hover-accent); /* accent color */
}

/* --- Mobile Styles --- */
.navbar-toggle {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

/* On smaller screens */
@media (max-width: 768px) {
  .navbar-nav {
    display: none; /* hide menu initially */
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 70px; /* below navbar */
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);    backdrop-filter: blur(8px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    padding: 1rem 0;
    gap: 16px;
    z-index: 1099;
  }

  .navbar-nav.active {
    display: flex; /* show menu when toggled */
  }

  .navbar-toggle {
    display: block; /* show hamburger */
  }
}

/* Ensure content doesn't overlap with navbar */
body {
  margin-top: 70px; /* Increase this to push content below the fixed navbar */
}


/* Optional backdrop (darkened overlay behind side-nav) */
.backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .35);
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease;
  z-index: 1150;
}

/* Menu grid */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(var(--card-w), 1fr));
  gap: 24px 28px;
  justify-content: center;
  align-items: start;              /* start all items at the same baseline */
  text-align: center;
}

/* Make “boxes” invisible (no card look) */
.menu-grid figure {
  width: var(--card-w);
  margin: 0;
  display: grid;
  grid-template-rows: var(--photo-h) auto auto auto;
  gap: 0.5rem;
  align-items: center;             /* center content within each row */
  background: transparent;
  border: 0;
}

/* Only image + text show */
.menu-grid figure img,
.menu-grid img{                    /* keeps it specific; overrides old rules */
  width: 100%;
  height: var(--photo-h);
  object-fit: contain;               /* crops to the box uniformly */
  display: block;
  margin-inline: auto;
  border-radius: 12px;
  background-color: #000;
}

.menu-grid .title{
  line-height: 1.25;
  display: flex;
  align-items: flex-end;           /* sit on the bottom of the title row */
  justify-content: center;
  /* height: 100%; */
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .01em;
  padding-top: 2rem;
}


/* Description row – clamp to keep heights equal */
.menu-grid .desc{
  /* height: 100%; */
  padding: 0 8px;
  color: var(--muted);
  /* display: -webkit-box; */
  -webkit-line-clamp: 3;           /* show up to 3 lines */
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Price row */
.menu-grid .price{
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  padding-bottom: 30px;
}

/* Optional: tweak for small screens */
@media (max-width: 480px){
  :root{
    --card-w: 180px;
    --photo-h: 150px;
    /* --title-h: 40px; */
    --desc-h: 66px;
    --price-h: 26px;
  }
}
/* Center the grid rows and last row */
@media (min-width: 480px) {
  .menu-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 280px)); /* fixed card width */
    justify-content: center; /* center the columns as a group */
    gap: 10px;
  }
  .menu-grid figure {
    align-items: start;
    width: 240px;
  }
}

/* (Optional) also center the text as in option 1 */
.menu-grid .title,
.menu-grid .desc,
.menu-grid .price {
  text-align: center;
}
.menu-grid .desc {
  max-width: 30ch;
  margin: 0 auto;
}

/* Center images inside the menu grid */
.menu-grid {
  justify-items: center; /* centers content in each grid cell */
}

.menu-grid img, /* works for your current markup */
  img.img {
  display: block;
  width: 60%; /* your desired size */
  height: auto; /* keep aspect ratio */
  margin: 0 auto; /* centers horizontally */
}


.button {
  font-weight: 800;
  border: none;
  color: rgb(255, 255, 255);
  padding: 0;
  text-decoration: none;
  display: inline-block;
  font-size: 28px;
  cursor: pointer;
}

.button-link {
  display: flex;
  justify-content: space-between; /* King → left, Ottawa → right */
  align-items: center;
  margin-top: 30px;
}

.button:hover {
  color: var(--hover-accent); /* optional accent hover color */
}

/* Responsive layout: stack buttons on small screens */
@media (max-width: 600px) {
  .button-row {
    flex-direction: column;
    gap: 20px;
  }
}

/* Image size */
img.img {
  width: 100%;
  max-width: 200px; 
  aspect-ratio: 1 / 1;
  object-fit: cover;                    /* fills the box, crops overflow */
  display: block;
  margin-inline: auto;                  /* center in the cell */
}

img.map {
  width: 400px;
  height: 400px;
}

/* Responsive Styles for Navbar */
@media (max-width: 768px) {
  /* Make navbar items stack on small screens */
  .navbar-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px; /* Adjust based on navbar height */
    left: 0;
    width: 100%;
    background: #111;
    padding: 20px;
  }

  .navbar-nav.show {
    display: flex;
  }

  .nav-item {
    margin: 10px 0;
    color: #fff;
  }

  .nav-item:hover {
    color: var(--hover-accent);
  }

}


/* about section */
/* About page layout */
.row{
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr)); /* two columns */
  gap: 32px 40px;
  align-items: start;
  column-gap: clamp(75px, 15vw, 200px);
}

/* Stack on small screens */
@media (max-width: 780px){
  .row{ grid-template-columns: 1fr; }
}

/* Headings for each location */
.column h2{
  margin: 0 0 6px;
  display: flex;
  justify-content: center; 
}
.column h4{
  margin: 4px 0 10px;
  text-transform: uppercase;
  letter-spacing: .03em;
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;

}

/* Hours list: two columns (day | time), no bullets */
.hours-list{
  list-style: none;               /* no bullets */
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: auto 1fr;/* day | time */
  column-gap: 16px;
  row-gap: 8px;
  align-items: baseline;
}

/* Let each <li> contribute its two spans to the grid */
.hours-list li{ display: contents; }

.hours-list li span:first-child{   /* day */
  font-weight: 600;
}

.hours-list li span:last-child{    /* time */
  color: var(--muted);
  justify-self: end;               /* align times to the right column edge */
}

.section-description {
  text-align: center;          /* centers the paragraph text */
  margin-top: 20px;            /* space between the h2 and this paragraph */
  margin-bottom: 30px;         /* space below it before the grid starts */
  line-height: 1.6;            /* improves readability */
  font-size: 16px;             /* optional: adjust text size */
  color: #ccc;                 /* optional: softens text tone */
}

/*----------------------------*/

.menu-list {
  list-style: none;
  padding: 0;
  margin: 30px auto;
  max-width: 700px;
}

.menu-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ddd;
  padding: 12px 0;
}

.item-info {
  display: flex;
  flex-direction: column;
  text-align: left;
  max-width: 85%;
}

.item-name {
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
}

.item-desc {
  font-size: 15px;
  color: #555;
  margin-top: 4px;
}

.item-price {
  font-weight: 700;
  font-size: 17px;
  white-space: nowrap;
}

/* Optional responsive adjustment */
@media (max-width: 600px) {
  .menu-list li {
    flex-direction: column;
    align-items: flex-start;
  }
  .item-price {
    margin-top: 6px;
  }
}

.section-title {
  text-align: center;
  margin-top: 60px;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 1px;
}

.section-description {
  text-align: center;
  margin: 15px auto 25px;
  line-height: 1.6;
  font-size: 16px;
  color: var(--muted);
  max-width: 700px;
}

.menu-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 40px;
  max-width: 750px;
}

.menu-list li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid #e0e0e0;
  padding: 12px 0;
}

.item-info {
  display: flex;
  flex-direction: column;
  max-width: 85%;
}

.item-name {
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
}

.item-desc {
  font-size: 15px;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.4;
}

.item-price {
  font-weight: 700;
  font-size: 17px;
  white-space: nowrap;
}

/* Mobile adjustment */
@media (max-width: 600px) {
  .menu-list li {
    flex-direction: column;
    align-items: flex-start;
  }
  .item-price {
    margin-top: 5px;
  }
}

/* phone */

.phone-buttons {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  flex-direction: column; /* stack on mobile */
  gap: 10px;
  z-index: 1200;
}

.phone-btn {
  background-color: #000;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  padding: 10px 20px;
  border-radius: 30px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: transform 0.2s ease, background-color 0.3s ease;
}

.phone-btn:hover {
  background-color: var(--hover-accent); /* accent color */
}

@media (min-width: 700px) {
  .phone-buttons {
    flex-direction: row; /* side-by-side on larger screens */
  }
}


