* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
}

.font-arabic {
  font-family: "Amiri", serif;
}

/* Container and Background */
.container {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/placeholder.svg?height=1080&width=1920&text=Beautiful+Olive+Grove+with+Mediterranean+Sunlight");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.overlay-dark {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

.overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.6) 0%, transparent 50%, rgba(217, 119, 6, 0.6) 100%);
}

.overlay-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3) 0%, transparent 50%, rgba(0, 0, 0, 0.2) 100%);
}

.content {
  position: relative;
  z-index: 10;
  padding: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.header-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  padding: 48px;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.header-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

.main-title {
  font-size: 4rem;
  font-weight: 800;
  background: linear-gradient(to right, #166534, #059669, #166534);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.icon-container {
  padding: 12px;
  border-radius: 50%;
}

.icon-container.green {
  background-color: #dcfce7;
}

.icon-container.amber {
  background-color: #fef3c7;
}

.icon-large {
  width: 48px;
  height: 48px;
}

.icon-large.green {
  color: #15803d;
}

.icon-large.amber {
  color: #d97706;
}

.header-subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

.divider {
  height: 1px;
  width: 128px;
  background: linear-gradient(to right, transparent, #22c55e, transparent);
}

.divider.amber {
  background: linear-gradient(to right, transparent, #f59e0b, transparent);
}

.cafe-text {
  font-size: 1.875rem;
  color: #15803d;
  font-family: "Amiri", serif;
}

.welcome-section {
  margin-bottom: 32px;
}

.welcome-arabic {
  font-size: 2.5rem;
  font-weight: 700;
  color: #166534;
  font-family: "Amiri", serif;
  margin-bottom: 8px;
}

.welcome-english {
  font-size: 1.5rem;
  color: #15803d;
  font-style: italic;
}

.header-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.small-icon-container {
  padding: 8px;
  border-radius: 50%;
}

.small-icon-container.green {
  background-color: #dcfce7;
}

.small-icon-container.amber {
  background-color: #fef3c7;
}

.icon-small {
  width: 24px;
  height: 24px;
}

.icon-small.green {
  color: #15803d;
}

.icon-small.amber {
  color: #d97706;
}

/* Section Navigation */
.section-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.nav-button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  border: 2px solid #22c55e;
  border-radius: 12px;
  color: #15803d;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.nav-button:hover {
  background: #f0fdf4;
  border-color: #16a34a;
  transform: translateY(-2px);
  box-shadow: 0 8px 15px -3px rgba(0, 0, 0, 0.1);
}

.nav-icon {
  width: 20px;
  height: 20px;
}

.section-indicator {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 12px 24px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.section-counter {
  color: #15803d;
  font-weight: 600;
  font-size: 1.125rem;
}

.pagination-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #d1fae5;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background-color: #22c55e;
  transform: scale(1.25);
}

.dot:hover {
  background-color: #16a34a;
}

/* Menu Sections */
.menu-sections {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.menu-card {
  display: none;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 2px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  overflow: hidden;
  border-radius: 16px;
}

.menu-card.active {
  display: block;
}

.menu-header {
  position: relative;
  overflow: hidden;
  color: white;
  padding: 24px 32px;
}

.amber-header {
  background: linear-gradient(to right, #d97706, #f59e0b);
}

.blue-header {
  background: linear-gradient(to right, #2563eb, #0891b2);
}

.green-header {
  background: linear-gradient(to right, #059669, #10b981);
}

.rose-header {
  background: linear-gradient(to right, #e11d48, #ec4899);
}

.purple-header {
  background: linear-gradient(to right, #7c3aed, #6366f1);
}

.menu-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}

.menu-title {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.5rem;
  font-weight: 700;
  position: relative;
  z-index: 10;
}

.menu-icon-container {
  padding: 12px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.menu-icon {
  width: 20px;
  height: 20px;
  color: white;
}

.header-decoration {
  position: absolute;
  top: 0;
  right: 0;
  width: 160px;
  height: 100%;
  background: linear-gradient(to left, rgba(255, 255, 255, 0.15), transparent);
}

/* Menu Content */
.menu-content {
  padding: 32px;
  background: rgba(255, 255, 255, 0.98);
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px;
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 2px solid rgba(34, 197, 94, 0.15);
  background: rgba(255, 255, 255, 0.9);
  margin-bottom: 16px;
  position: relative;
}

.menu-item:hover {
  background: linear-gradient(to right, #f0fdf4, #ecfdf5);
  border-color: #22c55e;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.menu-item.featured {
  background: linear-gradient(to right, #f0fdf4, #ecfdf5);
  border-color: #22c55e;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.menu-item.featured:hover {
  background: linear-gradient(to right, #dcfce7, #d1fae5);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.popular-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: #22c55e;
  color: white;
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 9999px;
  font-weight: 700;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.item-info {
  flex: 1;
}

.item-name {
  color: #374151;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
  display: block;
  transition: color 0.3s ease;
}

.menu-item:hover .item-name {
  color: #166534;
}

.item-description {
  color: #22c55e;
  font-size: 0.875rem;
  margin-top: 4px;
  opacity: 0.8;
}

.item-price {
  margin-left: 24px;
  text-align: right;
}

.price {
  font-weight: 700;
  color: #15803d;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.menu-item:hover .price {
  color: #166534;
}

.currency {
  font-size: 0.875rem;
  color: #22c55e;
  font-weight: 500;
}

/* Traditional Section Styles */
.traditional-content {
  padding: 32px;
  background: rgba(255, 255, 255, 0.98);
}

.section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.section-divider {
  width: 40px;
  height: 4px;
  border-radius: 9999px;
}

.section-divider.rose {
  background: linear-gradient(to right, #e11d48, #ec4899);
}

.section-title {
  font-weight: 700;
  font-size: 1.5rem;
}

.section-title.rose {
  color: #be185d;
}

.section-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Traditional section specific styles */
.traditional-item {
  border-color: rgba(225, 29, 72, 0.15);
}

.traditional-item:hover {
  background: linear-gradient(to right, #fdf2f8, #fce7f3);
  border-color: #e11d48;
}

.traditional-item.featured {
  background: linear-gradient(to right, #fdf2f8, #fce7f3);
  border-color: #e11d48;
}

.traditional-item.featured:hover {
  background: linear-gradient(to right, #fce7f3, #fbcfe8);
}

.traditional-item .popular-badge {
  background-color: #e11d48;
}

.traditional-item:hover .item-name {
  color: #be185d;
}

.traditional-item .price {
  color: #be185d;
}

.traditional-item:hover .price {
  color: #9f1239;
}

.traditional-item .currency {
  color: #e11d48;
}

/* Footer */
.footer {
  text-align: center;
  margin-top: 64px;
}

.footer-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  padding: 48px;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.footer-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

.footer-main-text {
  font-size: 1.875rem;
  font-weight: 700;
  background: linear-gradient(to right, #15803d, #059669);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.footer-arabic {
  font-size: 1.5rem;
  color: #15803d;
  font-family: "Amiri", serif;
  margin-bottom: 24px;
}

.footer-subtitle {
  color: #22c55e;
  font-style: italic;
  font-size: 1.125rem;
  margin-bottom: 32px;
}

.footer-features {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.feature-dot.green {
  background-color: #22c55e;
}

.feature-dot.amber {
  background-color: #f59e0b;
}

.feature-text {
  font-weight: 600;
}

.feature-text.green {
  color: #15803d;
}

.feature-text.amber {
  color: #d97706;
}

.feature-divider {
  width: 1px;
  height: 32px;
  background-color: #22c55e;
  opacity: 0.3;
}

/* Animations */
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .content {
    padding: 16px;
  }

  .header-card {
    padding: 32px 24px;
  }

  .main-title {
    font-size: 2.5rem;
  }

  .header-title {
    flex-direction: column;
    gap: 12px;
  }

  .header-subtitle {
    flex-direction: column;
    gap: 8px;
  }

  .divider {
    width: 80px;
  }

  .menu-content {
    padding: 24px;
  }

  .menu-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .item-price {
    margin-left: 0;
    text-align: left;
  }

  .footer-features {
    flex-direction: column;
    gap: 16px;
  }

  .feature-divider {
    width: 32px;
    height: 1px;
  }

  .section-navigation {
    flex-direction: column;
    gap: 16px;
  }

  .nav-button {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .main-title {
    font-size: 2rem;
  }

  .welcome-arabic {
    font-size: 2rem;
  }

  .welcome-english {
    font-size: 1.25rem;
  }

  .menu-title {
    font-size: 1.25rem;
  }

  .header-icons {
    gap: 16px;
  }

  .small-icon-container {
    padding: 6px;
  }

  .icon-small {
    width: 20px;
    height: 20px;
  }
}
