body {
  background-color: #ffffff;
  font-family: 'Rubik', sans-serif;
  color: #222;
  margin: 0;
  padding: 0;
}

.catering-wrapper {
  margin-top: 100px;
  text-align: center;
  padding: 40px 20px;
}

.catering-wrapper h1 {
  font-size: 3rem;
  color: #d9480f;
  margin-bottom: 10px;
}

.catering-wrapper h3 {
  font-size: 1.25rem;
  color: #2d6a4f;
  margin-bottom: 25px;
}

.catering-wrapper p {
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto 20px;
  line-height: 1.6;
}

.catering-buttons {
  margin-top: 25px;
}

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

.catering-buttons a:hover {
  background-color: #a73609;
}

.catering-image {
  margin-top: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.catering-image img {
  width: 100%;
  border-radius: 12px;
}

footer {
  margin-top: 50px;
  text-align: center;
  padding: 20px 0;
  font-size: 0.9rem;
  color: #888;
}

.community-header-box {
  background-color: #FFBD2B;
  height: 160px; /* ⬅️ Set fixed height */
  padding: 20px 20px;
  border-radius: 30px;
  max-width: 900px;
  margin: 100px auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center; /* ✅ Vertically centers content */
  align-items: center;
  gap: 10px; /* ⬅️ Controls spacing between lines */
}

.community-header .labels {
  margin-bottom: -10px;
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
}

.community-header h1 {
  margin-bottom: -70px;
  font-size: 4.5rem;
  font-weight: 900;
  color: white;
}

.community-header {
  text-align: center;
  margin-bottom: 60px;
}

.community-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 80px;
  flex-wrap: wrap;
}

.community-section.reverse {
  flex-direction: row-reverse;
}

.community-section .text {
  flex: 1;
  min-width: 300px;
}

.community-section .text h2 {
  font-size: 2.2rem;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.3;
}

.community-section .text .red {
  color: #e44d26;
}

.community-section .text .green {
  color: #379237;
}

.community-section .text .blue {
  color: #3750b2;
}

.community-section .text p {
  font-size: 2rem;
  line-height: 1.7;
  color: #333;
}

.community-section .text a {
  color: #2a75f3;
  text-decoration: underline;
}

.community-section .image {
  flex: 1;
  min-width: 300px;
}

.community-section .image img {
  width: 100%;
  max-width: 800px; /* ✅ Shrink image to a max width */
  max-height: 550px;
  border-radius: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.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;
}

.community-boxed-section {
  background-color: #FFBD2B;
  border-radius: 30px;
  padding: 50px;
  margin-bottom: 80px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.community-boxed-section.reverse {
  flex-direction: row-reverse;
}

.community-boxed-section .text {
  flex: 1;
  min-width: 300px;
}

.community-boxed-section .text h3 {
  font-size: 2rem; /* Larger top label */
  margin: 0 0 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.community-boxed-section .text h2 {
  font-size: 2rem;     /* ⬆️ Slightly larger */
  color: white;        /* ⬅️ White text */
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.4;
}

.community-boxed-section .text p {
  font-size: 1.4rem; /* ⬆️ Bigger */
  line-height: 1.8;
  color: white;      /* ⬅️ White text */
  font-weight: 500;
}

.community-boxed-section .text a {
  color: #2a75f3;
  text-decoration: underline;
}

.community-boxed-section .image {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

.community-boxed-section .image img {
  width: 100%;
  max-width: 500px;
  border-radius: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.red {
  color: #e44d26;
}
.green {
  color: #379237;
}
.blue {
  color: #3750b2;
}