body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff;
  color: #222;
}

.header {
  background: #3c2b1c;
  color: white;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: bold;
  font-size: 1.2rem;
}

.navbar a {
  color: white;
  margin: 0 0.5rem;
  text-decoration: none;
}

.navbar a.active {
  border-bottom: 2px solid #f97316;
}

.franchise-btn {
  background-color: #f97316;
  border: none;
  padding: 0.5rem 1rem;
  color: white;
  cursor: pointer;
  border-radius: 5px;
}

main {
  padding: 2rem;
}

.about-section h1 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.about-section h2 {
  color: #e87700;
}

blockquote {
  margin: 2rem 0;
  font-weight: bold;
  font-size: 1.1rem;
  text-align: center;
  color: #4a4a4a;
}

.founders-section,
.team-section,
.outlets-section {
  margin-top: 3rem;
}

.founders-section .highlight {
  color: #e0b400;
  font-weight: bold;
}

.team-members {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.team-members div {
  text-align: center;
  max-width: 200px;
}

.photo-placeholder {
  width: 100%;
  height: 200px;
  background-color: #ddd;
  margin-bottom: 1rem;
}

.outlets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

footer {
  background: #1a1a1a;
  color: #ccc;
  text-align: center;
  padding: 1rem;
}
/* ================= JOIN US SECTION ================= */

.join-us-section {
  padding: 3rem 0;
  background: #fdf3e3;
}

.join-us-container {
  width: 90%;
  margin: auto;
  display: flex;
  gap: 2rem;
}

/* LEFT SIDE */
.join-left {
  flex: 1;
  
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
}

.join-stats {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.join-stat span {
  font-size: 0.75rem;
  font-weight: 600;
  color: #333;
}

.join-stat h3 {
  margin-top: 0.4rem;
  background: #000;
  color: #fff;
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
  font-size: 1rem;
  display: inline-block;
}

.join-left h1 {
  font-size: 2.4rem;
  margin-top: 1rem;
  color: #4b2e1a;
}

.join-left p {
  color: #4b2e1a;
  margin-bottom: 1.2rem;
}

.join-image {
  width: 100%;
  max-width: 380px;
  margin: auto;
}

/* RIGHT SIDE */
.join-right {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.join-card {
  background: #5b2a16;
  color: #fff;
  padding: 0.5rem;
  border-radius: 18px;
}

.join-card h3 {
  margin: 0.8rem 0 0.5rem;
}

.join-card p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.join-icon {
  width: 46px;
  height: 46px;
  background: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .join-us-container {
    flex-direction: column;
  }

  .join-right {
    grid-template-columns: 1fr;
  }
}
