/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
  background: #f7f7f7;
  color: #333;
}

/* Containers */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.header {
  background-color: white;
  border-bottom: 1px solid #eee;
  padding: 20px 0;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-address {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo {
  height: 50px;
}

.location-text {
  font-size: 0.95rem;
  color: #333;
}

/* Navigation */
.nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav a {
  text-decoration: none;
  font-weight: 600;
  color: #c8102e;
  transition: 0.3s ease;
}

.nav a:hover {
  text-decoration: underline;
}

.order-button {
  background-color: #c8102e;
  color: white !important;
  padding: 10px 18px;
  border-radius: 30px;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: inline-block;
  transition: background 0.3s ease;
}

.order-button:hover {
  background-color: #a00d28;
}

/* Hero Section */
.givingback-hero {
  background: #e31837;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

.givingback-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.givingback-hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-hero {
  background: #fff;
  color: #e31837;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-hero:hover {
  background: #f7f7f7;
}

/* Social Responsibility Section */
.social-responsibility {
  background: #fff;
  padding: 60px 20px;
  text-align: center;
}

.social-responsibility h2 {
  font-size: 2rem;
  color: #11507b;
  margin-bottom: 20px;
}

.social-responsibility p {
  font-size: 1.1rem;
  color: #333;
  margin: 0 auto 40px auto;
  max-width: 800px;
  line-height: 1.6;
}

.pillars {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 1000px;
}

.pillar {
  text-align: center;
  max-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pillar img {
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
  object-fit: contain;
}

.pillar h3 {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.4;
  margin: 0;
}

/* Giving Philosophy Section */
.giving-philosophy {
  background: #f7f7f7;
  padding: 0;
  text-align: center;
  margin-top: -150px; /* Move the entire section up */
}

.philosophy-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  margin-bottom: 0;
}

.philosophy-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  margin-bottom: 40px; /* Add space below the image */
}

.philosophy-content {
  background: #fff;
  padding: 100px 20px 80px 20px; /* Adjust top padding for more space */
  text-align: center;
  width: 100%;
}

.giving-philosophy h2 {
  font-size: 2.2rem;
  color: #11507b;
  margin-bottom: 40px;
  font-weight: 600;
  text-align: center;
}

.giving-philosophy p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 700px;
  text-align: center;
}

/* Footer Section */
.footer-bottom {
  background: #f7f7f7;
  padding: 32px 8vw 20px 8vw;
  font-size: 1rem;
}

.footer-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px 60px;
  margin-bottom: 16px;
}

.footer-info div {
  min-width: 160px;
}

.footer-blue {
  color: #11507b;
  font-weight: 600;
}

.footer-red {
  color: #e31837;
  font-weight: 600;
}

.footer-social {
  margin: 10px 0;
}

.footer-social a {
  margin: 0 5px;
}

.footer-social img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.footer-links {
  text-align: center;
  margin-top: 10px;
  font-size: 0.98rem;
}

.footer-links a {
  color: #888;
  margin: 0 10px;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* Mobile Styles - Up to 768px (Tablets & Phones) */
@media (max-width: 768px) {

  /* Navigation becomes stacked */
  .nav ul {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  /* Hero Section stacks text & image */
  .hero-content,
  .catering-content,
  .job-listing,
  .values-row,
  .pillars,
  .options {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* Reduce hero text size */
  .hero-text h1,
  .catering-text h2,
  .givingback-hero h1 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  /* Images shrink to fit */
  img {
    max-width: 100%;
    height: auto;
  }

  /* Footer stacks vertically */
  .footer-info {
    flex-direction: column;
    text-align: center;
  }
}

/* Small Phones - Up to 480px */
@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 1.6rem;
  }
  .catering-text h2 {
    font-size: 1.8rem;
  }
  .order-button,
  .catering-btn {
    padding: 10px 20px;
    font-size: 1rem;
  }
}
