/* ==================== FOOTER STYLES ==================== */

/* 1. Overall Footer Container */
.footer {
  background-color: #e20a16;  /* Dukes Slice House red */
  color: #ffffff;
  padding: 5rem 1rem 2rem 1rem;
  text-align: center;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
/* Add a single, full‐width stripe 20px down */
.footer::before {
  content: "";
  position: absolute;
  z-index: 100;
  top: 10px;    /* push it 20px down from the top edge */
  left: 0;
  width: 100%;
  /* 
    Let the browser size the SVG’s height automatically.
    If you know the exact SVG height (e.g. 40px), you can set height: 40px; 
    and background-size: contain; instead.
  */
  height: 40px;
  /* 
    Point to your checker SVG. 
    Make sure this relative path is correct from wherever your CSS file lives.
  */
  background: url("../images/white-checker.svg") no-repeat center;
  background-size: 100% auto;
}
/* 2. Top Navigation Links */
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.footer-nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: opacity 0.2s ease;
}

.footer-nav a:hover {
  opacity: 0.8;
}

/* 3. Buttons Row */
.footer-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.btn-outline-footer {
  display: inline-block;
  padding: 0.75rem 2.5rem;
  border: 2px solid #ffffff;
  border-radius: 50px;
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.btn-outline-footer:hover {
  background-color: #ffffff;
  color: #e20a16;
}

/* 4. Logo Section */
.footer-logo {
  margin-bottom: 2rem;
  width: 100%;
}

/* Make the logo 90% of the screen width */
.footer-logo img {
  width: 90%;
  max-width: none;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* 5. Bottom Row: Copyright & Privacy */
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
}

.footer-bottom span {
  color: #ffffff;
}

.footer-privacy {
  color: #ffffff;
  text-decoration: underline;
  font-size: 0.85rem;
  transition: opacity 0.2s ease;
}

.footer-privacy:hover {
  opacity: 0.8;
}

/* 6. Responsive Adjustments */
@media (max-width: 767px) {
  .footer-nav {
    gap: 1rem;
  }
  .footer-nav a {
    font-size: 0.9rem;
  }
  .btn-outline-footer {
    padding: 0.6rem 2rem;
    font-size: 0.95rem;
  }
  .footer-logo img {
    /* You can reduce to 80% on small screens if desired */
    width: 80%;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
  }
}
