html {
  height: 100%;
}
body {
  margin: 0 auto;
  padding: 0;
  padding-bottom: 0;
  background-color: #fff;
  overflow-x: hidden;
  height: 100%;
  max-width: 1600px;
}

/* --- Navbar Container --- */
.navbar {
  display: flex;
  justify-content: space-between; 
  align-items: center;
  background-color: #ffffff; 
  box-shadow: 2px 12px 4px 12px rgba(211, 5, 5, 0);
  padding: 0 30px;
  height: 80px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* --- Logo Styling --- */
.logo {
  font-weight: bold;
  background-size: contain;
  height: 100px;
}

/* --- Navigation Links --- */
.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li a {
  text-decoration: none;
  color: #555;
  padding: 20px 15px;
  display: block;
  font-size: 1rem;
  transition: color 0.3s, background-color 0.3s;
}

/* --- Hover Effect (The "Good Looking" part) --- */
.nav-links li a:hover:not(.cta) {
  color: #007bff; 
  background-color: #f0f0f0; 

  transition: background-color 0.2s ease-in-out;
}

/* --- Call to Action (CTA) Button Styling --- */
.cta {
  background-color: #007bff; 

  padding: 8px 15px !important;
  border-radius: 4px;
  margin-left: 15px;
  line-height: 1.5; 
  transition: background-color 0.3s;
}

.cta:hover {
  background-color: #0056b3;
}

/* --- Hamburger Icon (Hidden on Desktop) --- */
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #333;
}

#mainBanner {
  display: flex;
  justify-content: center; 
  align-items: center;
  height: 100vh;
  text-align: center;

  background-image: linear-gradient(rgba(0, 0, 0, 0.218), rgba(0, 0, 0, 0.265)),
    url("bjsplatelunchnov");

  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}

#greet {
  background-color: rgb(36, 153, 10, 0.7);

  border-radius: 20px;
  transform: translate(0, -40%);
}

#greet a {
  color: white;
}

h1 {
  color: white;
  font-size: 4vh;
  text-align: center;
  text-shadow: 2px 2px 4px black;
  padding-top: 10%;
  white-space: nowrap;
}

h2 {
  color: white;
  font-size: 3vh;
  text-align: center;
  position: relative;
}

p {
  text-align: center;
  color: white;
  padding-bottom: 30px;
  font-size: 2vh;
}

#phoneButton {
  font-size: 2vh;
  border: 2px solid white;

  border-radius: 22px;
  position: relative;
  margin: 0 auto;
  text-decoration: none;
}

#phoneButton:hover {
  background-color: black;
}

/* //doordash sec two */

.delivery {
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
  background-image: url("DoorDashLogo.png"), url("Bjspoorboys.jpg");
  background-repeat: no-repeat;
  background-attachment: scroll, fixed;

  height: 100%;
  background-position: center center;
  background-size: 30%, cover;
}

#orderNowButton {
}

#doorDash {
  color: white;
  text-shadow: 2px 4px 4px black;
  font-size: 5vw;
  background-color: green;
  padding: 17px;

  animation: fade-in linear both;
  animation-timeline: view();
  animation-range: entry 30% cover 60%; 
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

#orderNowButton {
  display: block;
  margin: 0 auto;
  height: 50px;
  border-radius: 42px;
  border: 2px solid black;
  padding: 12px;
  align-items: center;
}

#orderNowButton:hover {
  opacity: 0.8;

  cursor: pointer;
}

/* // section three plate lunches */

.plate-lunch-container {
  display: flex;
  background-color: rgb(255, 255, 255);
  margin-bottom: 14px;
  height: 500px;
  align-items: center;
  text-align: center;
}
/* --- 1. The Main Card Container --- */
.responsive-card {
  display: flex; 
  flex-direction: row; 
  max-width: 100%;
  height: 450px;
  margin: 30px auto; 
  background-color: #c9d1c8;
 overflow: hidden;
  box-shadow: 2px 2px 10px rgba(1, 0, 0, 0.8);
}

.responsive-card:hover {
  transform: rotatex(10deg);
  box-shadow: 0 12px 10px rgba(1, 0, 0, 0.8);
}

/* --- 2. Image Placeholder Styling --- */
.card-image-placeholder {
  flex: 0 0 50%; 
  background-color: #d1e7dd;
  min-height: 200px; 
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: italic;
  color: #0c663b;
  background-image: url("bjs plate lunch 12");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* --- 3. Content Area Styling --- */
.card-content {
  flex: 1; 
  padding: 30px;
}

.card-content h3 {
  font-size: 22pt;
  color: #000000;
  margin-top: 0;
  border-bottom: 2px solid #3498db;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.card-content p {
  color: rgb(0, 0, 0);
  font-size: 2vh;
}

.catering {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.feature-card {
  /* Layout & Box Model */
  width: 1000px;
  height: 300px;
  padding: 30px;
  margin: 2px;

  /* Appearance */
  background-color: #ffffff; 
  background-image: linear-gradient(#0000005d, rgba(0, 0, 0, 0.463)),
    url("bjscatering");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 12px; 
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0; 
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Heading Styling */
.feature-card h2 {
  color: #ffffff;
  background-color: rgb(0, 0, 0, 0.7);
  padding: 10px;
  border-radius: 10px;

  text-shadow: 0 2px 2px black;
  font-size: 24px;
  margin-top: 0;
  margin-bottom: 10px;
}

/* Paragraph Text Styling */
.feature-card h3 {
  color: #ffffff;

  font-size: 14pt;
  line-height: 1.6;
  margin: 40px;
  padding: 20px;
}

/* Call-to-Action Button Styling */
.cta-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #007bff; 
  color: white;
  text-decoration: none; 
  border-radius: 6px;
  font-weight: bold;

  /* Transition for hover effect */
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #0056b3; 
}

/* menu page */

#logo {
  height: 200px;
  width: auto;
  display: block;
  margin: 0 auto;
}

#menuBanner a {
  color: white;
}

#menu {
  display: block;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0px 2px 8px black;
  border-radius: 5px;
}

#menuPage {
  color: white;
  background-color: black;
  padding: 10px;
}

footer {
  text-align: center;
  background-color: green;
  color: rgb(255, 255, 255);
  padding: 10px;
  margin-top: 20px;
  justify-content: center;
  flex: 1;
}

#footer-header {
  padding: 20px;
  line-height: 1;
}
.footer-column {
  flex: 1; 
  min-width: 250px; 
  margin-bottom: 10px;
  list-style-type: none;
}

ul {
  list-style: none;
}

a:link {
  text-decoration: none;
  color: white;
}

footer a:visited {
  color: rgb(255, 255, 255);
}

footer a:hover {
  color: blue;
  text-decoration: underline;
}

.copyright {
  font-size: 10px;
}

@media (max-width: 1000px) {
  .body {
    margin: 0 auto;
    max-width: 1000px;
  }
}

@media only screen and (max-width: 768px) {
  .hamburger {
    display: block; /* Show the hamburger icon */
  }

  .nav-links {
    display: none; 
    flex-direction: column; 
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding-bottom: 10px;
  }

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

  .nav-links li {
    text-align: center;
    width: 100%;
  }

  .nav-links li a {
    padding: 12px 0; 
    border-bottom: 1px solid #eee;
  }

  .nav-links li:last-child a {
    border-bottom: none;
  }

  .cta {
    margin: 10px auto;
    width: 80%;
    text-align: center;
  }
}

#mainBanner {
  background-attachment: scroll;
}
#greet {
  position: relative;
  margin-top: 20%;
  margin-left: 0px;
  margin-right: 0px;
  padding-right: 65px;
  padding-left: 65px;
  padding-bottom: 50px;
}
.responsive-card {
  height: 400px;
}
.card-content p {
  font-size: 16pt;
}

@media only screen and (max-width: 480px) {


  #mainBanner {
    background-attachment: scroll;
    height: auto;
    background-size: cover;
  }
  #greet {
    transform: translate(-0%, -7%);
  }

  h1 {
    font-size: 5vh;
    text-align: center;
    align-items: center;
    top: 0%;
    left: 20%;
  }

  h2 {
    font-size: 3vh;
  }
  p {
    text-align: center;
    padding-bottom: 20px;
    color: white;
  }

  .delivery {
    background-attachment: scroll;
  }

  #orderNowButton {
    margin-top: 90%;
  }
  .plate-lunch-container {
    height: 600px;
  }
  .responsive-card {

    flex-direction: column;
    margin: 15px; 
    height: 500px;
  }

  .card-image-placeholder {
    flex: 1 1 auto;
    height: 3vh;
  }

  .card-content p {
    font-size: 4vw;
  }
  .feature-card {
    height: 500px;
  }
}
