:root {
  --bg: #f4ebdc;
  --text-dark: #1a1a1a;
  --text-light: #5a5a5a;
  --primary: #284831;
  --accent: #e8dacd;
  --card-bg: #ffffff;
  --btn-bg: #284831;
  --btn-text: #fff;
}

html {
  scrollbar-color: var(--primary) #f1f1f1 !important;
}

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

body {
 
  background-color: var(--bg);
  color: var(--text-dark);
  transition: ease-in-out 0.2s;
}

.container {
  max-width: 1140px;
  margin: auto;
  text-align: center;
}

.rounded-50 {
  border-radius: 35%;
  margin-bottom: 27px;
}

h1 {
  font-size: 3.4rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--primary);
 
}

.subtitle {
  color: var(--text-light);
  font-size: 1.25rem;
  margin-bottom: 40px;
 
}

.button-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 64px;
}

.cta-button {
  width: 300px;
  padding: 14px 28px;
  background-color: var(--btn-bg);
  color: var(--btn-text);
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
  background-color: #284831bd;
  transform: translateY(-2px);
}

.menu-section {
  margin-bottom: 80px;
  text-align: left;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--primary);
  border-right: 5px solid var(--primary);
  padding-right: 16px;
  margin: 36px 0;
  text-align: right;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 36px;
}

.menu-card {
  background-color: var(--card-bg);
  border-radius: 18px;
  padding: 32px 28px;
  box-shadow: var(--btn-bg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.1);
}

.item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.item-name {
  font-weight: 600;
  font-size: 1.2rem;
}

.item-price {
  font-family: "Roboto Mono", monospace;
  font-weight: 600;
  color: var(--primary);
  font-size: 1.05rem;
}

.item-description {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.6;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: 2.5rem;
  }
  .section-title {
    font-size: 1.6rem;
  }
}

.content {
  padding: 60px 0 40px;
  position: relative;
}
.vi {
  position: absolute;

  top: 40px;
  left: 4%;
}

.footer {
  background-color: var(--primary);
  color: #fff;
  padding: 25px 0;
  font-size: 13px;
  text-align: center;
}

.copyWrite {
  text-decoration: none;
  color: #fff;
  transition: ease-in-out 0.2s;
}
.copyWrite:hover {
  color: #284831bd;
}

.lang-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1000;
}

/* #langBtn {
  background: linear-gradient(to right, #aa8453, #aa845375);
  border: none;
  color: white;
  padding: 10px 18px;
  font-size: 16px;
  border-radius: 25px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

#langBtn:hover {
  background: linear-gradient(to right, #aa8453, #aa845375);
  transform: scale(1.05);
} */

body[dir="rtl"] {
  font-family: "Alexandria", sans-serif;
  text-align: right;
  letter-spacing: 2px;
}

/* dropdown */

.nav-tab {
  border: none;
  background-color: #fff;
  color: #444;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.4s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.nav-tab:hover {
  background-color: #f0f0f0;
  transform: translateY(-4px);
}

.nav-tab.active-tab {
  background: linear-gradient(135deg, var(--btn-bg), #444);
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.section-title {
  font-size: 32px;
  font-weight: 900;
  color: #111;
  margin-bottom: 35px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  width: 70%;
  height: 4px;
  background: #000;
  bottom: -10px;
  left: 15%;
  border-radius: 5px;
  opacity: 0.1;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 25px;
  padding-bottom: 60px;
}

.menu-card {
  background: #fff;
  border-radius: 18px;
  padding: 20px 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: 0.4s ease;
  position: relative;
  text-align: right;
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.1);
}

.item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: #222;
  margin-bottom: 12px;
}

.menu-category {
  animation: fadeInUp 0.6s ease both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-charcter {
  text-transform: uppercase;
  background-image: linear-gradient(
    -225deg,
    #936adf 0%,
    #c8b3dc 29%,
    #124271ba 67%,
    #ee0f0f 100%
  );
  background-size: auto auto;
  background-clip: border-box;
  background-size: 200% auto;
  color: var(--primary);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textclip 2s linear infinite;
  display: inline-block;
  margin: 0 15px;
}

@keyframes textclip {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}
