html { scroll-behavior: smooth; font-size: 100%; }
body {
  font-family: Arial, sans-serif;
  color: white;
  margin: 0;
  background: #111;
  position: relative;
  overflow-x: hidden;
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
.hero {
  position: relative;
  text-align: center;
  z-index: 2;
  overflow: hidden;
}
.hero-img {
  width: 100%;
  max-height: 550px;
  object-fit: cover;
  opacity: 0.85;
  transition: transform 1.2s ease, filter 0.8s ease;
  will-change: transform;
  animation: fadeInScale 1.5s ease-in-out forwards;
  transform-origin: center center;
}
@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 0.85;
    transform: scale(1);
  }
}
.hero-img:hover {
  transform: scale(1.03);
  filter: brightness(1.05);
}
.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
  animation: fadeIn 1.6s ease both;
}
h1, h2 {
  font-size: clamp(2rem, 6vw, 5rem);
  margin: 0;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
  animation: fadeInUp 1.5s ease forwards;
}
p.subtitle {
  font-size: clamp(1rem, 3vw, 1.5rem);
  margin-top: 10px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.5);
  animation: fadeIn 2s ease forwards 0.5s;
}
.header-left {
  position: fixed;
  top: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1002;
}
nav {
  position: fixed;
  top: 20px;
  right: 20px;       
  left: 160px;         
  z-index: 1002;
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: flex-end;
  max-width: calc(100vw - 140px);
}
.top-links {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: flex-end; 
}
.auth {
  display: flex;
  gap: 15px;
  align-items: center;
}
.hamburger {
  cursor: pointer;
  width: 34px;
  height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
}
.hamburger:hover { transform: scale(1.1); }
.hamburger span {
  height: 4px;
  background: #fff;
  border-radius: 3px;
  display: block;
  transition: background 0.3s ease;
}
.logo {
  height: 50px;
  object-fit: contain;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.logo:hover { transform: scale(1.05); }
.menu {
  position: fixed;
  top: 58px;
  left: 20px;
  background: rgba(0,0,0,0.85);
  padding: 12px;
  border-radius: 10px;
  backdrop-filter: blur(3px);
  display: none;
  min-width: 220px;
  z-index: 1002;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}
.menu.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
.menu a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 8px;
  transition: background 0.3s ease;
}
.menu a:hover { background: rgba(255,255,255,0.15); }
.top-links, .auth {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}
.top-links a, .auth a, .terms-btn {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: clamp(1rem, 2.6vw, 1.6rem);
  background: rgba(0,0,0,0.4);
  padding: 12px 16px;
  border-radius: 999px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.top-links a:hover, .auth a:hover, .terms-btn:hover {
  box-shadow: 0 0 15px rgba(255,255,255,0.6);
  transform: translateY(-2px);
}
.section {
  padding: 60px 20px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-start;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
  text-align: left;
}
.how-img {
  display: flex;
  align-items: flex-start; 
  justify-content: center;
}
.how-img img {
  width: 100%;
  max-width: 450px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.5);
  object-fit: cover;
  transition: transform 0.6s ease;
}
.how-img img:hover {
  transform: scale(1.03);
}
@media (max-width: 800px) {
  .how-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .how-img img {
    margin-top: 20px;
    max-height: 350px;
  }
}
.step {
  background: rgba(0,0,0,0.6);
  padding: 20px;
  border-radius: 12px;
  font-size: clamp(1rem, 2vw, 1.2rem);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}
.step.show {
  opacity: 1;
  transform: translateY(0);
}
.step strong { color: #c7b8ff; }
.terms-btn {
  display:inline-block;
  background: linear-gradient(45deg, #6a5acd, #836fff);
  margin: 40px auto;
  border-radius: 8px;
  position: relative;
  z-index: 2;
}
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.home-restaurants {
  background: #f5f5f5;
  color: #111;
  padding: 60px 20px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.home-restaurants h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 30px;
  color: #111;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 10px;
}

.logo-card {
  background: white;
  border-radius: 14px;
  padding: 20px 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}

.logo-card img {
  width: 100%;
  max-width: 100px;
  height: 100px;
  object-fit: contain;
  display: block;
  margin: 0 auto 10px;
}

.logo-card p {
  font-weight: bold;
  font-size: 1rem;
  color: #333;
  margin: 0;
}
/*
.wheel-container {
  position: absolute;
  bottom: 100px;
  left: 60px;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.wheel {
  position: absolute;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, #333 30%, #000 70%);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0,0,0,0.7);
  opacity: 0;
  animation: wheelDrop 0.8s ease forwards 1.5s, 
             wheelRoll 3s ease-in forwards 2.3s;
}

.wheel::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 15px;
  height: 15px;
  background: #fff;
  border-radius: 50%;
}

.wheel:nth-child(2) {
  animation-delay: 1.7s, 4.5s;
}

@keyframes wheelDrop {
  0% {
    opacity: 1;
    transform: translateY(-100px) rotate(0deg);
  }
  100% {
    opacity: 1;
    transform: translateY(calc(550px - 100px)) rotate(360deg); 
  }
}

@keyframes wheelRoll {
  0% {
    transform: translateX(0) translateY(calc(550px - 100px)) rotate(0deg);
  }
  100% {
    transform: translateX(calc(100vw + 100px)) translateY(calc(550px - 100px)) rotate(1080deg);
    opacity: 0;
  }
}
*/
.hero {
  position: relative;
  overflow: hidden;
}
.typed-text {
  position: absolute;
  bottom: 100px;
  left: 80px;
  font-size: 2.2rem;
  font-weight: bold;
  color: white;
  white-space: normal;
  max-width: 90%;
  z-index: 3;
}

@media (max-width: 600px) {
  .hero-text h1 { font-size: 2rem; }
  .hero-text p { font-size: 1rem; }
  .logo { height: 40px; }
  .menu { min-width: 180px; padding: 8px; }
}
@media (max-width: 600px) {
 
  .header-left {
    position: fixed;
    top: 10px;
    left: 15px;
    z-index: 1003;
  }

  nav {
    position: fixed;
    top: 10px;
    right: 15px;
    display: flex;
    flex-direction: column;       
    align-items: flex-end;
    justify-content: flex-end;
    gap: 10px;
    z-index: 1002;
    max-width: calc(100vw - 120px); 
  }

  .top-links, .auth {
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    width: auto;
  }

  .top-links a, .auth a {
    font-size: 0.9rem;
    padding: 8px 12px;
    background: rgba(0,0,0,0.6);
    border-radius: 20px;
  }

  .hero-img {
    height: 45vh;
    object-fit: cover;
    object-position: center center;
  }

  .hamburger {
    width: 28px;
    height: 28px;
  }

  .menu {
    top: 55px;
    left: 10px;
    min-width: 180px;
    padding: 8px;
    background: rgba(0,0,0,0.9);
  }
  .auth a[href="/signup"],
  .auth a[href="/login"] {
    display: none !important;
  }
}
@media (max-width: 600px) {
  .typed-text {
    bottom: 25px;      
    left: 15px;       
    font-size: 1rem;  
    white-space: normal;
    max-width: 90%;
    text-align: left;
  }
/*
  .wheel-container {
    bottom: 40px;     
    left: 20px;
    height: 60px;
    transform: scale(0.7); 
  }

}
@media (max-width: 600px) {
  .wheel {
    animation: none !important;
  }
  .wheel-container {
    z-index: 5;
  }
}
*/
.footer {
  background: #000;
  color: #fff;
  padding: 50px 20px 30px;
  text-align: center;
}
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}
.footer-about, .footer-contact {
  flex: 1 1 300px;
}
.footer h3 {
  color: #c7b8ff;
  margin-bottom: 15px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.contact-item i {
  color: #c7b8ff;
}
.contact-item a {
  color: #fff;
  text-decoration: none;
}
.contact-item a:hover {
  text-decoration: underline;
}
.footer-bottom {
  margin-top: 30px;
  font-size: 0.9rem;
  opacity: 0.8;
}
@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
  .contact-item {
    justify-content: center;
  }
}
#about {
  padding: 60px 20px;
  text-align: center;
  background: #111;
  color: #fff;
}

#about h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: #c7b8ff;
  margin-bottom: 20px;
}

#about p {
  max-width: 850px;
  margin: 10px auto;
  line-height: 1.6;
  font-size: 1.1rem;
}

.about-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 20px auto;
  text-align: left;
  font-size: 1.1rem;
  line-height: 1.6;
}

.about-list li {
  margin-bottom: 10px;
  background: rgba(255,255,255,0.05);
  padding: 10px 15px;
  border-radius: 8px;
}

@media (max-width: 600px) {
  .about-list {
    font-size: 1rem;
    text-align: left;
  }
  #about p {
    font-size: 1rem;
  }
}
.top-links a,
.auth a {
  flex-shrink: 1;
  white-space: nowrap;
  font-size: clamp(0.8rem, 2vw, 1.2rem);
  padding: 8px 12px;
  max-width: 100%;
  text-overflow: ellipsis;
}