/* About */
.about {
  background-color: var(--surface-color);
  position: relative;
}

.about .about-image {
  position: relative;
}

.about .about-image img {
  border-radius: 12px;
  box-shadow: 0 10px 30px
    color-mix(in srgb, var(--default-color), transparent 85%);
}

.about .about-image .experience-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(
    135deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), var(--heading-color) 20%)
  );
  color: var(--contrast-color);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 25px
    color-mix(in srgb, var(--accent-color), transparent 60%);
}

.about .about-image .experience-badge .years {
  display: block;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
}

.about .about-image .experience-badge .text {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about .about-content {
  padding-left: 40px;
}

@media (max-width: 992px) {
  .about .about-content {
    padding-left: 0;
    margin-top: 40px;
  }
}

.about .about-content .section-header {
  margin-bottom: 30px;
}

.about .about-content .section-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.about .about-content .section-header .subtitle {
  font-size: 18px;
  color: var(--accent-color);
  font-weight: 500;
  margin-bottom: 0;
}

.about .about-content .story-text {
  margin-bottom: 30px;
}

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

.about .about-content .story-text p:last-child {
  margin-bottom: 0;
}

.about .about-content .chef-highlights {
  margin-bottom: 30px;
}

.about .about-content .chef-highlights .highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 0;
}

.about .about-content .chef-highlights .highlight-item i {
  font-size: 20px;
  color: var(--accent-color);
  width: 24px;
}

.about .about-content .chef-highlights .highlight-item span {
  font-weight: 600;
  color: var(--heading-color);
}

.about .about-content .chef-quote {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  padding: 25px;
  border-radius: 12px;
  border-left: 4px solid var(--accent-color);
  margin-bottom: 40px;
}

.about .about-content .chef-quote blockquote {
  font-style: italic;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 10px;
  color: var(--default-color);
}

.about .about-content .chef-quote cite {
  font-weight: 600;
  color: var(--heading-color);
  font-style: normal;
}

.about .about-content .cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.about .about-content .cta-buttons .btn {
  padding: 12px 30px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.about .about-content .cta-buttons .btn.btn-primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.about .about-content .cta-buttons .btn.btn-primary:hover {
  background-color: color-mix(
    in srgb,
    var(--accent-color),
    var(--default-color) 15%
  );
  transform: translateY(-2px);
}

.about .about-content .cta-buttons .btn.btn-outline {
  background-color: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about .about-content .cta-buttons .btn.btn-outline:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.about .restaurant-gallery {
  margin-top: 80px;
}

.about .restaurant-gallery .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 25px
    color-mix(in srgb, var(--default-color), transparent 90%);
  transition: transform 0.3s ease;
}

.about .restaurant-gallery .gallery-item:hover {
  transform: translateY(-5px);
}

.about .restaurant-gallery .gallery-item:hover .gallery-caption {
  transform: translateY(0);
  opacity: 1;
}

.about .restaurant-gallery .gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.about .restaurant-gallery .gallery-item .gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    transparent,
    color-mix(in srgb, var(--default-color), transparent 20%)
  );
  color: var(--contrast-color);
  padding: 30px 20px 20px;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease;
}

.about .restaurant-gallery .gallery-item .gallery-caption h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--contrast-color);
}

.about .restaurant-gallery .gallery-item .gallery-caption p {
  font-size: 14px;
  margin-bottom: 0;
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
}

@media (max-width: 768px) {
  .about .about-content .section-header h2 {
    font-size: 28px;
  }

  .about .about-content .section-header .subtitle {
    font-size: 16px;
  }

  .about .about-content .cta-buttons .btn {
    flex: 1;
    text-align: center;
    min-width: 140px;
  }

  .about .restaurant-gallery {
    margin-top: 60px;
  }

  .about .restaurant-gallery .gallery-item {
    margin-bottom: 20px;
  }

  .about .restaurant-gallery .gallery-item img {
    height: 220px;
  }
}
