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

/* BASE */
body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: radial-gradient(circle at top, #020617, #020617);
  color: #f8fafc;
  min-height: 100vh;
}

/* HERO */
.hero {
  min-height: 100vh;
  padding: 4rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.03em;
}

.subtitle {
  font-size: 1.1rem;
  color: #94a3b8;
  margin-bottom: 3rem;
  text-align: center;
  max-width: 420px;
}

/* GRID */
.restaurant-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  width: 100%;
  max-width: 720px;
}

/* CARD BUTTON */
.restaurant-card {
  background: linear-gradient(
    145deg,
    #020617,
    #020617
  );
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 1.8rem;
  text-decoration: none;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Glow effect */
.restaurant-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    400px circle at top left,
    rgba(34,197,94,0.15),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.restaurant-card:hover::before {
  opacity: 1;
}

.restaurant-card:hover {
  transform: translateY(-6px);
  border-color: rgba(34,197,94,0.5);
}

/* TEXT */
.restaurant-name {
  font-size: 1.3rem;
  font-weight: 600;
}

.restaurant-action {
  font-size: 0.95rem;
  color: #22c55e;
  font-weight: 500;
}
