.order-online-btn2 
{
  background-color: #FFBD2B;
  color: white !important;
  padding: 15px 40px; 
  font-size: 15px;  
  border: 7px solid #FFBD2B;
  border-radius: 9999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.12s ease-in-out, box-shadow 0.12s ease-in-out;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: inline-block;
  line-height: 1;
}

header {
  background-color: #f27121; /* Bold orange */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 40px;
  z-index: 10000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.5s;
}

header .logo {
  color: #fff;
}

header .navigation li a {
  color: #fff;
}

header .navigation li {
  list-style: none;
  margin-left: 30px;
}

header .navigation li a {
  text-decoration: none;
  color: #fff;
  font-weight: 400;
}

.navigation a.active {
  color: #FFBD2B; /* or any highlight color */
  font-weight: bold;
}

body {
  background-image: url(../img/Background1.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}

.catering-box {
  background: rgb(255, 255, 255);
  padding: 40px 30px;
  border-radius: 20px;
  max-width: 800px;
  width: 90%;
  text-align: center;
  margin-top: 60px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.catering-box h3 {
  color: #2d6a4f;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.8px;
}

.catering-box h1 {
  color: #d9480f;
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.catering-box p {
  font-size: 1rem;
  color: #333;
  margin: 10px 0 20px;
  line-height: 1.6;
}

.button-row {
  margin: 20px 0;
}

.button-row a {
  display: inline-block;
  margin: 0 10px;
  background-color: #d9480f;
  color: #fff;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.button-row a:hover {
  background-color: #a83609;
}

.small-text {
  font-size: 1.5rem;
  color: #444;
}

.med-text {
  font-size: 4rem;
  color: #444;
}

.catering-section {
  max-width: 1000px;
  margin: 100px auto 0; /* Increased from 40px */
  padding: 30px 20px;
  border-radius: 28px;
  background-color: rgba(255, 255, 255, 0.92);
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.catering-box h3 {
  color: #2d6a4f;
  font-size: 2.5rem;         /* was 1.25rem */
  font-weight: 800;          /* added boldness */
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.catering-box h1 {
  color: #d9480f;
  font-size: 3.5rem;         /* was 2rem */
  font-weight: 900;
  margin-bottom: 1.2rem;
  letter-spacing: 0.5px;
}

.catering-box p {
  font-size: 1.15rem;        /* was 1rem */
  color: #333;
  margin: 10px 0 20px;
  font-weight: 500;          /* ⬅️ make slightly bolder */
  line-height: 1.7;
}

.cta-buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-buttons a {
    padding: 12px 26px;
    background-color: #e44d26;
    color: white;
    border-radius: 999px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.15);
    transition: background-color 0.2s ease;
}

.cta-buttons a:hover {
    background-color: #cc3d1f;
}

footer {
    margin-bottom: 40px;
    text-align: center;
    font-size: 0.9rem;
    padding: 20px 0;
    color: black !important;
    background-color: #ffffff00;
}

footer.site-footer {
      text-align: center;
      color: black;
      padding: 30px 0;
      font-size: 14px;
      background-color: white;
    }

.catering-hero {
  position: relative;
  margin-top: 140px;
  left: 50%;
  transform: translateX(-50%);
  width: 90vw;
  height: 110vh; /* ⬅️ Increase this value to show more of the background */
  max-height: none; /* Optional: allows it to exceed viewport */
  object-fit: cover;
  border-radius: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 1;
  background: url('../img/Background5.jpg');
  background-size: cover;
  background-position: center 50%;
  padding-top: 60px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}