/* General Styles */
body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    color: #333;
    line-height: 1.6;
}

.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 */
.hero {
    background: #e31837; /* Updated to match givingback.css */
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.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;
}

/* Content Section */
.content {
    padding: 40px 20px;
    background-color: #f9f9f9;
}

.content p {
    font-size: 1.1em;
    margin-bottom: 20px;
}

.options {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.option {
    flex: 1;
    background-color: white;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.option h3 {
    color: #e31837;
    margin-bottom: 10px;
}

/* 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;
  }
}
