/* --- About Page Specific Styles --- */

/* About Hero */
.about-hero {
  height: 40vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(rgba(10, 9, 7, 0.75), rgba(10, 9, 7, 0.95)), url('../assets/about_restaurant.jpg');
  background-size: cover;
  background-position: center;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
  padding-top: var(--header-height);
}

.about-hero h1 {
  font-size: 54px;
  margin-bottom: 15px;
}

/* Story Section Overlaps */
.story-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.story-content h2 {
  font-size: 42px;
  margin-bottom: 24px;
}

.story-content p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.8;
}

.story-img-container {
  position: relative;
  border: 1px solid var(--border-color);
  padding: 15px;
  background-color: var(--bg-card);
  box-shadow: var(--glow-shadow-strong);
}

.story-img-container img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

/* Mission, Vision, Motto Cards */
.mvm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.mvm-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 45px 30px;
  text-align: center;
  transition: var(--transition-smooth);
}

.mvm-card:hover {
  border-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: var(--glow-shadow-strong);
}

.mvm-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin: 0 auto 24px;
  font-size: 20px;
  background-color: rgba(205, 162, 116, 0.03);
  transition: var(--transition-smooth);
}

.mvm-card:hover .mvm-icon {
  background-color: var(--primary);
  color: var(--bg-dark);
}

.mvm-card h3 {
  font-family: var(--font-heading);
  font-size: 26px;
  margin-bottom: 15px;
}

.mvm-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Core Values Timeline */
.values-wrapper {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding: 20px 0;
}

.values-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background-color: var(--border-color);
}

.value-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  position: relative;
}

.value-item:nth-child(even) {
  flex-direction: row-reverse;
}

.value-node {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--bg-dark);
  border: 3px solid var(--primary);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  box-shadow: var(--glow-shadow);
}

.value-content {
  width: 45%;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 30px;
  transition: var(--transition-smooth);
}

.value-content:hover {
  border-color: var(--primary);
  box-shadow: var(--glow-shadow);
}

.value-content h3 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
}

.value-content p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Chef Spotlight Section */
.chef-spotlight {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.chef-img-wrapper {
  border: 1px solid var(--border-color);
  padding: 15px;
  background-color: var(--bg-card);
  position: relative;
}

.chef-img-wrapper img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.chef-content h2 {
  font-size: 42px;
  margin-bottom: 6px;
}

.chef-title {
  color: var(--primary);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  display: block;
  margin-bottom: 24px;
}

.chef-content p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.chef-quote {
  font-style: italic;
  border-left: 2px solid var(--primary);
  padding-left: 20px;
  margin-left: 10px;
  color: var(--text-light);
  font-size: 16px;
}

/* --- Media Queries --- */
@media (max-width: 992px) {
  .story-wrapper,
  .chef-spotlight {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .story-img-container img,
  .chef-img-wrapper img {
    height: 350px;
  }
  .mvm-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .values-wrapper::before {
    left: 20px;
  }
  .value-node {
    left: 20px;
  }
  .value-item {
    flex-direction: row !important;
    justify-content: flex-start;
    padding-left: 45px;
  }
  .value-content {
    width: 100%;
  }
}
