/* The rest of your existing CSS */
@import url("https://fonts.googleapis.com/css2?family=League+Spartan:wght@100..900&display=swap");

:root {
  --primary-color: #da4742;
  --secondary-color: #000000;
  --background-color: #ffffff;
  --text-color: #000000;
  --accent-color: #da4742;
}

body {
  font-family: "League Spartan", sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: var(--background-color);
  color: var(--text-color);
}

header {
  background-color: var(--secondary-color);
  color: white;
  text-align: center;
  position: relative;
  width: 100%;
}

.header-image {
  width: 100%;
  height: auto;
  max-width: none; /* Remove the max-width constraint */
}

nav {
  background-color: var(--primary-color);
  padding: 0.5rem;
  top: 0;
  z-index: 1000;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

nav ul {
  list-style-type: none;
  padding: 0;
  display: flex;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}
nav ul li {
  margin: 0 1rem;
}

nav ul li a {
  text-decoration: none;
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1rem;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: var(--secondary-color);
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

section {
  margin-bottom: 4rem;
  background-color: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

h2 {
  font-size: 2.5rem;
  border-bottom: 3px solid var(--accent-color);
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
  color: var(--secondary-color);
  font-weight: 700;
}

.menu-items,
.specialty-dogs {
  list-style-type: none;
  padding: 0;
}

.menu-items li,
.specialty-dogs li {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid #ddd;
}

.menu-items li:last-child,
.specialty-dogs li:last-child {
  border-bottom: none;
}

.specialty-dogs h3 {
  margin-bottom: 0.5rem; /* Add space between h3 and p */
}

.menu-image,
.build-your-own-image {
  max-width: 100%;
  height: auto;
  margin-top: 2rem;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.menu-image:hover,
.build-your-own-image:hover {
  transform: scale(1.02);
}

.toppings-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.toppings-column {
  flex: 1;
  min-width: 250px;
}

.toppings-column h3 {
  color: var(--secondary-color);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.toppings-column ul {
  padding-left: 1.2rem;
}

.toppings-column li {
  margin-bottom: 0.5rem;
  font-weight: 300;
}

#hours ul {
  list-style-type: none;
  padding: 0;
  font-size: 1.2rem;
}

#hours li {
  margin-bottom: 0.75rem;
  font-weight: 300;
}

footer {
  background-color: var(--secondary-color);
  color: white;
  text-align: center;
  padding: 2rem;
  margin-top: 2rem;
}

footer p {
  margin: 0.5rem 0;
  font-weight: 300;
}

#instagram-feed {
  text-align: center;
}

.instagram-embed {
  max-width: 540px;
  margin: 0 auto;
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.specialty-dogs h3 {
  margin-right: 1rem;
}

@media (max-width: 768px) {
  header h1 {
    font-size: 3rem;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
  }

  nav ul li {
    margin: 0.5rem 0;
  }

  .toppings-list {
    flex-direction: column;
  }

  section {
    padding: 1.5rem;
  }

  h2 {
    font-size: 2rem;
  }
}

@media (max-width: 540px) {
  .instagram-embed {
    width: 100%;
  }
}
