/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  background-color: #f7f7f7;
  color: #333;
  line-height: 1.6;
}

/* 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;
}

/* Hero Section */
.hero {
  padding: 80px 0;
}

.hero-content {
  display: flex;
  flex-direction: row;    /* Side by side */
  align-items: center;    /* Vertically center */
  gap: 40px;              /* Space between text and image */
  flex-wrap: wrap;
}

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

.hero-text h1 {
  color: #c8102e;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero-text p {
  margin-bottom: 20px;
  font-size: 1rem;
}

.operator .name {
  color: #003087;
  font-weight: 700;
  font-size: 1.5rem;   /* Increased size */
}

.operator .title {
  text-transform: uppercase;
  font-size: 1.1rem;   /* Increased size */
  color: #555;
  font-weight: bold;
  letter-spacing: 0.5px;
}

/* Hero Image */
.hero-image img {
  max-width: 700px;   /* Increased from 400px */
  width: 100%;
  border-radius: 12px;
  display: block;
}

/* Lower Section */
.lower-section {
  background: #fff;
  padding: 48px 0;
  text-align: center;
}

.lower-section h2 {
  color: #c8102e;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.lower-section p {
  font-size: 1rem;
  color: #333;
  max-width: 800px;
  margin: 0 auto;
}

/* Catering Section */
.catering-section {
  background: #fff;
  padding: 60px 0;
}

.catering-content {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.catering-text {
  flex: 1 1 350px;
  min-width: 300px;
  text-align: left;
}

.catering-text h2 {
  color: #c8102e;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.1;
}

.catering-sub {
  color: #c8102e;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 18px;
}

.catering-details {
  color: #555;
  font-size: 1rem;
  margin-bottom: 28px;
}

.catering-btn {
  background: #c8102e;
  color: #fff;
  padding: 16px 40px;
  border-radius: 30px;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  margin-right: 18px;
  display: inline-block;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: background 0.2s;
}

.catering-btn:hover {
  background: #a60d23;
}

.catering-phone {
  font-size: 1.2rem;
  color: #c8102e;
  font-weight: 600;
}

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

/* Footer */
.footer-bottom {
  background: #fff;
  padding: 32px 8vw 20px 8vw;
  font-size: 1rem;
}

.footer-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 32px 60px;
  margin-bottom: 16px;
}

.footer-info div {
  min-width: 160px;
}

.footer-blue {
  color: #11507b;
  font-weight: 600;
  font-size: 1.15rem;
}

.footer-red {
  color: #e31837;
  font-weight: 600;
  font-size: 1.15rem;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-social img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.footer-links {
  text-align: center;
  margin-top: 10px;
  font-size: 1rem;
}

.footer-links a {
  margin: 0 12px;
  color: #11507b;
  text-decoration: none;
  font-weight: 600;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-copy {
  text-align: center;
  color: #555;
  font-size: 0.95rem;
  margin-top: 18px;
}

/* 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;
  }
}
