/* Custom Subpage Enhancement Styles */
.subpage-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
  padding: 100px 0 80px;
  text-align: center;
  overflow: hidden;
}

.subpage-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, rgba(20, 17, 16, 0.82) 0%, rgba(20, 17, 16, 0.92) 100%);
  z-index: 1;
}

.subpage-hero .container {
  position: relative;
  z-index: 2;
}

.subpage-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(238, 37, 43, 0.2);
  border: 1px solid #EE252B;
  color: #f0428a;
  padding: 6px 18px;
  border-radius: 50px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.subpage-hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 3.8rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 12px;
}

.subpage-hero p.hero-subtitle {
  font-family: var(--font-script);
  font-size: 2.2rem;
  color: #f0428a;
  margin: 0 auto 24px;
  max-width: 750px;
}

.subpage-hero p.hero-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Menu Top Navigation Bar - Absolute Top Position directly under Header */
.menu-top-nav-bar {
  background: #ffffff;
  border-bottom: 2px solid rgba(0,0,0,0.06);
  padding: 14px 0;
  position: relative;
  top: 0;
  z-index: 99;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.menu-top-nav-inner {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.menu-top-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 6px;
  background: #2a2421;
  color: #ffffff;
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.menu-top-nav-link:hover {
  background: #A31E22;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(163, 30, 34, 0.3);
}

/* Section Divider Header */
.section-headline-block {
  text-align: center;
  margin-bottom: 50px;
}

.section-headline-block h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: #222222;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.section-headline-block p.subtitle {
  font-family: var(--font-script);
  font-size: 1.8rem;
  color: #f0428a;
}

/* 1. Horizontal Split Card Layout (Menu / Feature Variant) */
.menu-horizontal-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.06);
  margin-bottom: 35px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-horizontal-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(163, 30, 34, 0.12);
}

.menu-horizontal-card.reverse {
  grid-template-columns: 1fr 1fr;
}

.menu-horizontal-card.reverse .card-img-wrap {
  order: 2;
}

.card-img-wrap {
  position: relative;
  min-height: 320px;
  overflow: hidden;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.menu-horizontal-card:hover .card-img-wrap img {
  transform: scale(1.05);
}

.card-content-wrap {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-content-wrap h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #222222;
  margin-bottom: 12px;
  line-height: 1.15;
}

.card-content-wrap p {
  color: #555555;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 25px;
}

.card-footer-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  border-top: 1px solid #f0f0f0;
  padding-top: 20px;
}

.price-tag-big {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: #A31E22;
}

/* 2. Standard Vertical Card Grid (3 Columns) */
.interactive-feature-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.interactive-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(163, 30, 34, 0.12);
}

.card-img-top {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.card-img-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.interactive-feature-card:hover .card-img-top img {
  transform: scale(1.06);
}

.card-body-content {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* 3. Compact List Card Layout (For Sides & Desserts) */
.compact-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.compact-menu-item {
  background: #ffffff;
  border-radius: 10px;
  padding: 24px;
  display: flex;
  gap: 20px;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
  border-left: 4px solid #A31E22;
  transition: transform 0.2s ease;
}

.compact-menu-item:hover {
  transform: translateX(5px);
}

.compact-img-thumb {
  width: 90px;
  height: 90px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.compact-info {
  flex: 1;
}

.compact-info h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 6px;
}

.compact-info p {
  font-size: 0.92rem;
  color: #666;
  line-height: 1.5;
  margin-bottom: 8px;
}

.compact-price {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: #f0428a;
}

/* Timeline & Steps */
.process-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step-box {
  background: #ffffff;
  padding: 30px 24px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  position: relative;
  border-top: 4px solid #EE252B;
}

.step-number {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(163, 30, 34, 0.2);
  position: absolute;
  top: 15px;
  right: 20px;
  line-height: 1;
}

.step-box h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #222222;
  margin-bottom: 10px;
}

.step-box p {
  font-size: 0.92rem;
  color: #666;
  line-height: 1.6;
}

/* Stat Counters Block */
.stats-banner {
  background: #1a1716;
  color: #ffffff;
  padding: 60px 0;
  margin: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-number {
  font-family: 'Oswald', sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  color: #f0428a;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* 4. Split Hero Layout */
.hero-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-split-text {
  text-align: left;
}

.hero-split-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
  border: 2px solid rgba(255,255,255,0.1);
}

.hero-split-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

/* 5. Pricing Tiers Grid */
.pricing-tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}

.pricing-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 35px 30px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(163, 30, 34, 0.15);
}

.pricing-card.featured {
  border: 2px solid #A31E22;
  box-shadow: 0 12px 35px rgba(163, 30, 34, 0.18);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  right: 25px;
  background: #A31E22;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 14px;
  border-radius: 20px;
  text-transform: uppercase;
}

.pricing-header h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: #222;
  margin-bottom: 8px;
}

.pricing-price {
  font-family: 'Oswald', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: #A31E22;
  margin-bottom: 20px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  flex: 1;
}

.pricing-features li {
  font-size: 0.95rem;
  color: #555;
  padding: 10px 0;
  border-bottom: 1px dashed #eee;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li i {
  color: #2e7d32;
}

/* 6. Location Detail Cards (2 Columns Map + Detail Split) */
.location-split-card {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.06);
  margin-bottom: 30px;
}

.location-img-wrap {
  position: relative;
  min-height: 280px;
}

.location-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-info-body {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.location-info-body h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: #222;
  margin-bottom: 10px;
}

.location-meta-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.location-meta-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.98rem;
  color: #444;
}

.location-meta-item i {
  color: #A31E22;
  font-size: 1.1rem;
  margin-top: 3px;
}

/* 7. Event Horizontal Timeline Row Layout */
.event-timeline-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.event-row-card {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  border: 1px solid #eee;
  align-items: center;
  transition: transform 0.2s ease;
}

.event-row-card:hover {
  transform: translateX(6px);
  border-left: 4px solid #A31E22;
}

.event-date-badge {
  background: #1a1716;
  color: #ffffff;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
}

.event-date-badge .month {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  text-transform: uppercase;
  color: #f0428a;
  letter-spacing: 1px;
}

.event-date-badge .day {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.event-details-content {
  padding: 20px 25px;
}

.event-details-content h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 6px;
}

.event-details-content p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 0;
}

.event-action-wrap {
  padding: 20px 25px;
}

/* 8. Job Listing Row Layout */
.job-listing-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.job-row-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 24px 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
  border: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s ease;
}

.job-row-card:hover {
  box-shadow: 0 8px 25px rgba(163,30,34,0.1);
  border-color: #A31E22;
}

.job-info h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 6px;
}

.job-pills {
  display: flex;
  gap: 10px;
  align-items: center;
}

.job-pill {
  font-size: 0.82rem;
  padding: 3px 10px;
  border-radius: 4px;
  background: #f4f4f4;
  color: #555;
  font-weight: 600;
}

.job-pill.highlight {
  background: rgba(163, 30, 34, 0.1);
  color: #A31E22;
}

@media (max-width: 992px) {
  .hero-split-grid,
  .location-split-card {
    grid-template-columns: 1fr;
  }
  .pricing-tiers-grid {
    grid-template-columns: 1fr;
  }
  .event-row-card {
    grid-template-columns: 1fr;
  }
  .event-date-badge {
    padding: 12px;
    flex-direction: row;
    gap: 10px;
  }
  .job-row-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

@media (max-width: 576px) {
  .process-steps-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .subpage-hero h1 {
    font-size: 2.6rem;
  }
}
