:root {
  --primary: #7c3aed;
  --primary-light: #8b5cf6;
  --primary-dark: #6d28d9;
  --secondary: #f97316;
  --light: #f8fafc;
  --dark: #1e293b;
  --gray: #64748b;
  --success: #10b981;
}

/* Home page navigation styles */
body {
  font-family: "Work Sans", sans-serif;
  margin: 0;
  padding: 0;
}

nav {
  height: 73px;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
}

.nav__bar__home {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  top: 0;
  z-index: 1000;
}

.nav__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  margin-right: 50px;
  margin-left: 40px;
}

.first__nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            margin-right: 30px; /* Add some space between logo and hamburger */
        }

        .logo img {
            height: 40px; /* Set a consistent height */
            width: auto; /* Maintain aspect ratio */
            max-height: 50px; /* Prevent it from getting too large */
            object-fit: contain; /* Ensure the image scales properly */
        }

        .logo:hover {
            text-decoration: none;
        }
        



.nav__button {
  display: none;
}

.nav__links {
  display: flex;
  list-style-type: none;
  margin-bottom: 0;
}
.nav__link {
  cursor: pointer;
}

.nav__link a {
  color: #000000FF;
  text-decoration: none;
  margin-left: 1vw;
  margin-right: 1vw;
  cursor: pointer;
  transition: 250ms;
  font-weight: 600;
}

.nav__link:hover {
  transform: scale(1.1);
}

nav.nav__bar__home {
  background: #FDECE0;
}

/* .nav__link a:hover,
.nav__link a.active {
  color: #7c3aed;
} */

.nav__link a.active {
  position: relative;
}

.nav__link a.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: rgb(104, 104, 104);
}

@media (max-width: 768px) {
  .nav__button {
    display: block;
  }

  .nav__links.hidden-in-md {
    display: none;
  }

  .nav__links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 1rem 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-height: 0;
    overflow: hidden;
  }

  .nav__links:not(.hidden-in-md) {
    display: flex;
  }
}

/* Demo page specific styles */
.demo-container {
  background: linear-gradient(135deg, #f9fafb 0%, #f1f5f9 100%);
  min-height: calc(100vh - 140px); /* Account for nav and footer */
  padding: 2rem 0;
}

.section-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border: 1px solid #f3f4f6;
}

.primary-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 16px 24px;
  border-radius: 0px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 16px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.restaurant-btn {
  background: linear-gradient(135deg, #8065ee 0%, #6d28d9 100%);
  color: white;
  border: none;
}

.restaurant-btn:hover {
  background: linear-gradient(135deg, #6d28d9 0%, #5b21b6 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(128, 101, 238, 0.4);
}

.customer-btn {
  background: linear-gradient(135deg, #8065ee 0%, #6d28d9 100%);
  color: white;
  border: none;
}

.customer-btn:hover {
  background: linear-gradient(135deg, #6d28d9 0%, #5b21b6 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(128, 101, 238, 0.4);
}

.section-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
  font-family: "Playfair Display", serif;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 4px;
  border-radius: 2px;
}

.restaurant-title::after {
  background: linear-gradient(135deg, #8065ee 0%, #6d28d9 100%);
}

.customer-title::after {
  background: linear-gradient(135deg, #8065ee 0%, #6d28d9 100%);
}

.divider {
  width: 2px;
  background: linear-gradient(
    to bottom,
    transparent,
    #e5e7eb 20%,
    #e5e7eb 80%,
    transparent
  );
  margin: 0 3rem;
  min-height: 400px;
}

.title {
  font-family: "Playfair Display", serif;
}

/* Footer styles from home page */
.footer {
  background: #000000FF;
  color: white;
}

.copyright {
  padding: 0; /* Remove all padding */
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px; /* This controls the total footer height - adjust as needed */
}

.copyright__text {
  font-size: 15px;
  margin: 0; /* Remove any default margins */
}

@media (max-width: 1024px) {
  .divider {
    width: 100%;
    height: 2px;
    margin: 2rem 0;
    min-height: auto;
    background: linear-gradient(
      to right,
      transparent,
      #e5e7eb 20%,
      #e5e7eb 80%,
      transparent
    );
  }
}
