/* Base Styles */
* {
  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: #fff;
  padding: 20px 0;
  border-bottom: 1px solid #ddd;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo-address {
  display: flex;
  align-items: center;
  gap: 20px;
}

.order-button {
  background-color: #c8102e;
  color: #fff !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: #b2132b;
}

.logo {
  height: 50px;
}
.location-text {
  font-size: 14px;
  color: #555;
}
.nav ul {
  margin: 0 auto; /* centers the nav list within its container */
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
}
.nav ul li {
  margin: 0 10px;
}
.nav ul li a {
  text-decoration: none;
  color: #e31837;  /* Set all menu links to red */
  font-weight: 600;
  transition: color 0.2s;
}
.nav ul li a:hover,
.nav ul li a:focus {
  color: #b2132b;  /* A slightly darker red on hover */
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('image1.jpeg') center 35%/cover no-repeat;
  /* 
    Use your correct image path. 
    Adjust '35%' up or down for best face framing (try 30%-40% as needed)
  */
  z-index: 1;
}

.hero::before {
  /* Overlay for better text readability */
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 2;
}

.employment-hero .hero-content {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh; /* Ensures vertical centering */
}

.hero-text {
  max-width: 650px;
  text-align: center;
  color: #fff;
  padding: 40px 32px;
  border-radius: 16px;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.18);
}

.hero-text p {
  margin-bottom: 15px;
  font-size: 1.2rem;
  color: #fff;
}

.btn-apply {
  display: inline-block;
  background: #e31837;
  color: #fff;
  padding: 12px 28px;
  text-decoration: none;
  margin-top: 15px;
  border-radius: 4px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background 0.2s;
}

.btn-apply:hover {
  background: #b2132b;
}

/* Placement for hero apply image + button */
.hero-apply {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
}

/* Remove this unless you actually use .hero-image img in your html */
.hero-image img {
  display: none;
}

/* Job Openings Section */
.job-openings {
  padding: 40px 0;
  background: #fff;
}
.job-openings h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2.25rem;
  color: #222;
}
.job-listing {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.job {
  background: #f1f1f1;
  padding: 20px;
  margin: 10px;
  border-radius: 8px;
  flex: 1 1 300px;
  max-width: 300px;
  text-align: center;
}
.job h3 {
  margin-bottom: 10px;
}
.job p {
  margin-bottom: 15px;
}
.job .btn-apply {
  background: #e31837;
  color: #fff;
  padding: 8px 15px;
  text-decoration: none;
  border-radius: 4px;
}

/* Core Values Section */
.core-values {
  background: #f4eee7;
  padding: 60px 0 30px 0;
  text-align: center;
}


.core-values h2 {
  font-size: 2.5rem;
  color: #11507b;
  margin-bottom: 36px;
  font-weight: 700;
}

.values-row {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.value {
  flex: 1 1 200px;
  max-width: 230px;
}

.value-icon {
  width: 90px;
  height: 90px;
  margin-bottom: 18px;
}

.values-row .value h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 18px;
}

.values-row .value p {
  font-size: 1.25rem;
  margin-top: 10px;
}

/* Our Pleasure Section */
.our-pleasure {
  background: #e31837;
  text-align: center;
  padding: 48px 0 32px 0;
}

.our-pleasure h2 {
  color: #fff;
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.our-pleasure .quote {
  font-weight: 500;
  font-style: italic;
}

.btn-pleasure {
  display: inline-block;
  background: #fff;
  color: #e31837;
  padding: 13px 32px;
  border-radius: 26px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.08rem;
  transition: background 0.15s, color 0.15s;
  border: none;
  margin-top: 12px;
}

.btn-pleasure:hover {
  background: #f7f7f7;
  color: #c9142d;
}

/* 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;
  }
}

