/* Restaurant Page Specific Styles */

/* Breadcrumb */
.breadcrumb {
  font-size: 0.85rem;
  color: var(--text-sub);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb a {
  color: var(--text-sub);
  transition: color 0.2s ease;
}

.breadcrumb a:hover {
  color: var(--accent-gold);
}

.breadcrumb-separator {
  color: var(--text-sub);
  opacity: 0.5;
}

/* Restaurant Hero */
.restaurant-hero {
  background: linear-gradient(135deg, rgba(255,192,203,0.85), rgba(152,216,200,0.75)),
              url('../../assets/images/foodhero.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0 60px;
  position: relative;
}

.restaurant-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: #ffffff;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.restaurant-hero .hero-lead {
  font-size: 1.1rem;
  color: #ffffff;
  max-width: 600px;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.25);
}

.restaurant-hero .breadcrumb a,
.restaurant-hero .breadcrumb-separator,
.restaurant-hero .breadcrumb span {
  color: rgba(255,255,255,0.9);
  text-shadow: 1px 1px 4px rgba(0,0,0,0.2);
}

/* Introduction Section */
.intro-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.intro-content p {
  text-align: left;
  line-height: 1.9;
  margin-bottom: 16px;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header .section-title {
  font-size: 2rem;
  margin-bottom: 8px;
}

.section-header .section-subtitle {
  font-size: 1rem;
  color: var(--text-sub);
}

/* Brand Grid */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.brand-card {
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255,145,175,0.08);
}

.brand-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(255,145,175,0.2);
  border-color: var(--accent-gold-soft);
}

.brand-header {
  padding: 24px 24px 16px;
  background: linear-gradient(135deg, rgba(255,183,197,0.1), rgba(152,216,200,0.1));
  border-bottom: 1px solid var(--border-soft);
}

.brand-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-gold-soft);
  margin-bottom: 8px;
  font-weight: 600;
}

.brand-header h3 {
  font-size: 1.4rem;
  margin: 0;
  color: var(--text-main);
}

.brand-content {
  padding: 24px;
}

.brand-content p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-sub);
  margin-bottom: 20px;
}

.brand-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  background: rgba(255,192,203,0.05);
  border-radius: 8px;
  border: 1px solid rgba(255,183,197,0.15);
}

.feature-label {
  font-size: 0.8rem;
  color: var(--text-sub);
  font-weight: 600;
}

.feature-value {
  font-size: 0.85rem;
  color: var(--text-main);
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.service-card {
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 32px 24px;
  transition: all 0.3s ease;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(255,145,175,0.2);
  border-color: var(--accent-gold-soft);
}

.service-icon-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--accent-matcha), var(--accent-gold));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-icon svg {
  width: 32px;
  height: 32px;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--text-main);
}

.service-card p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-sub);
}

/* Features List */
.features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.feature-box {
  padding: 20px;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.feature-box:hover {
  background: rgba(255,255,255,0.95);
  border-color: var(--accent-gold-soft);
  box-shadow: 0 4px 16px rgba(255,145,175,0.15);
}

.feature-box h4 {
  font-size: 1rem;
  margin: 0 0 8px 0;
  color: var(--text-main);
}

.feature-box p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-sub);
  margin: 0;
}

/* Target Grid */
.target-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.target-card {
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 28px 24px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.target-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent-matcha), var(--accent-gold));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s ease;
}

.target-card:hover::before {
  transform: scaleY(1);
}

.target-card:hover {
  transform: translateX(4px);
  box-shadow: 0 8px 24px rgba(255,145,175,0.2);
}

.target-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--text-main);
}

.target-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-sub);
  margin: 0;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, rgba(255,192,203,0.15), rgba(152,216,200,0.15));
  padding: 80px 0;
}

.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--text-main);
}

.cta-content p {
  font-size: 1rem;
  color: var(--text-sub);
  line-height: 1.8;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
  .restaurant-hero h1 {
    font-size: 1.8rem;
  }

  .restaurant-hero .hero-lead {
    font-size: 1rem;
  }

  .brand-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .features-list {
    grid-template-columns: 1fr;
  }

  .target-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-buttons .btn {
    width: 100%;
    justify-content: center;
  }
}

