/* For Restaurants Page Specific Styles */
/* Import the main theme */
@import url('styles.css');

/* Restaurant Hero Section */
.restaurant-hero {
  height: 40vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
  margin-top: 70px;
}

.restaurant-hero .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  z-index: -2;
}

.restaurant-hero .hero-background::before {
 content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(images/order-main.jpg);
    background-size: cover;
    background-position: center;
    /* opacity: 0.3; */
    z-index: -1;
    filter: blur(5px);
    transform: scale(1.05);
}

.restaurant-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(218, 55, 67, 0.8); */
  z-index: -1;
}

.restaurant-hero .hero-content {
  z-index: 1;
  animation: fadeInUp 1s ease-out;
  max-width: 1000px;
  padding: 0 2rem;
}

.restaurant-hero h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, #ffffff, #f8f9fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.restaurant-hero p {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  margin-bottom: 3rem;
  opacity: 0.95;
  font-weight: 400;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.hero-stats .stat {
  text-align: center;
}

.hero-stats .stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  font-family: "Playfair Display", serif;
  margin-bottom: 0.5rem;
}

.hero-stats .stat-label {
  font-size: 1rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

/* Benefits Section */
.benefits-section {
  padding: 1rem 0;
  background: var(--bg-light);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.section-header p {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
}

.benefit-card {
  background: white;
  padding: 3rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-heavy);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-medium);
}

.benefit-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.benefit-card p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.benefit-card ul {
  list-style: none;
  padding: 0;
}

.benefit-card ul li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--text-light);
}

.benefit-card ul li::before {
  content: "✓";
  color: var(--secondary-color);
  font-weight: bold;
  font-size: 1.1rem;
}

/* How It Works for Restaurants */
.how-it-works-restaurants {
  padding: 6rem 0;
  background: white;
}

.steps-timeline {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin-top: 4rem;
  position: relative;
}

.steps-timeline::before {
  content: "";
  position: absolute;
  left: 50px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gradient-primary);
  opacity: 0.3;
}

.step-item {
  display: flex;
  gap: 3rem;
  align-items: center;
  position: relative;
}

.step-number {
  width: 100px;
  height: 100px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2.5rem;
  font-weight: 800;
  font-family: "Playfair Display", serif;
  box-shadow: var(--shadow-medium);
  flex-shrink: 0;
  z-index: 1;
}

.step-content {
  flex: 1;
  background: var(--bg-light);
  padding: 3rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-light);
}

.step-content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.step-content p {
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.7;
  font-size: 1.1rem;
}

.step-features {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.feature-tag {
  background: var(--primary-color);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Success Stories */
.success-stories {
  padding: 6rem 0;
  background: var(--bg-light);
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.story-card {
  background: white;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
}

.story-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-heavy);
}

.story-image {
  height: 250px;
  overflow: hidden;
}

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

.story-card:hover .story-image img {
  transform: scale(1.1);
}

.story-content {
  padding: 3rem;
}

.story-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.story-stats .stat {
  text-align: center;
}

.story-stats .stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  font-family: "Playfair Display", serif;
  margin-bottom: 0.5rem;
}

.story-stats .stat-label {
  font-size: 0.9rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.story-content h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.story-content p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 2rem;
  font-style: italic;
}

.story-author strong {
  color: var(--text-dark);
  display: block;
  margin-bottom: 0.25rem;
}

.story-author span {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Pricing Section */
.pricing-section {
  padding: 6rem 0;
  background: white;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.pricing-card {
  background: white;
  border: 2px solid var(--border-light);
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.pricing-card.featured {
  border-color: var(--primary-color);
  transform: scale(1.05);
  box-shadow: var(--shadow-heavy);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-medium);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: white;
  padding: 0.5rem 2rem;
  border-radius: 0 0 25px 25px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-header {
  margin-bottom: 3rem;
}

.pricing-header h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.currency {
  font-size: 1.2rem;
  color: var(--text-light);
}

.amount {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  font-family: "Playfair Display", serif;
}

.period {
  font-size: 1.2rem;
  color: var(--text-light);
}

.pricing-header p {
  color: var(--text-light);
  margin: 0;
}

.pricing-features {
  margin-bottom: 3rem;
}

.pricing-features ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.pricing-features ul li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.pricing-features ul li i.fa-check {
  color: var(--secondary-color);
}

.pricing-features ul li i.fa-times {
  color: var(--text-muted);
}

/* Partner Form Section */
.partner-form-section {
  padding: 6rem 0;
  background: var(--bg-light);
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 4rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-medium);
}

.form-header {
  text-align: center;
  margin-bottom: 3rem;
}

.form-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.form-header p {
  color: var(--text-light);
  font-size: 1.1rem;
}

.partner-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Responsive Design for Restaurant Pages */
@media (max-width: 1024px) {
  .steps-timeline::before {
    display: none;
  }
  
  .step-item {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  
  .step-number {
    width: 80px;
    height: 80px;
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .restaurant-hero {
    height: 80vh;
  }
  
  .hero-stats {
    gap: 2rem;
  }
  
  .hero-stats .stat-number {
    font-size: 2rem;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .stories-grid {
    grid-template-columns: 1fr;
  }
  
  .story-stats {
    justify-content: center;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-card.featured {
    transform: none;
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }
  
  .form-container {
    padding: 2rem;
    margin: 0 1rem;
  }
}

@media (max-width: 480px) {
  .restaurant-hero {
    height: 70vh;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .benefit-card {
    padding: 2rem;
  }
  
  .benefit-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .step-content {
    padding: 2rem;
  }
  
  .story-content {
    padding: 2rem;
  }
  
  .story-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .pricing-card {
    padding: 2rem;
  }
  
  .amount {
    font-size: 3rem;
  }
  
  .form-container {
    padding: 1.5rem;
  }
}
.top-bar {
    width: 100%;
    background: #f1f2f4;
    padding: 1px 0;
    /* border-bottom: 1px solid #e5e5e5; */
    font-size: 14px;
}

.top-bar-left {

    margin: 0 auto;
    display: flex;
    flex-direction: row-reverse;
    gap: 20px;
    padding: 0 20px;               /* horizontal padding */
}

.top-bar a {
    color: #555;
    text-decoration: none;
    transition: color 0.25s ease;
}

.top-bar a:hover {
    color: #000; 
    text-decoration: underline;                     /* darken on hover */
}
